Some checks failed
publish docs / publish-docs (push) Has been cancelled
release-please / release-please (push) Has been cancelled
tests / setup (push) Has been cancelled
tests / ${{ matrix.quality-command }} (black) (push) Has been cancelled
tests / ${{ matrix.quality-command }} (mypy) (push) Has been cancelled
tests / ${{ matrix.quality-command }} (ruff) (push) Has been cancelled
tests / test (push) Has been cancelled
tests / all_checks_passed (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
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)
|