Meet2Notes — open-source, local AI meeting assistant with transcription, diarization, RAG, live AI and webhooks

Meet2Notes — open-source, local AI meeting assistant with transcription, diarization, RAG, live AI and webhooks

Hi everyone — I’m the sole developer of Meet2Notes, an MIT-licensed open-source meeting assistant currently in alpha.

The goal is simple: provide a local-first meeting workspace for recording, transcription, speaker separation, AI notes, historical search and live AI assistance, without requiring a subscription or sending all meeting data to a third-party SaaS.

What Meet2Notes can do

Meet2Notes currently supports:

  • Recording microphone and system/desktop audio
  • Importing existing audio or video files
  • Live transcription during the meeting
  • A separate higher-quality final transcription pass
  • Speaker diarization
  • Saved voice profiles and speaker recognition across meetings
  • Structured AI meeting notes
  • Local historical RAG across one meeting or the complete meeting library
  • Asking questions about meetings with timestamped source excerpts
  • An optional Live AI Assistant
  • Local API access
  • Live and post-processing webhooks
  • External AI agent suggestions during meetings

Meet2Notes records the audio available on your computer, so there is no bot that needs to join Zoom, Teams, Google Meet, etc.

Fully local setup

A completely local setup is possible.

Recordings, transcripts, speaker data, AI notes, embeddings and RAG data can all remain on your machine.

Meet2Notes stores meeting data in a local SQLite workspace and supports local AI models for the different processing stages.

Remote AI providers are optional.

If you configure Ollama, LM Studio, LiteLLM or another OpenAI-compatible endpoint, Meet2Notes can use that instead.

API credentials are stored through the operating system keyring rather than in the application database or browser storage.

Selectable transcription engines

One of the main design decisions was not tying the application to a single transcription model.

Live transcription and final transcription are configured independently.

For example, you could use a lightweight model during the meeting and then run a slower but more accurate model afterwards.

Current transcription options include:

  • Faster-Whisper
  • NVIDIA Parakeet TDT 0.6B v3
  • NVIDIA Nemotron 3.5 ASR Streaming 0.6B
  • Microsoft VibeVoice ASR BitNet as an experimental CPU-oriented option

With Faster-Whisper, several model sizes are available, including Tiny, Base, Small, Medium, Large-v3, Distil-Large-v3 and Large-v3-Turbo.

Speaker diarization and recognition

Transcription and diarization are separate stages.

Current diarization options include:

  • Sherpa-ONNX
  • Pyannote Community-1
  • diarize

After diarization, speakers can be renamed and voice samples can be stored locally.

The idea is that Meet2Notes can eventually recognize that Speaker 2 is actually the same person you already identified in previous meetings.

There is also a dedicated Speakers workspace where you can inspect a speaker's meetings, generate speaker-specific summaries and export their associated text or audio.

AI meeting notes

Meet2Notes can turn the transcript into structured Markdown notes.

There are built-in note formats for different types of meetings, including:

  • General Meeting
  • Daily Stand-up
  • Project Sync
  • Sales Call
  • Technical Meeting
  • Interview
  • Lecture Notes
  • Brainstorming
  • Formal Minutes

Custom formats can also be created.

AI analysis is independent from transcription, so you can choose a separate local model for notes.

Local GGUF models can run through llama.cpp, and external/local-compatible providers can be connected through LiteLLM.

Search your meeting history with RAG

Meet2Notes can build a local searchable index of previous meetings.

You can ask questions about:

  • one specific meeting
  • the complete meeting library

For example:

  • “What did we decide about the API migration?”
  • “When did we first discuss Project X?”
  • “What action items came up in the last three meetings?”
  • “What did Alice say about the pricing issue?”

Retrieved context includes meeting and timestamp information so you can trace the answer back to the original transcript.

The RAG layer can also remain completely local.

Live AI Assistant

Meet2Notes includes an optional Live AI Assistant.

Instead of waiting until the meeting finishes, the assistant can monitor incoming transcript segments and show short insights while the conversation is still happening.

You can define what it should watch for.

For example:

  • unanswered questions
  • decisions
  • action items
  • contradictions
  • important numbers
  • risks
  • topics you wanted to discuss
  • things that need clarification

The assistant has its own model configuration and worker.

Recording and transcription do not wait for the LLM, so a slow AI response does not block the meeting pipeline.

Live AI agents through webhooks

