update flow for the docker image

This commit is contained in:
Vasilije 2023-09-04 20:49:59 +02:00
parent f0db050274
commit a04f2de58f
2 changed files with 4 additions and 0 deletions

BIN
assets/topoteretes_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View file

@ -23,7 +23,11 @@ load_dotenv()
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY", "")
app = FastAPI(debug=True)
from auth.cognito.JWTBearer import JWTBearer
from auth.auth import jwks
auth = JWTBearer(jwks)
from fastapi import Depends
class ImageResponse(BaseModel):
success: bool
message: str