dao-ai 0.0.15__tar.gz → 0.0.17__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dao_ai-0.0.15 → dao_ai-0.0.17}/PKG-INFO +2 -1
- dao_ai-0.0.17/config/examples/deep_research.yaml +237 -0
- dao_ai-0.0.17/config/examples/executive_assistant.yaml +239 -0
- dao_ai-0.0.17/examples/deep_research/examples.yaml +38 -0
- dao_ai-0.0.17/examples/executive_assistant/examples.yaml +14 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/examples/hardware_store/examples.yaml +9 -9
- {dao_ai-0.0.15 → dao_ai-0.0.17}/notebooks/05_agent_as_code_driver.py +6 -1
- {dao_ai-0.0.15 → dao_ai-0.0.17}/notebooks/06_run_evaluation.py +6 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/notebooks/08_run_examples.py +0 -3
- {dao_ai-0.0.15 → dao_ai-0.0.17}/notebooks/09_evaluate_inferences.py +6 -0
- dao_ai-0.0.17/notebooks/INVESTech.py +90 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/pyproject.toml +2 -1
- {dao_ai-0.0.15 → dao_ai-0.0.17}/requirements.txt +1 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/graph.py +3 -1
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/models.py +114 -58
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/nodes.py +7 -3
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/agent.py +3 -3
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/genie.py +4 -2
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/human_in_the_loop.py +3 -3
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/mcp.py +11 -12
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/utils.py +1 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_summarization_inference.py +64 -48
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_tools.py +20 -7
- {dao_ai-0.0.15 → dao_ai-0.0.17}/.gitignore +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/.python-version +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/CHANGELOG.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/CONTRIBUTING.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/LICENSE +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/Makefile +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/README.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/Makefile +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/REFACTORING_SUMMARY.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/base-environment-serverless.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/demo_docs/BRAND_REP_DEMO_SUMMARY.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/demo_docs/demo_scripts/brand_rep_product_education_demo.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/demo_docs/demo_scripts/store_associate_ai_assistant_demo.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/demo_docs/demo_scripts/store_manager_alert_response_demo.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/development_workflows.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/.gitkeep +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/Makefile +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agent_implementation.mmd +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agent_tools_architecture.mmd +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agents-and-tools/agent-troubleshooting.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agents-and-tools/agents/agent-best-practices.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agents-and-tools/agents/agent-development-patterns.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agents-and-tools/agents/agent-performance.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agents-and-tools/agents/agent-quickstart.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agents-and-tools/ai-agents.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agents-and-tools/overview.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agents-and-tools/references/agent-reference.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/agents-and-tools/references/tools-reference.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/applications/streamlit-app.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/architecture/overview.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/architecture.mmd +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/architecture.png +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/customer_preparation_guide.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/databricks_integration.mmd +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/deployment/production.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/development/contributing.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/employee_tools_guide.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/getting-started/installation.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/getting-started/mkdocs-quickstart.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/getting-started/quick-start.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/index.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/mkdocs.yml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/scenario_1_architecture.mmd +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/scenario_1_flow.mmd +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/setup-docs.sh +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/task_assignment_workflow_guide.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/docs/tools/overview.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/examples/customer_preparation_workflow.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/examples/task_assignment_workflow.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/load-env.sh +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/CSS_REFACTORING_SUMMARY.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/DEMO_CONTROLS_RESTORED.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/DEMO_IMPLEMENTATION_SUMMARY.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/DEMO_QUICK_START.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/Dockerfile +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/HOMEPAGE_README.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/Makefile +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/README.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/app.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/app.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/backup_homepage.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/chat.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/enhanced_charts.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/enhanced_navigation.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/associate_homepage.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/dashboard_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/my_tasks_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/performance_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/products_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/schedule_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/common/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/common/chat_integration.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/common/kpi_summary.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/common/notifications.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/homepage.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/alerts_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/analytics_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/dashboard_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/demo_alerts.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/inventory_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/manager_homepage.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/operations_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/team_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/ai_insights_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/executive_dashboard_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/geographical_analysis_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/performance_metrics_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/strategic_insights_tab.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/vp_homepage.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/metrics.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/navigation.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/oldhomepage.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/components/styles.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/config.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/demo_docs/BRAND_REP_DEMO_SUMMARY.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/demo_docs/comprehensive_demo_script.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/demo_docs/demo_scripts/brand_rep_product_education_demo.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/demo_docs/demo_scripts/store_associate_ai_assistant_demo.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/demo_docs/demo_scripts/store_manager_alert_response_demo.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/dev/README.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/dev/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/dev/components/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/dev/components/dashboard_card.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/dev/demo_alerts.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/dev/examples/sample_dashboard.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages/component_showcase.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages/dev_playground.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages/playground.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages_wip/daily_operations.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages_wip/inventory.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages_wip/my_schedule.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages_wip/my_tasks.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages_wip/orders.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages_wip/products_promotions.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages_wip/staff.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pages_wip/team_insights.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/pyproject.toml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/requirements.txt +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/static/css/style.css +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/styles/README.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/styles/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/styles/base.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/styles/components.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/styles/dashboard.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/styles/homepage.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/styles/theme.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/test_vip_notification.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/tests/test_calculations.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/utils/config.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/utils/database.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/utils/model_serving.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app/utils/store_context.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/Makefile +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/README.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/app.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin/tailadmin_components.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin/tailadmin_components_enhanced.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin/tailadmin_styles.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin_styles.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/TAILADMIN_README.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/homepage_tailadmin.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/tailadmin_demo.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/tailadmin_implementation_guide.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/test_vp_dashboard.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/vp_dashboard_enhanced.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/vp_dashboard_tailadmin.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/components_demo.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/homepage.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/implementation_guide.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/vp_dashboard_clean.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/vp_dashboard_enhanced.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pyproject.toml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/tests/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/streamlit_store_app_tailadmin/tests/test_imports.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/tests/.gitkeep +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/tests/README.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/tests/images/doritos_upc.png +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/tests/images/lays_upc.png +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/tests/manager_demo_script.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/tests/notebook_vector_search_test.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/apps/dais2025/store-app/tests/test_vector_search_integration.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/dais2025/model_config_dais.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/examples/genie.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/examples/genie_and_vector_search.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/examples/human_in_the_loop.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/examples/jira.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/examples/mcp.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/examples/minimal.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/examples/reservations.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/hardware_store/supervisor.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/hardware_store/supervisor_postgres.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/hardware_store/swarm.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/config/quick_serve_restaurant/quick-serve-restaurant.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/appointments.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/appointments_data.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/brand_rep_demo_data.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/brand_rep_demo_queries.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/brand_rep_demo_tables.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/brand_rep_demo_validation.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/customers.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/customers_data.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/dim_stores.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/dim_stores_data.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/employee_performance.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/employee_performance_data.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/employee_tasks.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/employee_tasks_data.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/inventory.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/inventory_data.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/managers.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/managers_data.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/product_data.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/products.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/dais2025/task_assignments.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/hardware_store/inventory.snappy.parquet +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/hardware_store/inventory.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/hardware_store/products.snappy.parquet +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/hardware_store/products.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/quick_serve_restaurant/fulfil_item_orders.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/quick_serve_restaurant/items_description.csv +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/quick_serve_restaurant/items_description.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/quick_serve_restaurant/items_raw.csv +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/quick_serve_restaurant/items_raw.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/quick_serve_restaurant/orders_raw.csv +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/data/quick_serve_restaurant/orders_raw.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/databricks.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/docs/genie.png +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/docs/hardware_store/README.md +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/docs/hardware_store/retail_supervisor.png +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/docs/hardware_store/retail_swarm.png +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/docs/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/docs/quick_serve_restaurant/quick-serve-restaurant.png +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/environment.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/examples/dais2025/examples.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/examples/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/examples/quick_serve_restaurant/examples.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/dais2025/extract_store_numbers.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/dais2025/find_inventory_by_sku.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/dais2025/find_inventory_by_upc.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/dais2025/find_product_by_sku.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/dais2025/find_product_by_upc.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/dais2025/find_store_by_number.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/dais2025/find_store_inventory_by_sku.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/dais2025/find_store_inventory_by_upc.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/hardware_store/find_inventory_by_sku.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/hardware_store/find_inventory_by_upc.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/hardware_store/find_product_by_sku.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/hardware_store/find_product_by_upc.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/hardware_store/find_store_inventory_by_sku.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/hardware_store/find_store_inventory_by_upc.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/quick_serve_restaurant/insert_coffee_order.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/quick_serve_restaurant/lookup_items_by_descriptions.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/quick_serve_restaurant/match_historical_item_order_by_date.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/functions/quick_serve_restaurant/match_item_by_description_and_price.sql +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/notebooks/01_ingest_and_transform.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/notebooks/02_provision_vector_search.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/notebooks/03_generate_evaluation_data.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/notebooks/04_unity_catalog_tools.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/notebooks/99_scratchpad.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/schemas/bundle_config_schema.json +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/schemas/model_config_schema.json +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/models.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/tools/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/tools/customer.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/tools/employee.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/tools/executive.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/tools/genie.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/tools/inventory.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/tools/models.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dais2025/tools/store.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/agent_as_code.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/catalog.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/chat_models.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/cli.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/config.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/guardrails.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/hooks/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/hooks/core.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/memory/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/memory/base.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/memory/core.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/memory/postgres.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/messages.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/prompts.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/providers/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/providers/base.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/providers/databricks.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/state.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/core.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/python.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/time.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/unity_catalog.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/tools/vector_search.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/types.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/dao_ai/vector_search.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/hardware_store/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/hardware_store/hooks.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/hardware_store/tools.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/quick_serve_restaurant/__init__.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/src/quick_serve_restaurant/tools.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/config/test_model_config.yaml +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/conftest.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_catalog.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_chat_history.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_config.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_databricks.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_function_parsing.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_hooks.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_inference.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_mcp.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_messages.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_models.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_state.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_types.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_utils.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/test_vector_search.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/dao_ai/weather_server_mcp.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/hardware_store/.gitkeep +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/hardware_store/test_graph.py +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/images/doritos_upc.png +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/images/lays_upc.png +0 -0
- {dao_ai-0.0.15 → dao_ai-0.0.17}/tests/quick_serve_restaurant/.gitkeep +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dao-ai
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.17
|
|
4
4
|
Summary: DAO AI: A modular, multi-agent orchestration framework for complex AI workflows. Supports agent handoff, tool integration, and dynamic configuration via YAML.
|
|
5
5
|
Project-URL: Homepage, https://github.com/natefleming/dao-ai
|
|
6
6
|
Project-URL: Documentation, https://natefleming.github.io/dao-ai
|
|
@@ -30,6 +30,7 @@ Requires-Dist: databricks-sdk[openai]>=0.55.0
|
|
|
30
30
|
Requires-Dist: duckduckgo-search>=8.0.2
|
|
31
31
|
Requires-Dist: grandalf>=0.8
|
|
32
32
|
Requires-Dist: langchain-mcp-adapters>=0.1.9
|
|
33
|
+
Requires-Dist: langchain-tavily>=0.2.11
|
|
33
34
|
Requires-Dist: langchain>=0.3.27
|
|
34
35
|
Requires-Dist: langgraph-checkpoint-postgres>=2.0.23
|
|
35
36
|
Requires-Dist: langgraph-supervisor>=0.0.29
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
# yaml-language-server: $schema=../../schemas/model_config_schema.json
|
|
2
|
+
|
|
3
|
+
variables:
|
|
4
|
+
tavily_search_key: &tavily_search_key
|
|
5
|
+
options:
|
|
6
|
+
- env: TAVILY_API_KEY
|
|
7
|
+
- scope: retail_consumer_goods
|
|
8
|
+
secret: TAVILY_API_KEY
|
|
9
|
+
|
|
10
|
+
schemas:
|
|
11
|
+
executive_assistant_schema: &executive_assistant_schema
|
|
12
|
+
catalog_name: retail_consumer_goods
|
|
13
|
+
schema_name: store_ops
|
|
14
|
+
|
|
15
|
+
resources:
|
|
16
|
+
llms:
|
|
17
|
+
|
|
18
|
+
fast_llm: &fast_llm
|
|
19
|
+
name: databricks-meta-llama-3-1-8b-instruct
|
|
20
|
+
temperature: 0.1
|
|
21
|
+
max_tokens: 8192
|
|
22
|
+
|
|
23
|
+
tool_calling_llm: &tool_calling_llm
|
|
24
|
+
name: databricks-claude-3-7-sonnet
|
|
25
|
+
temperature: 0.1
|
|
26
|
+
max_tokens: 8192
|
|
27
|
+
fallbacks:
|
|
28
|
+
- databricks-meta-llama-3-3-70b-instruct
|
|
29
|
+
|
|
30
|
+
# LLM for complex reasoning tasks
|
|
31
|
+
reasoning_llm: &reasoning_llm
|
|
32
|
+
name: databricks-claude-3-7-sonnet
|
|
33
|
+
temperature: 0.1
|
|
34
|
+
max_tokens: 8192
|
|
35
|
+
|
|
36
|
+
deep_reasoning_llm: &deep_reasoning_llm
|
|
37
|
+
name: databricks-claude-sonnet-4
|
|
38
|
+
temperature: 0.1
|
|
39
|
+
max_tokens: 8192
|
|
40
|
+
fallbacks:
|
|
41
|
+
- databricks-claude-3-7-sonnet
|
|
42
|
+
|
|
43
|
+
judge_llm: &judge_llm
|
|
44
|
+
name: databricks-claude-3-7-sonnet
|
|
45
|
+
temperature: 0.5
|
|
46
|
+
max_tokens: 8192
|
|
47
|
+
|
|
48
|
+
embedding_model: &embedding_model
|
|
49
|
+
name: databricks-gte-large-en
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
tables:
|
|
53
|
+
employee_performance:
|
|
54
|
+
schema: *executive_assistant_schema
|
|
55
|
+
name: employee_performance
|
|
56
|
+
|
|
57
|
+
products:
|
|
58
|
+
schema: *executive_assistant_schema
|
|
59
|
+
name: products
|
|
60
|
+
|
|
61
|
+
inventory:
|
|
62
|
+
schema: *executive_assistant_schema
|
|
63
|
+
name: inventory
|
|
64
|
+
|
|
65
|
+
customers:
|
|
66
|
+
schema: *executive_assistant_schema
|
|
67
|
+
name: customers
|
|
68
|
+
|
|
69
|
+
managers:
|
|
70
|
+
schema: *executive_assistant_schema
|
|
71
|
+
name: managers
|
|
72
|
+
|
|
73
|
+
employee_tasks:
|
|
74
|
+
schema: *executive_assistant_schema
|
|
75
|
+
name: employee_tasks
|
|
76
|
+
|
|
77
|
+
appointments:
|
|
78
|
+
schema: *executive_assistant_schema
|
|
79
|
+
name: appointments
|
|
80
|
+
|
|
81
|
+
evaluation:
|
|
82
|
+
schema: *executive_assistant_schema
|
|
83
|
+
name: evaluation
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
functions:
|
|
87
|
+
|
|
88
|
+
find_inventory_by_sku: &find_inventory_by_sku
|
|
89
|
+
schema: *executive_assistant_schema
|
|
90
|
+
name: find_inventory_by_sku
|
|
91
|
+
|
|
92
|
+
find_inventory_by_upc: &find_inventory_by_upc
|
|
93
|
+
schema: *executive_assistant_schema
|
|
94
|
+
name: find_inventory_by_upc
|
|
95
|
+
|
|
96
|
+
find_product_by_sku: &find_product_by_sku
|
|
97
|
+
schema: *executive_assistant_schema
|
|
98
|
+
name: find_product_by_sku
|
|
99
|
+
|
|
100
|
+
find_product_by_upc: &find_product_by_upc
|
|
101
|
+
schema: *executive_assistant_schema
|
|
102
|
+
name: find_product_by_upc
|
|
103
|
+
|
|
104
|
+
find_store_by_number: &find_store_by_number
|
|
105
|
+
schema: *executive_assistant_schema
|
|
106
|
+
name: find_store_by_number
|
|
107
|
+
|
|
108
|
+
find_store_inventory_by_sku: &find_store_inventory_by_sku
|
|
109
|
+
schema: *executive_assistant_schema
|
|
110
|
+
name: find_store_inventory_by_sku
|
|
111
|
+
|
|
112
|
+
find_store_inventory_by_upc: &find_store_inventory_by_upc
|
|
113
|
+
schema: *executive_assistant_schema
|
|
114
|
+
name: find_store_inventory_by_upc
|
|
115
|
+
|
|
116
|
+
genie_rooms:
|
|
117
|
+
executive_assistant_genie_room: &executive_assistant_genie_room
|
|
118
|
+
name: "Executive Assistant Genie Room"
|
|
119
|
+
description: "A room for Genie agents to interact"
|
|
120
|
+
space_id: 01f05dd06c421ad6b522bf7a517cf6d2
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
tools:
|
|
124
|
+
executive_assistant_genie_tool: &executive_assistant_genie_tool
|
|
125
|
+
name: executive_assistant_genie_tool
|
|
126
|
+
function:
|
|
127
|
+
type: factory
|
|
128
|
+
name: dao_ai.tools.create_genie_tool
|
|
129
|
+
args:
|
|
130
|
+
name: executive_assistant_genie_tool
|
|
131
|
+
description: Query the data warehouse for customer KPIs, business metrics, employee performance, inventory data, and other operational insights. Use this tool multiple times as needed to gather comprehensive data for executive-level analysis and recommendations.
|
|
132
|
+
genie_room: *executive_assistant_genie_room
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
tavily_search_tool: &tavily_search_tool
|
|
136
|
+
name: tavily_search_tool
|
|
137
|
+
function:
|
|
138
|
+
type: factory
|
|
139
|
+
name: langchain_tavily.TavilySearch
|
|
140
|
+
args:
|
|
141
|
+
max_results: 5
|
|
142
|
+
topic: general
|
|
143
|
+
search_depth: advanced
|
|
144
|
+
include_domains: ~
|
|
145
|
+
exclude_domains: ~
|
|
146
|
+
|
|
147
|
+
agents:
|
|
148
|
+
executive_assistant_genie: &executive_assistant_genie
|
|
149
|
+
name: executive_assistant_genie
|
|
150
|
+
description: "Executive Assistant Genie Agent"
|
|
151
|
+
model: *reasoning_llm
|
|
152
|
+
tools:
|
|
153
|
+
- *executive_assistant_genie_tool
|
|
154
|
+
- *tavily_search_tool
|
|
155
|
+
prompt: |
|
|
156
|
+
You are an executive-level data analyst and strategic advisor for a retail consumer goods company. Your primary audience is C-suite executives and senior management who need actionable insights about business performance, customer KPIs, and strategic recommendations.
|
|
157
|
+
|
|
158
|
+
## Your Core Responsibilities:
|
|
159
|
+
|
|
160
|
+
### 1. Customer KPI Analysis & Reporting
|
|
161
|
+
- Analyze customer acquisition, retention, lifetime value, and churn metrics
|
|
162
|
+
- Track customer satisfaction scores, NPS, and engagement metrics
|
|
163
|
+
- Monitor customer segment performance and behavior patterns
|
|
164
|
+
- Provide trend analysis and year-over-year comparisons
|
|
165
|
+
- Identify customer pain points and opportunities
|
|
166
|
+
|
|
167
|
+
### 2. Business Performance Insights
|
|
168
|
+
- Monitor revenue, profit margins, and growth trajectories
|
|
169
|
+
- Analyze inventory turnover, stockouts, and supply chain efficiency
|
|
170
|
+
- Track employee performance and operational KPIs
|
|
171
|
+
- Evaluate store performance across locations
|
|
172
|
+
- Assess product performance and category trends
|
|
173
|
+
|
|
174
|
+
### 3. Strategic Reasoning & Recommendations
|
|
175
|
+
- Provide context and root cause analysis for performance changes
|
|
176
|
+
- Identify correlations between different business metrics
|
|
177
|
+
- Suggest data-driven action plans and strategic initiatives
|
|
178
|
+
- Recommend resource allocation and investment priorities
|
|
179
|
+
- Highlight risks and opportunities based on data trends
|
|
180
|
+
|
|
181
|
+
## How to Operate:
|
|
182
|
+
|
|
183
|
+
### Tool Usage Strategy
|
|
184
|
+
- **Use multiple tool calls** when needed to build comprehensive answers
|
|
185
|
+
- Query different data sources to cross-validate insights
|
|
186
|
+
- Drill down into specific metrics when initial results show concerning trends
|
|
187
|
+
- Always verify assumptions with data before making recommendations
|
|
188
|
+
|
|
189
|
+
### Communication Style
|
|
190
|
+
- **Executive Summary First**: Lead with key findings and recommendations
|
|
191
|
+
- **Data-Driven**: Support all claims with specific metrics and evidence
|
|
192
|
+
- **Action-Oriented**: Provide clear, implementable next steps
|
|
193
|
+
- **Risk-Aware**: Highlight potential challenges and mitigation strategies
|
|
194
|
+
- **Strategic Context**: Connect findings to broader business objectives
|
|
195
|
+
|
|
196
|
+
### Response Structure
|
|
197
|
+
1. **Executive Summary** (2-3 bullet points of key insights)
|
|
198
|
+
2. **Key Metrics & Analysis** (specific data points with context)
|
|
199
|
+
3. **Root Cause Analysis** (why trends are occurring)
|
|
200
|
+
4. **Strategic Recommendations** (actionable next steps)
|
|
201
|
+
5. **Risk Assessment** (potential challenges and opportunities)
|
|
202
|
+
|
|
203
|
+
## Guidelines:
|
|
204
|
+
|
|
205
|
+
- Always query the data warehouse using your genie tool to get current, accurate information
|
|
206
|
+
- Make multiple queries if needed to build a complete picture
|
|
207
|
+
- Translate technical metrics into business impact language
|
|
208
|
+
- Provide both short-term tactical and long-term strategic recommendations
|
|
209
|
+
- When data shows concerning trends, immediately investigate potential causes
|
|
210
|
+
- Use industry benchmarks and best practices in your recommendations when relevant
|
|
211
|
+
- Be proactive in identifying trends before they become problems
|
|
212
|
+
|
|
213
|
+
Remember: You are trusted advisor to senior leadership. Your insights directly influence major business decisions, resource allocation, and strategic direction. Ensure your analysis is thorough, your reasoning is sound, and your recommendations are actionable.
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
app:
|
|
217
|
+
name: executive_assistant_agent
|
|
218
|
+
description: "An executive assistant application"
|
|
219
|
+
log_level: DEBUG
|
|
220
|
+
registered_model:
|
|
221
|
+
schema: *executive_assistant_schema
|
|
222
|
+
name: executive_assistant_agent
|
|
223
|
+
endpoint_name: executive_assistant_agent
|
|
224
|
+
environment_vars:
|
|
225
|
+
TAVILY_API_KEY: "{{secrets/retail_consumer_goods/TAVILY_API_KEY}}"
|
|
226
|
+
tags:
|
|
227
|
+
business: rcg
|
|
228
|
+
streaming: true
|
|
229
|
+
permissions:
|
|
230
|
+
- principals: [users]
|
|
231
|
+
entitlements:
|
|
232
|
+
- CAN_QUERY
|
|
233
|
+
agents:
|
|
234
|
+
- *executive_assistant_genie
|
|
235
|
+
orchestration:
|
|
236
|
+
swarm:
|
|
237
|
+
model: *fast_llm
|
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
# yaml-language-server: $schema=../../schemas/model_config_schema.json
|
|
2
|
+
|
|
3
|
+
variables:
|
|
4
|
+
tavily_search_key: &tavily_search_key
|
|
5
|
+
options:
|
|
6
|
+
- env: TAVILY_API_KEY
|
|
7
|
+
- scope: retail_consumer_goods
|
|
8
|
+
secret: TAVILY_API_KEY
|
|
9
|
+
|
|
10
|
+
schemas:
|
|
11
|
+
executive_assistant_schema: &executive_assistant_schema
|
|
12
|
+
catalog_name: retail_consumer_goods
|
|
13
|
+
schema_name: store_ops
|
|
14
|
+
|
|
15
|
+
resources:
|
|
16
|
+
llms:
|
|
17
|
+
|
|
18
|
+
fast_llm: &fast_llm
|
|
19
|
+
name: databricks-meta-llama-3-1-8b-instruct
|
|
20
|
+
temperature: 0.1
|
|
21
|
+
max_tokens: 8192
|
|
22
|
+
|
|
23
|
+
tool_calling_llm: &tool_calling_llm
|
|
24
|
+
name: databricks-claude-3-7-sonnet
|
|
25
|
+
temperature: 0.1
|
|
26
|
+
max_tokens: 8192
|
|
27
|
+
fallbacks:
|
|
28
|
+
- databricks-meta-llama-3-3-70b-instruct
|
|
29
|
+
|
|
30
|
+
# LLM for complex reasoning tasks
|
|
31
|
+
reasoning_llm: &reasoning_llm
|
|
32
|
+
name: databricks-claude-3-7-sonnet
|
|
33
|
+
temperature: 0.1
|
|
34
|
+
max_tokens: 8192
|
|
35
|
+
|
|
36
|
+
deep_reasoning_llm: &deep_reasoning_llm
|
|
37
|
+
name: databricks-claude-sonnet-4
|
|
38
|
+
temperature: 0.1
|
|
39
|
+
max_tokens: 8192
|
|
40
|
+
fallbacks:
|
|
41
|
+
- databricks-claude-3-7-sonnet
|
|
42
|
+
|
|
43
|
+
judge_llm: &judge_llm
|
|
44
|
+
name: databricks-claude-3-7-sonnet
|
|
45
|
+
temperature: 0.5
|
|
46
|
+
max_tokens: 8192
|
|
47
|
+
|
|
48
|
+
embedding_model: &embedding_model
|
|
49
|
+
name: databricks-gte-large-en
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
tables:
|
|
53
|
+
employee_performance:
|
|
54
|
+
schema: *executive_assistant_schema
|
|
55
|
+
name: employee_performance
|
|
56
|
+
|
|
57
|
+
products:
|
|
58
|
+
schema: *executive_assistant_schema
|
|
59
|
+
name: products
|
|
60
|
+
|
|
61
|
+
inventory:
|
|
62
|
+
schema: *executive_assistant_schema
|
|
63
|
+
name: inventory
|
|
64
|
+
|
|
65
|
+
customers:
|
|
66
|
+
schema: *executive_assistant_schema
|
|
67
|
+
name: customers
|
|
68
|
+
|
|
69
|
+
managers:
|
|
70
|
+
schema: *executive_assistant_schema
|
|
71
|
+
name: managers
|
|
72
|
+
|
|
73
|
+
employee_tasks:
|
|
74
|
+
schema: *executive_assistant_schema
|
|
75
|
+
name: employee_tasks
|
|
76
|
+
|
|
77
|
+
appointments:
|
|
78
|
+
schema: *executive_assistant_schema
|
|
79
|
+
name: appointments
|
|
80
|
+
|
|
81
|
+
evaluation:
|
|
82
|
+
schema: *executive_assistant_schema
|
|
83
|
+
name: evaluation
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
functions:
|
|
87
|
+
|
|
88
|
+
find_inventory_by_sku: &find_inventory_by_sku
|
|
89
|
+
schema: *executive_assistant_schema
|
|
90
|
+
name: find_inventory_by_sku
|
|
91
|
+
|
|
92
|
+
find_inventory_by_upc: &find_inventory_by_upc
|
|
93
|
+
schema: *executive_assistant_schema
|
|
94
|
+
name: find_inventory_by_upc
|
|
95
|
+
|
|
96
|
+
find_product_by_sku: &find_product_by_sku
|
|
97
|
+
schema: *executive_assistant_schema
|
|
98
|
+
name: find_product_by_sku
|
|
99
|
+
|
|
100
|
+
find_product_by_upc: &find_product_by_upc
|
|
101
|
+
schema: *executive_assistant_schema
|
|
102
|
+
name: find_product_by_upc
|
|
103
|
+
|
|
104
|
+
find_store_by_number: &find_store_by_number
|
|
105
|
+
schema: *executive_assistant_schema
|
|
106
|
+
name: find_store_by_number
|
|
107
|
+
|
|
108
|
+
find_store_inventory_by_sku: &find_store_inventory_by_sku
|
|
109
|
+
schema: *executive_assistant_schema
|
|
110
|
+
name: find_store_inventory_by_sku
|
|
111
|
+
|
|
112
|
+
find_store_inventory_by_upc: &find_store_inventory_by_upc
|
|
113
|
+
schema: *executive_assistant_schema
|
|
114
|
+
name: find_store_inventory_by_upc
|
|
115
|
+
|
|
116
|
+
genie_rooms:
|
|
117
|
+
executive_assistant_genie_room: &executive_assistant_genie_room
|
|
118
|
+
name: "Executive Assistant Genie Room"
|
|
119
|
+
description: "A room for Genie agents to interact"
|
|
120
|
+
space_id: 01f05dd06c421ad6b522bf7a517cf6d2
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
tools:
|
|
124
|
+
executive_assistant_genie_tool: &executive_assistant_genie_tool
|
|
125
|
+
name: executive_assistant_genie_tool
|
|
126
|
+
function:
|
|
127
|
+
type: factory
|
|
128
|
+
name: dao_ai.tools.create_genie_tool
|
|
129
|
+
args:
|
|
130
|
+
name: executive_assistant_genie_tool
|
|
131
|
+
description: Query the data warehouse for customer KPIs, business metrics, employee performance, inventory data, and other operational insights. Use this tool multiple times as needed to gather comprehensive data for executive-level analysis and recommendations.
|
|
132
|
+
genie_room: *executive_assistant_genie_room
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
tavily_search_tool: &tavily_search_tool
|
|
136
|
+
name: tavily_search_tool
|
|
137
|
+
function:
|
|
138
|
+
type: factory
|
|
139
|
+
name: langchain_tavily.TavilySearch
|
|
140
|
+
args:
|
|
141
|
+
max_results: 5
|
|
142
|
+
topic: general
|
|
143
|
+
search_depth: advanced
|
|
144
|
+
include_domains: ~
|
|
145
|
+
exclude_domains: ~
|
|
146
|
+
|
|
147
|
+
agents:
|
|
148
|
+
executive_assistant_genie: &executive_assistant_genie
|
|
149
|
+
name: executive_assistant_genie
|
|
150
|
+
description: "Executive Assistant Genie Agent"
|
|
151
|
+
model: *reasoning_llm
|
|
152
|
+
tools:
|
|
153
|
+
- *executive_assistant_genie_tool
|
|
154
|
+
- *tavily_search_tool
|
|
155
|
+
prompt: |
|
|
156
|
+
You are an executive-level data analyst and strategic advisor for a retail consumer goods company. Your primary audience is C-suite executives and senior management who need actionable insights about business performance, customer KPIs, and strategic recommendations.
|
|
157
|
+
|
|
158
|
+
## Your Core Responsibilities:
|
|
159
|
+
|
|
160
|
+
### 1. Customer KPI Analysis & Reporting
|
|
161
|
+
- Analyze customer acquisition, retention, lifetime value, and churn metrics
|
|
162
|
+
- Track customer satisfaction scores, NPS, and engagement metrics
|
|
163
|
+
- Monitor customer segment performance and behavior patterns
|
|
164
|
+
- Provide trend analysis and year-over-year comparisons
|
|
165
|
+
- Identify customer pain points and opportunities
|
|
166
|
+
|
|
167
|
+
### 2. Business Performance Insights
|
|
168
|
+
- Monitor revenue, profit margins, and growth trajectories
|
|
169
|
+
- Analyze inventory turnover, stockouts, and supply chain efficiency
|
|
170
|
+
- Track employee performance and operational KPIs
|
|
171
|
+
- Evaluate store performance across locations
|
|
172
|
+
- Assess product performance and category trends
|
|
173
|
+
|
|
174
|
+
### 3. Strategic Reasoning & Recommendations
|
|
175
|
+
- Provide context and root cause analysis for performance changes
|
|
176
|
+
- Identify correlations between different business metrics
|
|
177
|
+
- Suggest data-driven action plans and strategic initiatives
|
|
178
|
+
- Recommend resource allocation and investment priorities
|
|
179
|
+
- Highlight risks and opportunities based on data trends
|
|
180
|
+
|
|
181
|
+
## How to Operate:
|
|
182
|
+
|
|
183
|
+
### Tool Usage Strategy
|
|
184
|
+
- **Use multiple tool calls** when needed to build comprehensive answers
|
|
185
|
+
- Query different data sources to cross-validate insights
|
|
186
|
+
- Drill down into specific metrics when initial results show concerning trends
|
|
187
|
+
- Always verify assumptions with data before making recommendations
|
|
188
|
+
|
|
189
|
+
### Communication Style
|
|
190
|
+
- **Executive Summary First**: Lead with key findings and recommendations
|
|
191
|
+
- **Data-Driven**: Support all claims with specific metrics and evidence
|
|
192
|
+
- **Action-Oriented**: Provide clear, implementable next steps
|
|
193
|
+
- **Risk-Aware**: Highlight potential challenges and mitigation strategies
|
|
194
|
+
- **Strategic Context**: Connect findings to broader business objectives
|
|
195
|
+
|
|
196
|
+
### Response Structure
|
|
197
|
+
1. **Executive Summary** (2-3 bullet points of key insights)
|
|
198
|
+
2. **Key Metrics & Analysis** (specific data points with context)
|
|
199
|
+
3. **Root Cause Analysis** (why trends are occurring)
|
|
200
|
+
4. **Strategic Recommendations** (actionable next steps)
|
|
201
|
+
5. **Risk Assessment** (potential challenges and opportunities)
|
|
202
|
+
|
|
203
|
+
## Guidelines:
|
|
204
|
+
|
|
205
|
+
- Always query the data warehouse using your genie tool to get current, accurate information
|
|
206
|
+
- Make multiple queries if needed to build a complete picture
|
|
207
|
+
- Translate technical metrics into business impact language
|
|
208
|
+
- Provide both short-term tactical and long-term strategic recommendations
|
|
209
|
+
- When data shows concerning trends, immediately investigate potential causes
|
|
210
|
+
- Use industry benchmarks and best practices in your recommendations when relevant
|
|
211
|
+
- Be proactive in identifying trends before they become problems
|
|
212
|
+
|
|
213
|
+
Remember: You are trusted advisor to senior leadership. Your insights directly influence major business decisions, resource allocation, and strategic direction. Ensure your analysis is thorough, your reasoning is sound, and your recommendations are actionable.
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
app:
|
|
217
|
+
name: executive_assistant_agent
|
|
218
|
+
description: "An executive assistant application"
|
|
219
|
+
log_level: DEBUG
|
|
220
|
+
registered_model:
|
|
221
|
+
schema: *executive_assistant_schema
|
|
222
|
+
name: executive_assistant_agent
|
|
223
|
+
endpoint_name: executive_assistant_agent
|
|
224
|
+
environment_vars:
|
|
225
|
+
TAVILY_API_KEY: "{{secrets/retail_consumer_goods/TAVILY_API_KEY}}"
|
|
226
|
+
tags:
|
|
227
|
+
business: rcg
|
|
228
|
+
streaming: true
|
|
229
|
+
permissions:
|
|
230
|
+
- principals: [users]
|
|
231
|
+
entitlements:
|
|
232
|
+
- CAN_QUERY
|
|
233
|
+
agents:
|
|
234
|
+
- *executive_assistant_genie
|
|
235
|
+
orchestration:
|
|
236
|
+
swarm:
|
|
237
|
+
model: *fast_llm
|
|
238
|
+
|
|
239
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# DAIS Examples for Retail AI Agent System
|
|
2
|
+
# Extracted from retail_ai.orig/notebooks/agent_config.yaml
|
|
3
|
+
# These examples demonstrate various agent interactions and use cases
|
|
4
|
+
|
|
5
|
+
examples:
|
|
6
|
+
comprehensive_executive_research:
|
|
7
|
+
messages:
|
|
8
|
+
- role: user
|
|
9
|
+
content: |
|
|
10
|
+
I need a comprehensive executive research report analyzing our Q3 2025 performance and strategic positioning. Please conduct a deep dive analysis covering:
|
|
11
|
+
|
|
12
|
+
**Core Analysis Areas:**
|
|
13
|
+
1. **Customer KPI Performance**: Analyze customer acquisition cost (CAC), lifetime value (LTV), churn rates, retention metrics, Net Promoter Score (NPS), and customer satisfaction trends over the past 12 months
|
|
14
|
+
2. **Financial Performance**: Examine revenue growth, margin trends, profitability metrics, cash flow patterns, and ROI on key initiatives
|
|
15
|
+
3. **Operational Efficiency**: Review inventory turnover, productivity ratios, supply chain performance, and operational cost trends
|
|
16
|
+
4. **Market Position**: Assess our competitive standing, market share trends, industry benchmarks, and external market dynamics affecting our business
|
|
17
|
+
|
|
18
|
+
**Strategic Questions to Address:**
|
|
19
|
+
- Where are we underperforming relative to industry benchmarks and why?
|
|
20
|
+
- What are the top 3 strategic opportunities for growth in the next 6-12 months?
|
|
21
|
+
- What operational improvements could deliver the highest ROI?
|
|
22
|
+
- How do current market trends impact our strategic priorities?
|
|
23
|
+
- What are the financial implications of recommended strategic initiatives?
|
|
24
|
+
|
|
25
|
+
**Deliverable Requirements:**
|
|
26
|
+
- Executive summary with 3-4 key strategic insights
|
|
27
|
+
- Integrated analysis across all business dimensions
|
|
28
|
+
- Prioritized strategic recommendations with clear rationale
|
|
29
|
+
- Implementation roadmap with timelines and resource requirements
|
|
30
|
+
- Risk assessment and mitigation strategies
|
|
31
|
+
- Success metrics for tracking progress
|
|
32
|
+
|
|
33
|
+
Please ensure the analysis is comprehensive, data-driven, and provides actionable insights suitable for C-suite decision-making. I expect this to involve coordination across your specialist teams to deliver a cohesive strategic narrative.
|
|
34
|
+
custom_inputs:
|
|
35
|
+
configurable:
|
|
36
|
+
thread_id: "1"
|
|
37
|
+
user_id: "ali_ghodsi"
|
|
38
|
+
store_num: 101
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# DAIS Examples for Retail AI Agent System
|
|
2
|
+
# Extracted from retail_ai.orig/notebooks/agent_config.yaml
|
|
3
|
+
# These examples demonstrate various agent interactions and use cases
|
|
4
|
+
|
|
5
|
+
examples:
|
|
6
|
+
average_sales_percentage:
|
|
7
|
+
messages:
|
|
8
|
+
- role: user
|
|
9
|
+
content: "Hey Assistant, What is the average sales achievement percentage for employees?"
|
|
10
|
+
custom_inputs:
|
|
11
|
+
configurable:
|
|
12
|
+
thread_id: "1"
|
|
13
|
+
user_id: "ali_ghodsi"
|
|
14
|
+
store_num: 101
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
custom_inputs:
|
|
7
7
|
configurable:
|
|
8
8
|
thread_id: "1"
|
|
9
|
-
user_id:
|
|
9
|
+
user_id: john_smith
|
|
10
10
|
store_num: 87887
|
|
11
11
|
|
|
12
12
|
inventory_example:
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
custom_inputs:
|
|
17
17
|
configurable:
|
|
18
18
|
thread_id: "1"
|
|
19
|
-
user_id:
|
|
19
|
+
user_id: john_smith
|
|
20
20
|
store_num: 87887
|
|
21
21
|
|
|
22
22
|
comparison_example:
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
custom_inputs:
|
|
27
27
|
configurable:
|
|
28
28
|
thread_id: "1"
|
|
29
|
-
user_id:
|
|
29
|
+
user_id: john_smith
|
|
30
30
|
store_num: 87887
|
|
31
31
|
|
|
32
32
|
comparison_image_example:
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
custom_inputs:
|
|
40
40
|
configurable:
|
|
41
41
|
thread_id: "1"
|
|
42
|
-
user_id:
|
|
42
|
+
user_id: john_smith
|
|
43
43
|
store_num: 87887
|
|
44
44
|
|
|
45
45
|
general_example:
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
custom_inputs:
|
|
50
50
|
configurable:
|
|
51
51
|
thread_id: "1"
|
|
52
|
-
user_id:
|
|
52
|
+
user_id: john_smith
|
|
53
53
|
store_num: 87887
|
|
54
54
|
|
|
55
55
|
diy_example:
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
custom_inputs:
|
|
60
60
|
configurable:
|
|
61
61
|
thread_id: "1"
|
|
62
|
-
user_id:
|
|
62
|
+
user_id: john_smith
|
|
63
63
|
store_num: 123
|
|
64
64
|
|
|
65
65
|
orders_example:
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
custom_inputs:
|
|
70
70
|
configurable:
|
|
71
71
|
thread_id: "1"
|
|
72
|
-
user_id:
|
|
72
|
+
user_id: john_smith
|
|
73
73
|
store_num: 87887
|
|
74
74
|
|
|
75
75
|
product_example:
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
custom_inputs:
|
|
80
80
|
configurable:
|
|
81
81
|
thread_id: "1"
|
|
82
|
-
user_id:
|
|
82
|
+
user_id: john_smith
|
|
83
83
|
store_num: 87887
|
|
84
84
|
|
|
85
85
|
product_image_example:
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
custom_inputs:
|
|
92
92
|
configurable:
|
|
93
93
|
thread_id: "1"
|
|
94
|
-
user_id:
|
|
94
|
+
user_id: john_smith
|
|
95
95
|
store_num: 87887
|
|
@@ -49,6 +49,12 @@ print("\n".join(pip_requirements))
|
|
|
49
49
|
|
|
50
50
|
# COMMAND ----------
|
|
51
51
|
|
|
52
|
+
from dotenv import find_dotenv, load_dotenv
|
|
53
|
+
|
|
54
|
+
_ = load_dotenv(find_dotenv())
|
|
55
|
+
|
|
56
|
+
# COMMAND ----------
|
|
57
|
+
|
|
52
58
|
import nest_asyncio
|
|
53
59
|
nest_asyncio.apply()
|
|
54
60
|
|
|
@@ -66,7 +72,6 @@ config.display_graph()
|
|
|
66
72
|
|
|
67
73
|
config.create_agent()
|
|
68
74
|
|
|
69
|
-
|
|
70
75
|
# COMMAND ----------
|
|
71
76
|
|
|
72
77
|
config.deploy_agent()
|
|
@@ -38,10 +38,7 @@ pprint(config_path)
|
|
|
38
38
|
|
|
39
39
|
import sys
|
|
40
40
|
import mlflow
|
|
41
|
-
from langgraph.graph.state import CompiledStateGraph
|
|
42
41
|
from mlflow.pyfunc import ChatModel
|
|
43
|
-
from dao_ai.graph import create_dao_ai_graph
|
|
44
|
-
from dao_ai.models import create_agent
|
|
45
42
|
from dao_ai.config import AppConfig
|
|
46
43
|
|
|
47
44
|
from loguru import logger
|