Initial Release: Groq + Gradio Integration
First Release of groq-gradio 🚀
This initial release provides a Python package for easily creating Gradio interfaces with models powered by Groq.
Features
- Simple integration between Groq API and Gradio chat interfaces
- Custom chat interface implementations
- Flexible composition patterns for building Groq-powered Gradio apps
Requirements
- Python >= 3.10
- gradio >= 5.0.0b5
- groq
Usage
Create interactive chat interfaces with models powered by Groq using just a few lines of code:
from groq_gradio import create_demo
demo = create_demo()
demo.launch()