This is one of the parts I’m most interested in experimenting with.

Meet2Notes can send committed live transcript segments to external systems through webhooks.

That means you could connect it to an internal AI agent with access to your own:

  • RAG
  • company documentation
  • CRM
  • project management system
  • databases
  • internal APIs

For example, someone could ask during a meeting:

>“What did we decide about this feature three months ago?”

An external agent could receive the conversation, query the company knowledge base and send a suggestion back while the meeting is still happening.

The same idea could be used during sales calls, technical meetings, support calls or internal planning sessions.

Webhook processing is isolated from recording and transcription, so network failures or slow external agents do not block the local capture pipeline.

Webhooks include:

  • HMAC signatures
  • retries
  • delivery history
  • per-endpoint content controls
  • live transcript events
  • processing milestones
  • optional remote-agent suggestions

Modular architecture

Transcription, diarization, saved-speaker recognition, embeddings, AI notes and the Live AI Assistant are independent components.

Each can have its own:

  • engine
  • model
  • settings
  • worker
  • lifecycle

This makes it possible to run a lightweight configuration on a laptop or use larger models when better hardware is available.

It also makes adding new transcription, diarization or AI engines easier without rewriting the entire meeting pipeline.

Privacy

Meet2Notes is designed to work without requiring a cloud account.

With a fully local configuration:

  • recordings stay local
  • transcripts stay local
  • speaker voice profiles stay local
  • AI notes stay local
  • embeddings stay local
  • RAG stays local

Nothing needs to leave the computer.

Remote providers are available only if the user explicitly configures them.

Current status

Meet2Notes is still alpha software and under active development.

I’m the sole developer, so I would not yet recommend using it as the only copy of an irreplaceable recording.

Please also make sure you have the appropriate consent before recording conversations.

The project is MIT licensed and contributions, issues and technical feedback are welcome.

GitHub:
https://github.com/estebanstifli/Meet2Notes

I’d be especially interested in feedback from people already using AI meeting tools:

  1. Which feature matters most to you: transcription quality, speaker attribution, notes, RAG/search, integrations or live assistance?
  2. Would you use separate models for live and final transcription?
  3. Is persistent speaker recognition across meetings useful to you?
  4. Would you connect a live meeting transcript to your own local/internal AI agent?
  5. What would Meet2Notes need before you would trust it for your real meetings?
u/VERSATILCORDOBA — 2 days ago

Meet2Notes — a modular local meeting workspace with private AI, selectable engines, API and webhooks

Hi everyone — I’m the sole developer of Meet2Notes, an MIT-licensed open-source project currently in alpha.

There are already good privacy-first local meeting tools out there, so I’m not claiming to have invented the local meeting assistant.

What I’ve spent the last few weeks building is a different approach: a modular meeting workspace where transcription, diarization, notes, RAG, and the live assistant are separate components with their own engines, settings, workers, and lifecycle.

https://preview.redd.it/ajh1d5witxjh1.png?width=1634&format=png&auto=webp&s=3e131c5eb136a58b37da05e20741881ab3842208

The goal is to make local meeting intelligence adaptable: use a lightweight setup on a laptop, choose more accurate models when you have the hardware, or connect it to a small team’s internal workflow through its API and webhooks.

AI and privacy disclosure

AI is used for transcription, speaker diarization, optional meeting-note generation, RAG search, and the optional Live AI Assistant.

Meet2Notes supports a fully local setup: local ASR, local diarization, local GGUF models via llama.cpp, local embeddings, and a local SQLite workspace. In that setup, recordings, transcripts, speaker data, notes, and RAG data remain on the user’s machine.

Remote AI is optional. If a user configures LiteLLM, Ollama, LM Studio, or another remote/OpenAI-compatible endpoint, only the content needed for that request is sent to the endpoint the user explicitly selected. API keys are stored in the operating-system keyring, not in the app database or browser storage.

Meet2Notes is open source under the MIT license. It is early alpha software, so I would not yet recommend it for irreplaceable recordings without backups and appropriate consent.

What can it do?

  • Record microphone and desktop audio, or import media files
  • Create a live transcript and/or run a higher-quality final transcription pass
  • Separate speakers and retain local saved voice profiles across meetings
  • Generate structured meeting notes with local GGUF models or optional LiteLLM-compatible providers
  • Search one meeting or the entire meeting library with local RAG and timestamped sources
  • Delete a meeting permanently, including its audio, transcripts, notes, assistant data, jobs, RAG entries, and private files

