mirror of
https://github.com/Balshgit/gpt_chat_bot.git
synced 2025-09-11 22:30:41 +03:00
5 lines
153 B
Python
5 lines
153 B
Python
from fastapi import APIRouter
|
|
from fastapi.responses import ORJSONResponse
|
|
|
|
api_router = APIRouter(prefix="/api", default_response_class=ORJSONResponse)
|