Spaces:
Sleeping
Sleeping
| title: LangGraph Groq Assistant | |
| emoji: π€ | |
| colorFrom: purple | |
| colorTo: indigo | |
| sdk: gradio | |
| sdk_version: 5.25.0 | |
| app_file: app.py | |
| pinned: false | |
| license: mit | |
| # LangGraph Γ Groq General Assistant | |
| A stateful conversational AI chatbot built with: | |
| | Component | Role | | |
| |-----------|------| | |
| | **LangGraph** | Manages conversation graph / state | | |
| | **Groq** | Ultra-fast LLM inference (Llama 3, Mixtral, Gemma) | | |
| | **Gradio 5** | Web UI, deployable on Hugging Face Spaces | | |
| ## π Quick Start | |
| 1. Clone this Space or run locally | |
| 2. Enter your [Groq API key](https://console.groq.com) (free tier available) | |
| 3. Pick a model, optionally edit the system prompt | |
| 4. Start chatting! | |
| ## π§ Local Setup | |
| ```bash | |
| pip install -r requirements.txt | |
| pip install "gradio>=5.25.0" | |
| python app.py | |
| ``` | |
| ## π Compatibility Notes | |
| - **Gradio version** is controlled by `sdk_version` in this README β not by `requirements.txt` | |
| - **`audioop-lts`** in requirements.txt backports the `audioop` stdlib module removed in Python 3.13, which pydub (a Gradio dep) needs | |
| - **`huggingface_hub>=1.0`** required because Gradio 5.25+ dropped the old `HfFolder` API that was removed in hub v1.0 |