Selectable local engines

Live and final transcription are selected independently.

The current transcription catalog includes:

  • Faster-Whisper: Tiny, Base, Small, Medium, Large-v3, Distil-Large-v3, and Large-v3-Turbo
  • NVIDIA Nemotron 3.5 ASR Streaming 0.6B
  • NVIDIA Parakeet TDT 0.6B v3
  • Microsoft VibeVoice ASR BitNet as an experimental CPU option

For speaker diarization, you can select:

  • Sherpa-ONNX as the lightweight default
  • Pyannote Community-1
  • diarize, isolated in its own private environment to avoid dependency conflicts

This means, for example, that a modest machine can run a smaller live transcription model, while a more accurate final pass runs after the meeting.

https://preview.redd.it/xczcj2grtxjh1.png?width=1621&format=png&auto=webp&s=a0507763c2f65bf9bc7cb56b5376dd083b09360f

Live AI Assistant

There is an optional Live AI Assistant that watches provisional transcript segments and posts short, rule-based insights in a movable floating widget.

It has its own bounded queue and dedicated worker. Recording and transcription never wait for an LLM response. The assistant can use a local model or a separately configured LiteLLM-compatible provider; it does not need to use the same model as meeting notes.

API and webhooks

Meet2Notes exposes a local API and durable outbound webhooks for live segments and processing milestones:

  • HMAC-signed deliveries
  • Retry handling and delivery history
  • Per-endpoint content controls
  • Non-blocking remote-agent suggestions

My hope is that this makes it useful beyond the standalone UI: a small self-hosting team could keep Meet2Notes as a local capture/transcription node and connect it to an internal dashboard, workflow, or agent without sending all meeting data to a third-party SaaS by default.

GitHub:
https://github.com/estebanstifli/Meet2Notes

Screenshots:
https://estebanstifli.github.io/Meet2Notes/

I would genuinely appreciate feedback on:

  1. Does selecting an engine for each stage feel useful, or too complex?
  2. Which local ASR / diarization combinations would you want tested first?
  3. Would the local API and signed webhooks make this useful for a small team?
  4. What would you need to verify before trusting it with real meetings?

Happy to receive direct criticism — architecture, privacy boundaries, performance, UX, missing features, all of it.

reddit.com
u/VERSATILCORDOBA — 3 days ago

[FREE] When one WordPress MCP server is not enough: I built a local MCP Hub

Hi everyone,

Almost a year ago, I built StifLi Flex MCP, the first MCP plugin published on WordPress.org.

https://preview.redd.it/zixnfnw8ikhh1.png?width=1672&format=png&auto=webp&s=7b3edebc5464c8a681d2a78c0f1fba7662badcdc

At that point, MCP was still very new. “AI agents” were not part of everyday WordPress conversations yet — most people simply saw AI as chatbots.

But building an MCP server led to a new question:

What happens when you manage 10, 30, or even 100 WordPress websites?

Adding every site separately to every AI client does not scale. And exposing every tool from every site at once is not a great experience either.

So I built WP MCP Hub — my first MCP Hub:

https://github.com/estebanstifli/wp-mcp-hub

It is a free, open-source local app that lets one AI client connect to multiple WordPress MCP servers, select the relevant site, and discover that site's tools only when needed.

It can work with compatible WordPress MCP plugins and servers using Streamable HTTP or SSE, including:

The Hub does not replace the WordPress plugin or its permissions. Each site keeps its own tools, authentication, and WordPress capability checks. The Hub adds a local layer for managing connections, credentials, diagnostics, and routing.

It is still alpha, but I would genuinely love feedback from WordPress plugin developers:

  • Would this be useful for people managing multiple WordPress sites?
  • What would you expect from a WordPress-focused MCP Hub?
  • What security or usability concerns would you want solved first?

A year ago I built my first MCP server. This is the next step.

Thanks for taking a look.

reddit.com
u/VERSATILCORDOBA — 15 days ago
▲ 3 r/mcp

Show & Tell: WP MCP Hub — a free local MCP hub for multiple WordPress MCP servers

Hi r/mcp,

About a year ago, I built my first MCP server for WordPress. It was a huge learning experience: protocol changes, OAuth, tool design, security, and the reality of letting an AI interact with a CMS safely.

