diff --git a/CLAUDE.md b/CLAUDE.md index c424a66..b5fa17a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -67,7 +67,7 @@ from common import global_config # Access config values global_config.example_parent.example_child -global_config.llm_config.default_model +global_config.default_llm.default_model # Access secrets from .env global_config.OPENAI_API_KEY diff --git a/docs/content/docs/index.mdx b/docs/content/docs/index.mdx index a092dab..977c8b1 100644 --- a/docs/content/docs/index.mdx +++ b/docs/content/docs/index.mdx @@ -17,7 +17,7 @@ import { Step, Steps } from 'fumadocs-ui/components/steps'; Create and activate your virtual environment using `uv`: ```bash -make setup +uv sync ``` This will create a `.venv` directory and sync all dependencies from `pyproject.toml`. @@ -51,7 +51,7 @@ make all Or run specific Python files directly: ```bash -uv run python src/main.py +uv run python main.py ``` diff --git a/manual_docs/branch_comparison.md b/manual_docs/branch_comparison.md index 57280cf..6e08f31 100644 --- a/manual_docs/branch_comparison.md +++ b/manual_docs/branch_comparison.md @@ -45,7 +45,7 @@ This document provides a detailed comparison of features available in the `main` |---------|:------:|:------:|-------| | pytest framework | ✅ | ✅ | Python testing | | TestTemplate base class | ✅ | ✅ | Shared test utilities | -| pytest-asyncio | ✅ | ✅ | Async test support | +| pytest-asyncio | ❌ | ✅ | Async test support | | E2E test structure | ❌ | ✅ | End-to-end testing patterns | ### Web Framework