| import json | |
| from typing import Any | |
| from fastapi import APIRouter | |
| from app.api.api_v1.endpoints import openai | |
| from app.core.config import settings | |
| api_router = APIRouter() | |
| api_router.include_router(openai.router, prefix="/openai", tags=["OpenAI"]) | |
| def read() -> Any: | |
| return { | |
| "project_name": settings.PROJECT_NAME, | |
| "description": settings.DESCRIPTION | |
| } | |