Since then, I kept running into the same issue: managing several WordPress MCP servers from different AI clients quickly becomes messy.

So I built my first MCP Hub: WP MCP Hub
https://github.com/estebanstifli/wp-mcp-hub

It is a free, open-source, local Python application that gives an AI client one stable MCP connection while routing requests to multiple remote WordPress MCP servers.

It can work with standards-compatible WordPress MCP servers that expose Streamable HTTP or SSE, including:

The Hub does not replace those plugins or their WordPress permissions. Each remote site keeps its own tools, authentication, and capability checks; the Hub focuses on local configuration, site selection, diagnostics, credentials, and routing.

Current features include:

  • One local stdio MCP server for multiple WordPress sites
  • Remote MCP connections via Streamable HTTP and optional SSE
  • OAuth 2.1, Bearer token, custom-header/API-key, or no-auth connections
  • Credentials stored in the operating system keychain rather than SQLite or normal logs
  • A local dashboard for adding sites, testing connections, pinging, reconnecting, browsing tools, and reviewing activity
  • Support for Claude Desktop, Codex, ChatGPT Desktop local coding, Gemini CLI, and other stdio-capable MCP clients
  • No hosted relay, subscription, telemetry, or need to expose the local dashboard to the internet

It is still an alpha project. This is my first MCP Hub, and I would genuinely appreciate feedback from people with more MCP experience than me.

I would especially love thoughts on:

  • Is the hub approach useful, or does it add too much abstraction?
  • Are there security or trust-boundary problems I should address?
  • What would make this more useful for agencies or developers managing multiple WordPress sites?
  • Should authenticated remote HTTP ingress be a priority in a future version?
  • Is the site-selection and local tool-routing workflow sensible?

Constructive criticism, protocol feedback, feature ideas, and brutal honesty are very welcome.

Thanks for taking a look.

u/VERSATILCORDOBA — 15 days ago

I’m building an open-source Windows app for long-form local TTS workflows — feedback wanted

Hi everyone,

I’m Esteban, the developer of LocalText2Voice, a free and open-source Windows application for creating audiobooks, narration, and podcasts with local TTS engines.

There are already many excellent local TTS models, but turning them into a practical long-form workflow still involves a lot of manual work: installing dependencies, splitting text, managing voices, regenerating failed sections, organizing audio files, and mixing everything afterward.

LocalText2Voice is not another TTS model. It is an orchestration and production layer around existing engines.

It currently supports local engines such as Piper, Kokoro, Chatterbox, Qwen3-TTS, and OmniVoice. Optional cloud providers such as OpenAI, ElevenLabs, Gemini, and Azure are also available, along with configurable HTTP endpoints for custom TTS servers.

When using a local engine, the source text and generated speech remain on your computer.

Current features

With LocalText2Voice, you can:

  • Install and manage different TTS engines from the application.
  • Switch between engines without changing your project.
  • Browse, preview, import, and organize voices in a shared voice library.
  • Connect custom local or remote TTS HTTP endpoints.
  • Import long .txt, .md, and .docx documents.
  • Detect chapters and split long texts into safe TTS segments.
  • Use different voices and languages in the same audiobook.
  • Regenerate individual segments without starting the entire project again.
  • Review generated speech with Faster Whisper and retry problematic segments.
  • Add background music, fades, ducking, volume adjustments, and normalization.
  • Sound effects and other audio events.
  • Save projects and continue working on them later.

LTV Markup

One feature for which I would particularly appreciate feedback is LTV Markup.

It is a small, human-readable syntax for controlling narration, voices, pauses, and sound effects directly from the source text:

{{chapter "Chapter 1"}}
{{voice "Narrator"}}
The house had been abandoned for years.

{{pause 900ms}}

{{voice "Character 2"}}
I think someone is inside.

{{play "door-close.mp3"}}

{{speed 0.92}}
{{volume -3db}}
We should leave immediately.

Markup can control:

  • Voice and language changes.
  • Pauses and real silence.
  • Speech speed.
  • Volume and normalization.
  • Chapters and markers.
  • Sound effects and other audio events using {{play}}.
  • Audio volume, duration, looping, fades, panning, and voice ducking.
  • Selected model-specific instructions.
  • Resetting settings to the project defaults.

For example:

{{play "door-close.mp3" volume=-6db}}

inserts a door sound at that point in the narration.

Longer or looping audio events are also possible:

