Skip to content

Releases: groq/groq-gradio

Bump Gradio and Update Package Metadata

30 Oct 18:06
40bc04b
Compare
Choose a tag to compare

Update Gradio to stable release (5.0.0b5 → 5.0.0) and update package metadata

Initial Release: Groq + Gradio Integration

28 Oct 13:20
9a6b69b
Compare
Choose a tag to compare

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