File size: 773 Bytes
3c75fe4
 
0022354
3c75fe4
 
a89d725
3c75fe4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57e591c
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
import gradio as gr
import requests
import logging
def predict(message, history):
    # API request to FastAPI backend
    response = requests.post("http://0.0.0.0:8000/chat", json={"message": message, "history": history})
    
    if response.status_code == 200:
        response_data = response.json()
        return response_data['response']
    else:
        return "Error: Unable to connect to the FastAPI backend."

demo = gr.ChatInterface(
    predict,
    title="Blockchain Teacher",
    theme=gr.themes.Soft(),
    chatbot=gr.Chatbot(label="Learn about blockchain technology"),
    textbox=gr.Textbox(
        placeholder="Ask me anything about blockchain",
        scale=7,
        max_lines=2,
    ),
)

def start_gradio():
    demo.launch(server_name="0.0.0.0")