{{play "forest.mp3" track=ambient loop=true volume=-20db fade_in=3 duck_on_voice=6db}}

The commands are not sent to the TTS engine as spoken text. LocalText2Voice interprets them when preparing the segments and mixes the audio events during post-production.

The goal is to make multi-character audiobooks, dramatized narration, language courses, and other complex audio projects manageable without manually editing every segment in an external audio editor.

Create audiobooks from Claude or ChatGPT Desktop

LocalText2Voice includes a local MCP server, allowing you to create and manage audiobook projects directly from Claude Desktop or ChatGPT Desktop.

Instead of configuring everything manually, you can simply ask:

>“Create a B1-level English–Spanish course using both languages. Use one voice for the English examples, another for the Spanish translations, add a short pause after each sentence, and export it as an audiobook.”

The assistant can create the project, organize the text, assign the voices, add markup and pauses, select a TTS engine, and start the generation process.

You can also ask it to make changes later:

>“Regenerate lesson three with a slower English voice.”

>“Add three seconds of silence between exercises.”

>“Lower the background music and export the final MP3.”

Claude or ChatGPT manages the workflow, while LocalText2Voice performs the actual audio generation. When you select a local TTS engine, your text and generated speech remain on your computer.

Project and Windows installer

GitHub:

https://github.com/estebanstifli/LocalText2Voice

LTV Markup manual:

https://github.com/estebanstifli/LocalText2Voice/blob/main/docs/LTV_MARKUP.md

Windows installer:

https://github.com/estebanstifli/LocalText2Voice/releases/latest/download/LocalText2Voice-Setup.exe

Important: the Windows installer is not code-signed yet, so Windows may display an “Unknown publisher” or SmartScreen warning. The source code is public, and the GitHub release also includes a SHA-256 checksum:

https://github.com/estebanstifli/LocalText2Voice/releases/latest/download/LocalText2Voice-Setup.exe.sha256

The project is under active development, and feedback is very welcome. I would especially like to know:

  1. Which local TTS engines are you currently using?
  2. What is the most frustrating part of producing long-form audio?
  3. Does the markup syntax seem useful, and which commands are missing?
  4. Which engine should I prioritize next?

Thanks for taking a look!

u/VERSATILCORDOBA — 1 month ago

I improved my [FREE] backup plugin with lightweight staging packages for LocalWP

I published StifLi Backup Tools a while ago as a free backup / migration plugin for WordPress, and I’ve been improving one part that I think could be useful for agencies and freelancers: faster staging / local development workflows.

Plugin link:
https://wordpress.org/plugins/stifli-backup-tools/

The new workflow is focused on cases where a full production clone is overkill.

For example, a WooCommerce site can have huge order tables, sessions, logs, transients, and gigabytes of uploads. But for many dev tasks, you only need the theme, selected plugins, key database tables, and enough content/order data to reproduce an issue.

So I added a “Fast Staging / Local developer package” workflow:

  • choose which database tables to include
  • choose which plugins and themes to copy
  • automatically include the active parent theme when using a child theme
  • optionally skip uploads and map media URLs back to the live site
  • reduce WooCommerce-heavy data and keep only a small order sample
  • strip transient/rewrite noise for local packages
  • export a LocalWP-friendly ZIP with wp-content + database.sql
  • run the export asynchronously with progress, cancel, resume, and stalled-job handling

The goal is not to replace full backups or perfect production clones.

It’s meant for faster dev packages when you just need to reproduce a bug, test theme/plugin changes, or work locally without moving 20GB of media and unnecessary WooCommerce data.

Would this kind of lightweight staging / LocalWP workflow be useful in your WordPress dev process?

I’d also be interested in hearing what you would expect before trusting this kind of workflow on larger WooCommerce sites.

reddit.com
u/VERSATILCORDOBA — 3 months ago

[FREE] GPL backup, restore, migration & staging plugin for WordPress — looking for feedback

Hi everyone,

I recently released a WordPress plugin called StifLi Backup Tools.

It is a 100% GPL backup, restore, migration and staging plugin for WordPress. My goal with this project is simple: offer many of the backup/migration features that are often locked behind paid plans in other plugins, but keep the core toolkit free and open.

The plugin includes:

Full site backups

Database-only backups

Scheduled backups

Differential scheduled backups

Restore and selective restore

Backup integrity checks

Migration packages

