File size: 535 Bytes
eb6055a
 
 
 
 
 
 
 
 
f71584f
eb6055a
 
 
 
 
 
 
0261d8f
 
eb6055a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import gradio as gr
import torch

# Load the model
model = torch.load("chatbot_model.pt")  # Adjust as needed

# Define the chatbot function
def chatbot(input_text):
    # Use your model inference function here
    response = model.qa_chain(input_text)  # Call to your response function
    return response

# Define the Gradio interface
iface = gr.Interface(
    fn=chatbot,  # The function that will be called
    inputs="text",  # User will input text
    outputs="text"  # Model will output text
)

# Launch the app
iface.launch()