mirror of
https://github.com/imartinez/privateGPT.git
synced 2026-07-17 01:48:03 +00:00
7 lines
203 B
Python
7 lines
203 B
Python
"""FastAPI app creation, logger configuration and main API routes."""
|
|
|
|
from private_gpt.di import get_global_injector
|
|
from private_gpt.launcher import create_app
|
|
|
|
app = create_app(get_global_injector())
|