Smart Integration Microservice for scraping, digester and CodeGen built with FastAPI.
Directory structure:
src- production source codesrc/modules- domain oriented modules with API routes and implementationsrc/common- common code and utilstest/unit- unit teststest/integration- integration tests
Important files:
server.py- uvicorn server entry pointsrc/app.py- FastAPI entry pointsrc/config.py- project configurationpyproject.toml- dependencies, tools, tasksDockerfile- docker file
App exposes API documentation on the URLs below:
- OpenAPI UI: http://localhost:8090/docs
- ReDoc: http://localhost:8090/redoc
App is configured using environment variables, see the default configuration in src/config.py and samples in .env-example.
For local development you can take advantage of dotenv plugins that read .env file from the project root.
# copy and use example dev configuration
cp .env-example .env
# copy and use configuration for unit/integration tests
cp .env.test-example .env.test# build image
docker compose build
# start container
docker compose upNOTE: tasks are run with a poethepoet tool and configured in pyproject.toml
uv run poe start
# access the service at http://localhost:8090
# e.g. `curl http://0.0.0.0:8090/health`dev dependency group is used to distinguish from production ones.
# install production dependency
uv add mydep
# install dev dependency
uv add --dev mydepAll code should adhere to the quality checks below. It is highly recommended to instal pre-commit hook and also integrate these tools below in the IDE.
Quality checks using ruff and mypy.
uv run poe typecheck
uv run poe lint
uv run poe stylecheck
# optionally run all quality checks (including unit tests)
uv run poe qa
# attempt to fix formatting and lint errors
uv run poe fixRunning tests using pytest.
# run all tests
uv run poe test
# run in watch mode
uv run poe test-watch
# run unit tests only
uv run poe test test/unit
# run integration tests only
uv run poe test test/integrationThis project uses pre-commit to ensure consistent code style and other quality checks.
# install the hooks from .pre-commit-config.yaml
# this needs to be done just once when setting up project
uv run pre-commit installOnce installed, the hooks will automatically run every time you commit changes. If any issues are found or files are modified, the commit will be aborted until fixed.
For development and testing purposes is every api request and llm call traced with Langfuse.
# configure correct langfuse project keys
LANGFUSE__SECRET_KEY=project-secret-key
LANGFUSE__PUBLIC_KEY=project-public-key
# when using for development define your own environment
LANGFUSE__ENVIRONMENT=dev-myname
# enable langfuse
LANGFUSE__TRACING_ENABLED=true
- API endpoints and parameters have to follow camel case convention
- LLM model can be configured via any OpenAI-compatible chat API