Push/Pull site-to-site migration

Staging sites

Remote storage: Google Drive, Dropbox, Amazon S3, Cloudflare R2 / S3-compatible storage, FTP and SFTP

Database cleanup, image optimization and maintenance tools

No telemetry, no license checks, no cloud dependency for the core plugin

I built it mainly for real WordPress sites, including shared hosting environments where long backup/restore processes often fail. It uses background processing, resumable jobs, chunked ZIP creation and streaming database operations to try to avoid common timeout/memory problems.

I know the backup plugin space is very competitive, so I am not claiming this is “better than everything else”. What I would really like now is real-world feedback.

I am especially interested in:

Sites where other backup/migration plugins failed

Large or awkward WordPress migrations

Shared hosting environments with strict limits

Remote storage workflows

Restore/migration edge cases

I am also willing to help with a limited number of migration cases for free, mainly to learn from real environments and improve the plugin. Of course, I would only do this in a safe way: staging/test sites where possible, temporary access only if needed, and never asking anyone to post private credentials publicly.

For trust/context: I am not completely new to WordPress development. I currently have 6 plugins published on WordPress.org with 4,000+ active installations across them. This backup plugin is part of that same ecosystem.

Plugin page / documentation:

https://wordpress.org/plugins/stifli-backup-tools/

WordPress.org profile/plugins can also be found from:

https://andromedanova.com

I would really appreciate feedback, criticism, feature requests, or difficult migration cases where this kind of tool could be useful.

Thanks!

u/VERSATILCORDOBA — 3 months ago

[FREE] WordPress plugin to search stock images and auto-set featured images

Hi everyone,

I’ve been working for a while on a WordPress plugin called All Sources Images, and I’m now at the point where I’d really like to get feedback from other WordPress users.

The idea is simple: make it easier to find, download, insert and assign images to WordPress posts without constantly jumping between stock photo sites, downloading files manually, uploading them to the Media Library, and setting featured images one by one.

The plugin supports:

- Pixabay
- Unsplash
- Pexels
- Flickr
- Openverse
- GIPHY
- YouTube thumbnails
- AI image generation through your own provider API keys

Main things it can do:

- Search images directly from WordPress
- Download selected images into the Media Library
- Set images as featured images
- Insert images into post content
- Auto-set featured images on publish
- Bulk-generate featured images for existing posts
- Work with Gutenberg and Elementor
- Expose abilities for AI/MCP-compatible workflows on newer WordPress versions

The important part: this is not a freemium plugin.

There is:

- no Pro version
- no locked features
- no upgrade nag
- no premium upsell screen
- no artificial limit inside the plugin

It is released as GPLv2 or later.

Of course, some external providers require their own API keys or have their own limits. AI image generation also depends on your own OpenAI, Gemini, Stability, Replicate, or Cloudflare Workers AI credentials.

For some stock sources, the plugin can also use a documented fallback proxy when no API key is configured, but the plugin itself is fully functional and the source is GPL.

I built it mainly for publishers, bloggers, affiliate sites and content-heavy WordPress sites where featured images become repetitive work.

Plugin:
https://wordpress.org/plugins/all-sources-images/

Source:
https://github.com/estebanstifli/all-sources-images

I’d really appreciate feedback, especially from people who manage sites with lots of posts or who already use stock image workflows inside WordPress.

reddit.com
u/VERSATILCORDOBA — 3 months ago

Stifli Flex MCP is 100% free and GPL-licensed (no paid tier, no upsell, no premium lock):
https://wordpress.org/plugins/stifli-flex-mcp

Connector directory:
https://wordpress.org/plugins/tags/connector+ai/

I also built a Groq connector:
https://github.com/estebanstifli/ai-connector-for-groq

Current AI Copilot test status:

  • OpenRouter: working well
  • Mistral: working well
  • Native providers (OpenAI, Claude, Gemini): working well
  • Groq: partially tested only

I haven’t been able to fully validate Groq in AI Copilot because of free-tier API limits (and Developer Tier upgrades being temporarily unavailable).

If anyone has Groq Developer Tier and can test AI Copilot flows (rewrite, improve content, tool/function calling), I’d really appreciate feedback:

  • Which Groq models are most reliable?
  • Any failed_generation / 400 issues?
  • Any settings that improved stability?

Thanks. Happy to share a quick test checklist if useful.

u/VERSATILCORDOBA — 4 months ago