├── .coveragerc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── general_issue.yml ├── PULL_REQUEST_TEMPLATE │ ├── external_link_template.md │ └── issue_pr_template.md └── workflows │ ├── lfs-check.yml │ └── pre-commit.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── automate-ml-for-kaggle ├── .env.example ├── README.html ├── README.md ├── house_prices_train.csv ├── index.html ├── main.py ├── pyproject.toml └── utils.py ├── dataroom-research ├── .env.example ├── .gitignore ├── README.html ├── README.md ├── gdrive_signin.py ├── main.py ├── pyproject.toml └── requirements.txt ├── deep-research-agent ├── .env.example ├── .gitignore ├── .python-version ├── README.html ├── README.md ├── backend.py ├── frontend.py ├── main.py └── pyproject.toml ├── e-commerce-customer-service ├── .env.example ├── README.html ├── README.md ├── functions.py ├── main.py ├── mock_order_database.json ├── mock_user_info.json ├── prompts.py └── pyproject.toml ├── email-management ├── .env.example ├── .gitignore ├── README.html ├── README.md ├── email_utils.py ├── main.py └── pyproject.toml ├── external_repo_guide.md ├── financial-analysis ├── .env.example ├── .gitignore ├── README.html ├── README.md ├── main.py └── pyproject.toml ├── game-design-agent-team ├── LICENSE ├── README.md ├── agent_utils.py ├── assets │ ├── game-design-page.png │ └── game-designed.png ├── main.py └── requirements.txt ├── manage-todos-with-realtime-agent ├── .gitignore ├── LICENSE ├── OAI_CONFIG_LIST_sample ├── README.md ├── __init__.py ├── main.py ├── requirements.txt ├── todo_utils.py └── website_files │ ├── static │ ├── Audio.js │ ├── ag2.svg │ └── main.js │ └── templates │ └── chat.html ├── project-template ├── OAI_CONFIG_LIST_sample ├── README.md ├── main.py ├── project-template.ipynb └── requirements.txt ├── travel-planner ├── README.md ├── google_map_platforms.py ├── main.py ├── ontology.py ├── requirements.txt └── trip_planner_data │ ├── attractions.json │ ├── cities.json │ ├── restaurants.json │ └── travel-planning-overview.png ├── tutorial └── agent_pattern_cookbook │ ├── .env.example │ ├── README.md │ ├── pattern_advanced_context_aware_routing.py │ ├── pattern_advanced_escalation.py │ ├── pattern_advanced_feedback_loop.py │ ├── pattern_advanced_hierarchical.py │ ├── pattern_advanced_organic.py │ ├── pattern_advanced_pipeline.py │ ├── pattern_advanced_redundant.py │ ├── pattern_advanced_star.py │ ├── pattern_advanced_triage_with_tasks.py │ ├── pattern_basic_1_two_agent_chat.py │ ├── pattern_basic_2_sequential_chat.py │ ├── pattern_basic_3_nested_chat.py │ ├── pattern_basic_4_group_chat.py │ └── pyproject.toml └── workshop-08232025-data-hack-summit ├── README.md ├── images ├── context_aware_routing.png ├── escalation.png ├── feedback_loop.png ├── hirarchical.png ├── organic.png └── redundent.png ├── module1_introduction └── module1_introduction.ipynb ├── module2_setup └── setup_and_basics.ipynb ├── module3_core_concepts_and_architectures ├── architectures.ipynb └── core_concepts.ipynb ├── module4_advanced_agent_design_patterns ├── 4.1_context_aware_routing.ipynb ├── 4.2_escalation.ipynb ├── 4.3_feedback_loop.ipynb ├── 4.4_hirarchical.ipynb ├── 4.5_organic.ipynb ├── 4.6_sequential.ipynb ├── 4.7_redundent.ipynb └── reasoning_agent.ipynb ├── module5_building_custom_agents ├── custom_agent2_customer_support.ipynb ├── customer_support_agent.py └── my_app.py ├── module6_integration_with_external_tools ├── README.md ├── integrate_agent_with_mcp.py ├── mcp_arxiv.py ├── mcp_wikipedia.py └── my_app.py ├── module7_real_world_examples ├── marketanalysis │ ├── .codespell-whitelist.txt │ ├── .devcontainer │ │ ├── devcontainer.env │ │ ├── docker-compose.yml │ │ └── setup.sh │ ├── .dockerignore │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── deploy_to_azure.yml │ │ │ └── test.yml │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .secrets.baseline │ ├── README.md │ ├── azure.yml │ ├── docker │ │ ├── Dockerfile │ │ └── content │ │ │ ├── nginx.conf.template │ │ │ └── run_fastagency.sh │ ├── marketanalysis │ │ ├── __init__.py │ │ ├── deployment │ │ │ ├── __init__.py │ │ │ ├── main_1_fastapi.py │ │ │ └── main_2_mesop.py │ │ ├── local │ │ │ ├── __init__.py │ │ │ ├── main_console.py │ │ │ └── main_mesop.py │ │ ├── market_analysis.py │ │ └── workflow.py │ ├── pyproject.toml │ ├── scripts │ │ ├── build_docker.sh │ │ ├── check-registered-app-pre-commit.sh │ │ ├── check-registered-app.sh │ │ ├── deploy_to_azure.sh │ │ ├── lint-pre-commit.sh │ │ ├── lint.sh │ │ ├── run_docker.sh │ │ ├── run_mesop_locally.sh │ │ ├── static-analysis.sh │ │ └── static-pre-commit.sh │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_workflow.py └── marketanalysis_streamlit │ ├── market_analysis.py │ └── my_app.py └── requirements.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.github/ISSUE_TEMPLATE/general_issue.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/external_link_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.github/PULL_REQUEST_TEMPLATE/external_link_template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/issue_pr_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.github/PULL_REQUEST_TEMPLATE/issue_pr_template.md -------------------------------------------------------------------------------- /.github/workflows/lfs-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.github/workflows/lfs-check.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/README.md -------------------------------------------------------------------------------- /automate-ml-for-kaggle/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/automate-ml-for-kaggle/.env.example -------------------------------------------------------------------------------- /automate-ml-for-kaggle/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/automate-ml-for-kaggle/README.html -------------------------------------------------------------------------------- /automate-ml-for-kaggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/automate-ml-for-kaggle/README.md -------------------------------------------------------------------------------- /automate-ml-for-kaggle/house_prices_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/automate-ml-for-kaggle/house_prices_train.csv -------------------------------------------------------------------------------- /automate-ml-for-kaggle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/automate-ml-for-kaggle/index.html -------------------------------------------------------------------------------- /automate-ml-for-kaggle/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/automate-ml-for-kaggle/main.py -------------------------------------------------------------------------------- /automate-ml-for-kaggle/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/automate-ml-for-kaggle/pyproject.toml -------------------------------------------------------------------------------- /automate-ml-for-kaggle/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/automate-ml-for-kaggle/utils.py -------------------------------------------------------------------------------- /dataroom-research/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/dataroom-research/.env.example -------------------------------------------------------------------------------- /dataroom-research/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/dataroom-research/.gitignore -------------------------------------------------------------------------------- /dataroom-research/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/dataroom-research/README.html -------------------------------------------------------------------------------- /dataroom-research/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/dataroom-research/README.md -------------------------------------------------------------------------------- /dataroom-research/gdrive_signin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/dataroom-research/gdrive_signin.py -------------------------------------------------------------------------------- /dataroom-research/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/dataroom-research/main.py -------------------------------------------------------------------------------- /dataroom-research/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/dataroom-research/pyproject.toml -------------------------------------------------------------------------------- /dataroom-research/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/dataroom-research/requirements.txt -------------------------------------------------------------------------------- /deep-research-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/deep-research-agent/.env.example -------------------------------------------------------------------------------- /deep-research-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/deep-research-agent/.gitignore -------------------------------------------------------------------------------- /deep-research-agent/.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /deep-research-agent/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/deep-research-agent/README.html -------------------------------------------------------------------------------- /deep-research-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/deep-research-agent/README.md -------------------------------------------------------------------------------- /deep-research-agent/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/deep-research-agent/backend.py -------------------------------------------------------------------------------- /deep-research-agent/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/deep-research-agent/frontend.py -------------------------------------------------------------------------------- /deep-research-agent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/deep-research-agent/main.py -------------------------------------------------------------------------------- /deep-research-agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/deep-research-agent/pyproject.toml -------------------------------------------------------------------------------- /e-commerce-customer-service/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/e-commerce-customer-service/.env.example -------------------------------------------------------------------------------- /e-commerce-customer-service/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/e-commerce-customer-service/README.html -------------------------------------------------------------------------------- /e-commerce-customer-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/e-commerce-customer-service/README.md -------------------------------------------------------------------------------- /e-commerce-customer-service/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/e-commerce-customer-service/functions.py -------------------------------------------------------------------------------- /e-commerce-customer-service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/e-commerce-customer-service/main.py -------------------------------------------------------------------------------- /e-commerce-customer-service/mock_order_database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/e-commerce-customer-service/mock_order_database.json -------------------------------------------------------------------------------- /e-commerce-customer-service/mock_user_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/e-commerce-customer-service/mock_user_info.json -------------------------------------------------------------------------------- /e-commerce-customer-service/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/e-commerce-customer-service/prompts.py -------------------------------------------------------------------------------- /e-commerce-customer-service/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/e-commerce-customer-service/pyproject.toml -------------------------------------------------------------------------------- /email-management/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/email-management/.env.example -------------------------------------------------------------------------------- /email-management/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/email-management/.gitignore -------------------------------------------------------------------------------- /email-management/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/email-management/README.html -------------------------------------------------------------------------------- /email-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/email-management/README.md -------------------------------------------------------------------------------- /email-management/email_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/email-management/email_utils.py -------------------------------------------------------------------------------- /email-management/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/email-management/main.py -------------------------------------------------------------------------------- /email-management/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/email-management/pyproject.toml -------------------------------------------------------------------------------- /external_repo_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/external_repo_guide.md -------------------------------------------------------------------------------- /financial-analysis/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/financial-analysis/.env.example -------------------------------------------------------------------------------- /financial-analysis/.gitignore: -------------------------------------------------------------------------------- 1 | .workspace 2 | -------------------------------------------------------------------------------- /financial-analysis/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/financial-analysis/README.html -------------------------------------------------------------------------------- /financial-analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/financial-analysis/README.md -------------------------------------------------------------------------------- /financial-analysis/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/financial-analysis/main.py -------------------------------------------------------------------------------- /financial-analysis/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/financial-analysis/pyproject.toml -------------------------------------------------------------------------------- /game-design-agent-team/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/game-design-agent-team/LICENSE -------------------------------------------------------------------------------- /game-design-agent-team/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/game-design-agent-team/README.md -------------------------------------------------------------------------------- /game-design-agent-team/agent_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/game-design-agent-team/agent_utils.py -------------------------------------------------------------------------------- /game-design-agent-team/assets/game-design-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/game-design-agent-team/assets/game-design-page.png -------------------------------------------------------------------------------- /game-design-agent-team/assets/game-designed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/game-design-agent-team/assets/game-designed.png -------------------------------------------------------------------------------- /game-design-agent-team/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/game-design-agent-team/main.py -------------------------------------------------------------------------------- /game-design-agent-team/requirements.txt: -------------------------------------------------------------------------------- 1 | ag2 2 | streamlit==1.41.1 3 | -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/.gitignore -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/LICENSE -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/OAI_CONFIG_LIST_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/OAI_CONFIG_LIST_sample -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/README.md -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/main.py -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/requirements.txt -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/todo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/todo_utils.py -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/website_files/static/Audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/website_files/static/Audio.js -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/website_files/static/ag2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/website_files/static/ag2.svg -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/website_files/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/website_files/static/main.js -------------------------------------------------------------------------------- /manage-todos-with-realtime-agent/website_files/templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/manage-todos-with-realtime-agent/website_files/templates/chat.html -------------------------------------------------------------------------------- /project-template/OAI_CONFIG_LIST_sample: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/project-template/README.md -------------------------------------------------------------------------------- /project-template/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/project-template/main.py -------------------------------------------------------------------------------- /project-template/project-template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/project-template/project-template.ipynb -------------------------------------------------------------------------------- /project-template/requirements.txt: -------------------------------------------------------------------------------- 1 | ag2 2 | -------------------------------------------------------------------------------- /travel-planner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/travel-planner/README.md -------------------------------------------------------------------------------- /travel-planner/google_map_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/travel-planner/google_map_platforms.py -------------------------------------------------------------------------------- /travel-planner/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/travel-planner/main.py -------------------------------------------------------------------------------- /travel-planner/ontology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/travel-planner/ontology.py -------------------------------------------------------------------------------- /travel-planner/requirements.txt: -------------------------------------------------------------------------------- 1 | ag2[graph-rag-falkor-db] 2 | -------------------------------------------------------------------------------- /travel-planner/trip_planner_data/attractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/travel-planner/trip_planner_data/attractions.json -------------------------------------------------------------------------------- /travel-planner/trip_planner_data/cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/travel-planner/trip_planner_data/cities.json -------------------------------------------------------------------------------- /travel-planner/trip_planner_data/restaurants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/travel-planner/trip_planner_data/restaurants.json -------------------------------------------------------------------------------- /travel-planner/trip_planner_data/travel-planning-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/travel-planner/trip_planner_data/travel-planning-overview.png -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/.env.example -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/README.md -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_advanced_context_aware_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_advanced_context_aware_routing.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_advanced_escalation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_advanced_escalation.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_advanced_feedback_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_advanced_feedback_loop.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_advanced_hierarchical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_advanced_hierarchical.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_advanced_organic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_advanced_organic.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_advanced_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_advanced_pipeline.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_advanced_redundant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_advanced_redundant.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_advanced_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_advanced_star.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_advanced_triage_with_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_advanced_triage_with_tasks.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_basic_1_two_agent_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_basic_1_two_agent_chat.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_basic_2_sequential_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_basic_2_sequential_chat.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_basic_3_nested_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_basic_3_nested_chat.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pattern_basic_4_group_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pattern_basic_4_group_chat.py -------------------------------------------------------------------------------- /tutorial/agent_pattern_cookbook/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/tutorial/agent_pattern_cookbook/pyproject.toml -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/README.md -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/images/context_aware_routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/images/context_aware_routing.png -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/images/escalation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/images/escalation.png -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/images/feedback_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/images/feedback_loop.png -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/images/hirarchical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/images/hirarchical.png -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/images/organic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/images/organic.png -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/images/redundent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/images/redundent.png -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module1_introduction/module1_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module1_introduction/module1_introduction.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module2_setup/setup_and_basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module2_setup/setup_and_basics.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module3_core_concepts_and_architectures/architectures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module3_core_concepts_and_architectures/architectures.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module3_core_concepts_and_architectures/core_concepts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module3_core_concepts_and_architectures/core_concepts.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.1_context_aware_routing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.1_context_aware_routing.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.2_escalation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.2_escalation.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.3_feedback_loop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.3_feedback_loop.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.4_hirarchical.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.4_hirarchical.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.5_organic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.5_organic.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.6_sequential.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.6_sequential.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.7_redundent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/4.7_redundent.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/reasoning_agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module4_advanced_agent_design_patterns/reasoning_agent.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module5_building_custom_agents/custom_agent2_customer_support.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module5_building_custom_agents/custom_agent2_customer_support.ipynb -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module5_building_custom_agents/customer_support_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module5_building_custom_agents/customer_support_agent.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module5_building_custom_agents/my_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module5_building_custom_agents/my_app.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module6_integration_with_external_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module6_integration_with_external_tools/README.md -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module6_integration_with_external_tools/integrate_agent_with_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module6_integration_with_external_tools/integrate_agent_with_mcp.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module6_integration_with_external_tools/mcp_arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module6_integration_with_external_tools/mcp_arxiv.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module6_integration_with_external_tools/mcp_wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module6_integration_with_external_tools/mcp_wikipedia.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module6_integration_with_external_tools/my_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module6_integration_with_external_tools/my_app.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.codespell-whitelist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.devcontainer/devcontainer.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.devcontainer/devcontainer.env -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.devcontainer/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.devcontainer/setup.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.dockerignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.github/dependabot.yml -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.github/workflows/deploy_to_azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.github/workflows/deploy_to_azure.yml -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.github/workflows/test.yml -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.gitignore -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.pre-commit-config.yaml -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/.secrets.baseline -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/README.md -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/azure.yml -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/docker/Dockerfile -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/docker/content/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/docker/content/nginx.conf.template -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/docker/content/run_fastagency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/docker/content/run_fastagency.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/deployment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/deployment/main_1_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/deployment/main_1_fastapi.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/deployment/main_2_mesop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/deployment/main_2_mesop.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/local/main_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/local/main_console.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/local/main_mesop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/local/main_mesop.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/market_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/market_analysis.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/marketanalysis/workflow.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/pyproject.toml -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/build_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/build_docker.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/check-registered-app-pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/check-registered-app-pre-commit.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/check-registered-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/check-registered-app.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/deploy_to_azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/deploy_to_azure.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/lint-pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/lint-pre-commit.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/lint.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/run_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/run_docker.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/run_mesop_locally.sh: -------------------------------------------------------------------------------- 1 | gunicorn marketanalysis.local.main_mesop:app 2 | -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/static-analysis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/static-analysis.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/static-pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/scripts/static-pre-commit.sh -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/tests/conftest.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/tests/test_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis/tests/test_workflow.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis_streamlit/market_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis_streamlit/market_analysis.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis_streamlit/my_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/module7_real_world_examples/marketanalysis_streamlit/my_app.py -------------------------------------------------------------------------------- /workshop-08232025-data-hack-summit/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag2ai/build-with-ag2/HEAD/workshop-08232025-data-hack-summit/requirements.txt --------------------------------------------------------------------------------