Spaces:
Running
Running
File size: 545 Bytes
3dc74fc 8d03104 f0302b8 8d03104 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
import groq_gradio
import os
os.environ["GROQ_API_KEY"] = "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"
gr.load(
name = "llama-3.2-3b-preview",
src = groq_gradio.registry,
title = "Groq-Gradio Chat",
theme = "upsatwal/mlsc_tiet",
examples = ["Tell me a short story about a puppy",
"Write a 14 line poem about travelling in Shakespeare style",
"What are the wonders of the world?",
"List the countries in Africa and their capitals"]
).launch() |