File size: 559 Bytes
eb6055a
8ac7675
eb6055a
 
8ac7675
eb6055a
 
 
 
8ac7675
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
from model2 import ChatbotModel

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

# Define the chatbot function
def chatbot(input_text):
    # Use your model inference function here
    response = ChatbotModel.get_response(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()