mirror of
https://github.com/imartinez/privateGPT.git
synced 2025-06-26 15:34:08 +00:00
7 lines
193 B
Python
7 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)
|