gitextract_eeb9sykf/ ├── .flake8 ├── .github/ │ ├── CODEOWNERS │ ├── pull_request_template.md │ └── workflows/ │ ├── lint.yml │ └── publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs/ │ ├── api_reference.md │ └── generate_api_reference.py ├── pyproject.toml ├── src/ │ └── fastapi_poe/ │ ├── __init__.py │ ├── base.py │ ├── client.py │ ├── py.typed │ ├── sync_utils.py │ ├── templates.py │ └── types.py └── tests/ ├── test_base.py ├── test_client.py ├── test_sync_utils.py └── test_types.py