Skip to content

Commit 0927b67

Browse files
docs: fix outdated documentation (automated weekly drift check)
- CLAUDE.md: Update `global_config.llm_config.default_model` to `global_config.default_llm.default_model` - Evidence: `common/config_models.py` defines `DefaultLlm` (containing `default_model`) and `LlmConfig` (containing `retry`, `cache_enabled`) separately. - manual_docs/branch_comparison.md: Change `pytest-asyncio` support for `main` from `✅` to `❌` - Evidence: `pyproject.toml` dependencies do not include `pytest-asyncio`, and `uv run pip list` confirms it is not installed. - docs/content/docs/index.mdx: Replace `make setup` with `uv sync` - Evidence: `Makefile` does not contain a `setup` target. - docs/content/docs/index.mdx: Replace `uv run python src/main.py` with `uv run python main.py` - Evidence: `main.py` resides in the project root, not in `src/`. Co-authored-by: Miyamura80 <38335479+Miyamura80@users.noreply.github.com>
1 parent 83ed4ac commit 0927b67

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ from common import global_config
6767

6868
# Access config values
6969
global_config.example_parent.example_child
70-
global_config.llm_config.default_model
70+
global_config.default_llm.default_model
7171

7272
# Access secrets from .env
7373
global_config.OPENAI_API_KEY

docs/content/docs/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { Step, Steps } from 'fumadocs-ui/components/steps';
1717
Create and activate your virtual environment using `uv`:
1818

1919
```bash
20-
make setup
20+
uv sync
2121
```
2222

2323
This will create a `.venv` directory and sync all dependencies from `pyproject.toml`.
@@ -51,7 +51,7 @@ make all
5151
Or run specific Python files directly:
5252

5353
```bash
54-
uv run python src/main.py
54+
uv run python main.py
5555
```
5656

5757
</Step>

manual_docs/branch_comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ This document provides a detailed comparison of features available in the `main`
4545
|---------|:------:|:------:|-------|
4646
| pytest framework ||| Python testing |
4747
| TestTemplate base class ||| Shared test utilities |
48-
| pytest-asyncio | || Async test support |
48+
| pytest-asyncio | || Async test support |
4949
| E2E test structure ||| End-to-end testing patterns |
5050

5151
### Web Framework

0 commit comments

Comments
 (0)