Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -51,7 +51,7 @@ make all
Or run specific Python files directly:

```bash
uv run python src/main.py
uv run python main.py
```

</Step>
Expand Down
2 changes: 1 addition & 1 deletion manual_docs/branch_comparison.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down