Skip to content

Commit 12f8776

Browse files
committed
Refactor project structure to replace 'stream_agents' with 'vision_agents'
- Updated import paths across multiple files to reflect the new 'vision_agents' namespace. - Adjusted mypy and linting commands in development scripts and CI workflows to target 'vision_agents'. - Renamed utility functions and logging references to align with the new structure. - Added new files for vision agents and updated example scripts accordingly. - Ensured backward compatibility by maintaining old references where necessary.
1 parent 589f6da commit 12f8776

File tree

50 files changed

+6162
-248
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+6162
-248
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Run Ruff
2222
run: uv run ruff check .
2323
- name: Mypy core
24-
run: uv run mypy --install-types --non-interactive agents-core/stream_agents
24+
run: uv run mypy --install-types --non-interactive agents-core/vision_agents
2525
- name: Mypy plugins
2626
run: uv run mypy --install-types --non-interactive --exclude 'plugins/.*/tests/.*' plugins
2727

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ uv run ruff check --fix
5656

5757

5858
```
59-
uv run mypy --install-types --non-interactive -p stream_agents
59+
uv run mypy --install-types --non-interactive -p vision_agents
6060
```
6161

6262
```

0 commit comments

Comments
 (0)