Spaces:
Runtime error
Runtime error
File size: 696 Bytes
fada25c 4a1be1e cd7fdea 4a1be1e c202a94 4a1be1e |
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 |
import gradio as gr
from fastapi import FastAPI
from fastapi.staticfiles import StaticFiles
import uvicorn
# Initialize FastAPI app
app = FastAPI()
# Define a function for the chat interface
def respond_to_chat(history, message):
response = f"Hello, {message}!"
return response, history
# Create Gradio ChatInterface
chat = gr.ChatInterface(fn=respond_to_chat, title="Chat with AI")
# Mount static files
app.mount("/static", StaticFiles(directory="static", html=True), name="static")
# Mount Gradio ChatInterface to FastAPI app
app = gr.mount_gradio_app(app, chat,path="/gradio")
# Run the app with uvicorn
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7860)
|