File size: 2,002 Bytes
c80c142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import gradio as gr
from groq import Groq
import os

def chatbot(message, history, api_key):
    # Initialize Groq client with the provided API key
    client = Groq(api_key=api_key)

    # Prepare the messages including the conversation history
    messages = [
        {"role": "system", "content": "You are a helpful assistant."}
    ]
    for human, assistant in history:
        messages.append({"role": "user", "content": human})
        messages.append({"role": "assistant", "content": assistant})
    messages.append({"role": "user", "content": message})

    try:
        # Create the chat completion
        completion = client.chat.completions.create(
            model="llama-3.2-90b-text-preview",
            messages=messages,
            temperature=1,
            max_tokens=1024,
            top_p=1,
            stream=True,
            stop=None,
        )

        # Stream the response
        partial_message = ""
        for chunk in completion:
            if chunk.choices[0].delta.content is not None:
                partial_message += chunk.choices[0].delta.content
                yield partial_message
    except Exception as e:
        yield f"Error: {str(e)}"

# Create the Gradio interface
with gr.Blocks(theme="soft") as iface:
    gr.Markdown("# Groq LLaMA 3.2 90B Chatbot")
    gr.Markdown("Chat with the LLaMA 3.2 90B model using Groq API")
    
    with gr.Row():
        api_key_input = gr.Textbox(
            label="Enter your Groq API Key",
            placeholder="sk-...",
            type="password"
        )

    chatbot = gr.ChatInterface(
        chatbot,
        additional_inputs=[api_key_input],
        examples=[
            "Tell me a short story about a robot learning to paint.",
            "Explain quantum computing in simple terms.",
            "What are some creative ways to reduce plastic waste?",
        ],
        retry_btn=None,
        undo_btn="Delete Last",
        clear_btn="Clear",
    )

# Launch the interface
iface.launch()