├── .gitignore ├── README.md ├── _1.1_tools.py ├── _1_workflow.py ├── _2_agent.py ├── _3_agents_sdk.py ├── _3_memory_retrieval.py ├── _4_multi_agents.py ├── _4_multi_agents_demo.py ├── _5.1_simple_evals.py ├── _5.2_evals.py ├── _6_mcp.py ├── __init__.py ├── clean.sh ├── config.py ├── eval_utils.py ├── pyproject.toml ├── requirements.txt ├── sample_files ├── favorite_books.txt ├── favorite_cities.txt └── favorite_songs.txt ├── sample_vector_store_memory.txt ├── utils.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/README.md -------------------------------------------------------------------------------- /_1.1_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_1.1_tools.py -------------------------------------------------------------------------------- /_1_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_1_workflow.py -------------------------------------------------------------------------------- /_2_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_2_agent.py -------------------------------------------------------------------------------- /_3_agents_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_3_agents_sdk.py -------------------------------------------------------------------------------- /_3_memory_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_3_memory_retrieval.py -------------------------------------------------------------------------------- /_4_multi_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_4_multi_agents.py -------------------------------------------------------------------------------- /_4_multi_agents_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_4_multi_agents_demo.py -------------------------------------------------------------------------------- /_5.1_simple_evals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_5.1_simple_evals.py -------------------------------------------------------------------------------- /_5.2_evals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_5.2_evals.py -------------------------------------------------------------------------------- /_6_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/_6_mcp.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/clean.sh -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/config.py -------------------------------------------------------------------------------- /eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/eval_utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_files/favorite_books.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/sample_files/favorite_books.txt -------------------------------------------------------------------------------- /sample_files/favorite_cities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/sample_files/favorite_cities.txt -------------------------------------------------------------------------------- /sample_files/favorite_songs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/sample_files/favorite_songs.txt -------------------------------------------------------------------------------- /sample_vector_store_memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/sample_vector_store_memory.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wandb/agents-course/HEAD/uv.lock --------------------------------------------------------------------------------