├── .env.example ├── .gitignore ├── 0_hello_world.py ├── 10_lets_open_files.py ├── 10_sample_data ├── partial_secret.xy └── secret_data.bin ├── 11_hello_vision.py ├── 11_vision_sample_data ├── grocery_test.png └── stv_jbs.png ├── 12_running_2_mixed_agents_with_vision.py ├── 13_cv_dataExtraction.py ├── 1_hello_with_OAI_api.py ├── 2_simple_structured.py ├── 3_simple_structured_table.py ├── 4_lets_make_tools.py ├── 5_mix_tools_with_structured_output.py ├── 6_code_as_tool.py ├── 7_code_with_added_libs.py ├── 8_lets_make_dynamic_prompt.py ├── 9_mix_multiple_prompts.py ├── LICENSE ├── README.md └── resources └── CV_TEMPLATE_0002.pdf /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /0_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/0_hello_world.py -------------------------------------------------------------------------------- /10_lets_open_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/10_lets_open_files.py -------------------------------------------------------------------------------- /10_sample_data/partial_secret.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/10_sample_data/partial_secret.xy -------------------------------------------------------------------------------- /10_sample_data/secret_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/10_sample_data/secret_data.bin -------------------------------------------------------------------------------- /11_hello_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/11_hello_vision.py -------------------------------------------------------------------------------- /11_vision_sample_data/grocery_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/11_vision_sample_data/grocery_test.png -------------------------------------------------------------------------------- /11_vision_sample_data/stv_jbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/11_vision_sample_data/stv_jbs.png -------------------------------------------------------------------------------- /12_running_2_mixed_agents_with_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/12_running_2_mixed_agents_with_vision.py -------------------------------------------------------------------------------- /13_cv_dataExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/13_cv_dataExtraction.py -------------------------------------------------------------------------------- /1_hello_with_OAI_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/1_hello_with_OAI_api.py -------------------------------------------------------------------------------- /2_simple_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/2_simple_structured.py -------------------------------------------------------------------------------- /3_simple_structured_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/3_simple_structured_table.py -------------------------------------------------------------------------------- /4_lets_make_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/4_lets_make_tools.py -------------------------------------------------------------------------------- /5_mix_tools_with_structured_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/5_mix_tools_with_structured_output.py -------------------------------------------------------------------------------- /6_code_as_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/6_code_as_tool.py -------------------------------------------------------------------------------- /7_code_with_added_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/7_code_with_added_libs.py -------------------------------------------------------------------------------- /8_lets_make_dynamic_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/8_lets_make_dynamic_prompt.py -------------------------------------------------------------------------------- /9_mix_multiple_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/9_mix_multiple_prompts.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /resources/CV_TEMPLATE_0002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-ali-abdallah/pydantic-ai-agents-tutorial/HEAD/resources/CV_TEMPLATE_0002.pdf --------------------------------------------------------------------------------