Spaces:
Runtime error
Runtime error
File size: 898 Bytes
106132f |
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 |
from transformers import pipeline
import gradio as gr
from fastapi import FastAPI
from gradio_client import Client
from typing import Union
import uvicorn
app = FastAPI()
chatbot = pipeline(model="google/gemma-7b")
def DS_chatbot(message,history):
conversation = chatbot(message)
return conversation[0]['generated_text']
io = gr.ChatInterface(DS_chatbot, title=" DS Chatbot", description="Enter text to start chatting.")
@app.get("/")
async def read_main():
return {"message": "Append /gradio to the url to see gradio the interface"
,"message2": "Append /hello/{any_name} to get a greeting"}
@app.get("/hello/{name}")
async def read_name(name: Union[str, None] = None):
return { "Hey!": name}
# Mount the Gradio app onto the FastAPI app
app = gr.mount_gradio_app(app, io, path='/gradio')
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7860)
|