feat: Phase 1+2 — project setup and core infrastructure
- requirements.txt, config.yaml, .env, Dockerfile, docker-compose.yml
- app/core: config (YAML+env override), logging (JSON structured),
exceptions (typed hierarchy), json_utils (Markdown fence stripping)
- app/clients: LLMClient ABC + ZhipuAIClient (run_in_executor),
StorageClient ABC + RustFSClient (boto3 head_object for size check)
- app/main.py: FastAPI app with health endpoint and router registration
- app/core/dependencies.py: lru_cache singleton factories
- tests/conftest.py: mock_llm, mock_storage, test_app, client fixtures
- pytest.ini: asyncio_mode=auto
- 11 unit tests passing
2026-04-10 15:22:45 +08:00
|
|
|
from functools import lru_cache
|
|
|
|
|
|
|
|
|
|
from app.clients.llm.base import LLMClient
|
2026-04-17 01:22:05 +08:00
|
|
|
from app.clients.llm.qwen_client import QwenClient
|
feat: Phase 1+2 — project setup and core infrastructure
- requirements.txt, config.yaml, .env, Dockerfile, docker-compose.yml
- app/core: config (YAML+env override), logging (JSON structured),
exceptions (typed hierarchy), json_utils (Markdown fence stripping)
- app/clients: LLMClient ABC + ZhipuAIClient (run_in_executor),
StorageClient ABC + RustFSClient (boto3 head_object for size check)
- app/main.py: FastAPI app with health endpoint and router registration
- app/core/dependencies.py: lru_cache singleton factories
- tests/conftest.py: mock_llm, mock_storage, test_app, client fixtures
- pytest.ini: asyncio_mode=auto
- 11 unit tests passing
2026-04-10 15:22:45 +08:00
|
|
|
from app.clients.storage.base import StorageClient
|
|
|
|
|
from app.clients.storage.rustfs_client import RustFSClient
|
|
|
|
|
from app.core.config import get_config
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache(maxsize=1)
|
|
|
|
|
def get_llm_client() -> LLMClient:
|
|
|
|
|
cfg = get_config()
|
2026-04-17 01:22:05 +08:00
|
|
|
dashscope_cfg = cfg["dashscope"]
|
|
|
|
|
return QwenClient(
|
|
|
|
|
api_key=dashscope_cfg["api_key"],
|
|
|
|
|
base_url=dashscope_cfg.get("base_url", "https://dashscope.aliyuncs.com/compatible-mode/v1"),
|
|
|
|
|
fine_tune_base_url=dashscope_cfg.get("fine_tune_base_url"),
|
|
|
|
|
)
|
feat: Phase 1+2 — project setup and core infrastructure
- requirements.txt, config.yaml, .env, Dockerfile, docker-compose.yml
- app/core: config (YAML+env override), logging (JSON structured),
exceptions (typed hierarchy), json_utils (Markdown fence stripping)
- app/clients: LLMClient ABC + ZhipuAIClient (run_in_executor),
StorageClient ABC + RustFSClient (boto3 head_object for size check)
- app/main.py: FastAPI app with health endpoint and router registration
- app/core/dependencies.py: lru_cache singleton factories
- tests/conftest.py: mock_llm, mock_storage, test_app, client fixtures
- pytest.ini: asyncio_mode=auto
- 11 unit tests passing
2026-04-10 15:22:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache(maxsize=1)
|
|
|
|
|
def get_storage_client() -> StorageClient:
|
|
|
|
|
cfg = get_config()
|
|
|
|
|
return RustFSClient(
|
|
|
|
|
endpoint=cfg["storage"]["endpoint"],
|
|
|
|
|
access_key=cfg["storage"]["access_key"],
|
|
|
|
|
secret_key=cfg["storage"]["secret_key"],
|
|
|
|
|
)
|