Skip to content

Initial Release: Groq + Gradio Integration

Compare
Choose a tag to compare
@hozen-groq hozen-groq released this 28 Oct 13:20
· 8 commits to main since this release
9a6b69b

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()