mirror of
https://github.com/zylon-ai/private-gpt.git
synced 2025-12-22 07:40:12 +01:00
6 lines
193 B
Python
6 lines
193 B
Python
"""FastAPI app creation, logger configuration and main API routes."""
|
|
|
|
from private_gpt.di import global_injector
|
|
from private_gpt.launcher import create_app
|
|
|
|
app = create_app(global_injector)
|