docker_fastapi / app.py
thesunshine36's picture
Update app.py
21fd804
raw
history blame contribute delete
No virus
259 Bytes
from fastapi import FastAPI
from model_config import console_chat
# Get time
app = FastAPI()
# FastAPI
@app.post("/")
def return_api(text: str):
# Get the caption
response= console_chat.chat(text)
# Return message
return response