docker_fastapi / app.py
thesunshine36's picture
Update app.py
a8a0316
raw
history blame
258 Bytes
from fastapi import FastAPI
from model_config import console_chat
# Get time
app = FastAPI()
# FastAPI
@app.get("/")
def return_api(text: str):
# Get the caption
response= console_chat.chat(text)
# Return message
return response