dao-ai 0.0.5__tar.gz → 0.0.7__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.7/.python-version +1 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/PKG-INFO +11 -12
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/dais2025/model_config_dais.yaml +17 -6
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/hardware_store/supervisor.yaml +1 -1
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/hardware_store/supervisor_postgres.yaml +24 -15
- {dao_ai-0.0.5 → dao_ai-0.0.7}/databricks.yaml +11 -26
- dao_ai-0.0.7/environment.yaml +52 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/notebooks/02_provision_vector_search.py +2 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/notebooks/03_generate_evaluation_data.py +2 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/notebooks/04_unity_catalog_tools.py +2 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/notebooks/05_agent_as_code_driver.py +2 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/notebooks/06_run_evaluation.py +10 -2
- {dao_ai-0.0.5 → dao_ai-0.0.7}/notebooks/08_run_examples.py +2 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/pyproject.toml +11 -12
- {dao_ai-0.0.5 → dao_ai-0.0.7}/requirements.txt +21 -33
- {dao_ai-0.0.5 → dao_ai-0.0.7}/schemas/model_config_schema.json +32 -10
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/cli.py +3 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/config.py +21 -3
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/graph.py +31 -31
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/hooks/__init__.py +2 -0
- dao_ai-0.0.7/src/dao_ai/hooks/core.py +223 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/memory/postgres.py +6 -6
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/messages.py +6 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/models.py +66 -32
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/nodes.py +12 -10
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/providers/databricks.py +83 -3
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/state.py +7 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/tools/__init__.py +3 -4
- dao_ai-0.0.7/src/dao_ai/tools/core.py +59 -0
- dao_ai-0.0.7/src/dao_ai/tools/human_in_the_loop.py +96 -0
- dao_ai-0.0.7/src/dao_ai/tools/mcp.py +118 -0
- dao_ai-0.0.7/src/dao_ai/tools/python.py +60 -0
- dao_ai-0.0.7/src/dao_ai/tools/unity_catalog.py +50 -0
- dao_ai-0.0.7/src/hardware_store/hooks.py +68 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_chat_history.py +33 -12
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_config.py +35 -46
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_mcp.py +1 -1
- dao_ai-0.0.7/tests/dao_ai/test_summarization_inference.py +364 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_tools.py +8 -8
- dao_ai-0.0.5/.python-version +0 -1
- dao_ai-0.0.5/src/dao_ai/hooks/core.py +0 -157
- dao_ai-0.0.5/src/dao_ai/tools/core.py +0 -352
- dao_ai-0.0.5/src/hardware_store/hooks.py +0 -61
- {dao_ai-0.0.5 → dao_ai-0.0.7}/.gitignore +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/CHANGELOG.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/CONTRIBUTING.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/LICENSE +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/Makefile +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/README.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/Makefile +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/REFACTORING_SUMMARY.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/base-environment-serverless.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/demo_docs/BRAND_REP_DEMO_SUMMARY.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/demo_docs/demo_scripts/brand_rep_product_education_demo.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/demo_docs/demo_scripts/store_associate_ai_assistant_demo.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/demo_docs/demo_scripts/store_manager_alert_response_demo.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/development_workflows.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/.gitkeep +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/Makefile +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agent_implementation.mmd +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agent_tools_architecture.mmd +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agents-and-tools/agent-troubleshooting.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agents-and-tools/agents/agent-best-practices.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agents-and-tools/agents/agent-development-patterns.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agents-and-tools/agents/agent-performance.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agents-and-tools/agents/agent-quickstart.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agents-and-tools/ai-agents.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agents-and-tools/overview.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agents-and-tools/references/agent-reference.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/agents-and-tools/references/tools-reference.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/applications/streamlit-app.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/architecture/overview.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/architecture.mmd +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/architecture.png +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/customer_preparation_guide.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/databricks_integration.mmd +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/deployment/production.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/development/contributing.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/employee_tools_guide.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/getting-started/installation.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/getting-started/mkdocs-quickstart.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/getting-started/quick-start.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/index.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/mkdocs.yml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/scenario_1_architecture.mmd +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/scenario_1_flow.mmd +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/setup-docs.sh +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/task_assignment_workflow_guide.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/docs/tools/overview.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/examples/customer_preparation_workflow.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/examples/task_assignment_workflow.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/load-env.sh +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/CSS_REFACTORING_SUMMARY.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/DEMO_CONTROLS_RESTORED.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/DEMO_IMPLEMENTATION_SUMMARY.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/DEMO_QUICK_START.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/Dockerfile +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/HOMEPAGE_README.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/Makefile +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/README.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/app.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/app.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/backup_homepage.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/chat.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/enhanced_charts.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/enhanced_navigation.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/associate_homepage.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/dashboard_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/my_tasks_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/performance_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/products_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/associate/schedule_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/common/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/common/chat_integration.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/common/kpi_summary.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/common/notifications.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/homepage.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/alerts_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/analytics_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/dashboard_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/demo_alerts.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/inventory_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/manager_homepage.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/operations_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/store_manager/team_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/ai_insights_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/executive_dashboard_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/geographical_analysis_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/performance_metrics_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/strategic_insights_tab.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/homepage/vp_retail_operations/vp_homepage.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/metrics.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/navigation.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/oldhomepage.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/components/styles.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/config.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/demo_docs/BRAND_REP_DEMO_SUMMARY.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/demo_docs/comprehensive_demo_script.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/demo_docs/demo_scripts/brand_rep_product_education_demo.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/demo_docs/demo_scripts/store_associate_ai_assistant_demo.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/demo_docs/demo_scripts/store_manager_alert_response_demo.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/dev/README.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/dev/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/dev/components/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/dev/components/dashboard_card.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/dev/demo_alerts.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/dev/examples/sample_dashboard.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages/component_showcase.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages/dev_playground.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages/playground.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages_wip/daily_operations.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages_wip/inventory.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages_wip/my_schedule.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages_wip/my_tasks.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages_wip/orders.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages_wip/products_promotions.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages_wip/staff.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pages_wip/team_insights.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/pyproject.toml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/requirements.txt +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/static/css/style.css +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/styles/README.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/styles/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/styles/base.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/styles/components.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/styles/dashboard.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/styles/homepage.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/styles/theme.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/test_vip_notification.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/tests/test_calculations.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/utils/config.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/utils/database.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/utils/model_serving.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app/utils/store_context.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/Makefile +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/README.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/app.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin/tailadmin_components.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin/tailadmin_components_enhanced.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin/tailadmin_styles.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/components/tailadmin/tailadmin_styles.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/TAILADMIN_README.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/homepage_tailadmin.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/tailadmin_demo.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/tailadmin_implementation_guide.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/test_vp_dashboard.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/vp_dashboard_enhanced.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/old/vp_dashboard_tailadmin.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/components_demo.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/homepage.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/implementation_guide.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/vp_dashboard_clean.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pages/vp_dashboard_enhanced.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/pyproject.toml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/tests/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/streamlit_store_app_tailadmin/tests/test_imports.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/tests/.gitkeep +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/tests/README.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/tests/images/doritos_upc.png +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/tests/images/lays_upc.png +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/tests/manager_demo_script.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/tests/notebook_vector_search_test.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/apps/dais2025/store-app/tests/test_vector_search_integration.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/examples/genie.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/examples/genie_and_vector_search.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/examples/human_in_the_loop.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/examples/jira.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/examples/mcp.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/examples/minimal.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/examples/reservations.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/hardware_store/swarm.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/config/quick_serve_restaurant/quick-serve-restaurant.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/appointments.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/appointments_data.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/brand_rep_demo_data.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/brand_rep_demo_queries.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/brand_rep_demo_tables.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/brand_rep_demo_validation.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/customers.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/customers_data.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/dim_stores.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/dim_stores_data.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/employee_performance.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/employee_performance_data.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/employee_tasks.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/employee_tasks_data.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/inventory.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/inventory_data.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/managers.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/managers_data.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/product_data.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/products.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/dais2025/task_assignments.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/hardware_store/inventory.snappy.parquet +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/hardware_store/inventory.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/hardware_store/products.snappy.parquet +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/hardware_store/products.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/quick_serve_restaurant/fulfil_item_orders.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/quick_serve_restaurant/items_description.csv +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/quick_serve_restaurant/items_description.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/quick_serve_restaurant/items_raw.csv +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/quick_serve_restaurant/items_raw.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/quick_serve_restaurant/orders_raw.csv +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/data/quick_serve_restaurant/orders_raw.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/docs/genie.png +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/docs/hardware_store/README.md +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/docs/hardware_store/retail_supervisor.png +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/docs/hardware_store/retail_swarm.png +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/docs/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/docs/quick_serve_restaurant/quick-serve-restaurant.png +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/examples/dais2025/examples.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/examples/hardware_store/examples.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/examples/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/examples/quick_serve_restaurant/examples.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/dais2025/extract_store_numbers.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/dais2025/find_inventory_by_sku.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/dais2025/find_inventory_by_upc.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/dais2025/find_product_by_sku.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/dais2025/find_product_by_upc.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/dais2025/find_store_by_number.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/dais2025/find_store_inventory_by_sku.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/dais2025/find_store_inventory_by_upc.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/hardware_store/find_inventory_by_sku.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/hardware_store/find_inventory_by_upc.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/hardware_store/find_product_by_sku.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/hardware_store/find_product_by_upc.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/hardware_store/find_store_inventory_by_sku.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/hardware_store/find_store_inventory_by_upc.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/quick_serve_restaurant/insert_coffee_order.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/quick_serve_restaurant/lookup_items_by_descriptions.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/quick_serve_restaurant/match_historical_item_order_by_date.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/functions/quick_serve_restaurant/match_item_by_description_and_price.sql +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/notebooks/01_ingest_and_transform.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/notebooks/09_evaluate_inferences.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/notebooks/99_scratchpad.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/schemas/bundle_config_schema.json +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/models.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/tools/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/tools/customer.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/tools/employee.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/tools/executive.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/tools/genie.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/tools/inventory.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/tools/models.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dais2025/tools/store.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/agent_as_code.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/catalog.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/chat_models.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/guardrails.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/memory/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/memory/base.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/memory/core.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/prompts.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/providers/__init__.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/providers/base.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/tools/agent.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/tools/genie.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/tools/time.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/tools/vector_search.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/types.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/utils.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/dao_ai/vector_search.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/hardware_store/tools.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/quick_serve_restaurant/.gitkeep +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/src/quick_serve_restaurant/tools.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/config/test_model_config.yaml +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/conftest.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_catalog.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_databricks.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_function_parsing.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_hooks.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_inference.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_messages.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_models.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_state.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_types.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_utils.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/test_vector_search.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/dao_ai/weather_server_mcp.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/hardware_store/.gitkeep +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/hardware_store/test_graph.py +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/images/doritos_upc.png +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/images/lays_upc.png +0 -0
- {dao_ai-0.0.5 → dao_ai-0.0.7}/tests/quick_serve_restaurant/.gitkeep +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.12
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dao-ai
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
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
|
|
@@ -23,28 +23,27 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
23
23
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
24
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
25
|
Classifier: Topic :: System :: Distributed Computing
|
|
26
|
-
Requires-Python: >=3.
|
|
27
|
-
Requires-Dist: databricks-agents>=
|
|
26
|
+
Requires-Python: >=3.12
|
|
27
|
+
Requires-Dist: databricks-agents>=1.2.0
|
|
28
28
|
Requires-Dist: databricks-langchain>=0.4.2
|
|
29
29
|
Requires-Dist: databricks-sdk[openai]>=0.55.0
|
|
30
30
|
Requires-Dist: databricks-vectorsearch>=0.56
|
|
31
31
|
Requires-Dist: duckduckgo-search>=8.0.2
|
|
32
32
|
Requires-Dist: grandalf>=0.8
|
|
33
|
-
Requires-Dist: langchain-mcp-adapters>=0.1.
|
|
34
|
-
Requires-Dist: langchain>=0.3.
|
|
35
|
-
Requires-Dist: langgraph-checkpoint-postgres>=2.0.
|
|
36
|
-
Requires-Dist: langgraph-
|
|
37
|
-
Requires-Dist: langgraph-
|
|
38
|
-
Requires-Dist: langgraph
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist: langmem>=0.0.27
|
|
33
|
+
Requires-Dist: langchain-mcp-adapters>=0.1.9
|
|
34
|
+
Requires-Dist: langchain>=0.3.27
|
|
35
|
+
Requires-Dist: langgraph-checkpoint-postgres>=2.0.23
|
|
36
|
+
Requires-Dist: langgraph-supervisor>=0.0.29
|
|
37
|
+
Requires-Dist: langgraph-swarm>=0.0.14
|
|
38
|
+
Requires-Dist: langgraph>=0.6.5
|
|
39
|
+
Requires-Dist: langmem>=0.0.29
|
|
41
40
|
Requires-Dist: loguru>=0.7.3
|
|
42
41
|
Requires-Dist: mcp>=1.9.1
|
|
43
42
|
Requires-Dist: mlflow>=3.1.1
|
|
44
43
|
Requires-Dist: nest-asyncio>=1.6.0
|
|
45
44
|
Requires-Dist: openevals>=0.0.19
|
|
46
45
|
Requires-Dist: openpyxl>=3.1.5
|
|
47
|
-
Requires-Dist: psycopg[binary,pool]>=3.2.
|
|
46
|
+
Requires-Dist: psycopg[binary,pool]>=3.2.9
|
|
48
47
|
Requires-Dist: pydantic>=2.11.3
|
|
49
48
|
Requires-Dist: python-dotenv>=1.1.0
|
|
50
49
|
Requires-Dist: pyyaml>=6.0.2
|
|
@@ -61,7 +61,7 @@ resources:
|
|
|
61
61
|
store_vector_store: &store_vector_store
|
|
62
62
|
embedding_model: *embedding_model
|
|
63
63
|
endpoint:
|
|
64
|
-
name:
|
|
64
|
+
name: dbdemos_vs_endpoint
|
|
65
65
|
type: STANDARD
|
|
66
66
|
index:
|
|
67
67
|
schema: *dais_schema
|
|
@@ -161,6 +161,7 @@ resources:
|
|
|
161
161
|
schema: *dais_schema
|
|
162
162
|
name: dais_rct
|
|
163
163
|
|
|
164
|
+
|
|
164
165
|
functions:
|
|
165
166
|
find_inventory_by_sku: &find_inventory_by_sku
|
|
166
167
|
schema: *dais_schema
|
|
@@ -413,14 +414,20 @@ tools:
|
|
|
413
414
|
args:
|
|
414
415
|
llm_model: *tool_calling_llm
|
|
415
416
|
|
|
417
|
+
# dais_find_store_by_number_tool: &dais_find_store_by_number_tool
|
|
418
|
+
# name: dais_find_store_by_number
|
|
419
|
+
# function:
|
|
420
|
+
# type: factory
|
|
421
|
+
# name: dais2025.tools.store.create_find_store_by_number_tool
|
|
422
|
+
# args:
|
|
423
|
+
# schema: *dais_schema
|
|
424
|
+
# warehouse: *dais_warehouse
|
|
425
|
+
|
|
416
426
|
dais_find_store_by_number_tool: &dais_find_store_by_number_tool
|
|
417
427
|
name: dais_find_store_by_number
|
|
418
428
|
function:
|
|
419
|
-
type:
|
|
420
|
-
|
|
421
|
-
args:
|
|
422
|
-
schema: *dais_schema
|
|
423
|
-
warehouse: *dais_warehouse
|
|
429
|
+
type: unity_catalog
|
|
430
|
+
<<: *find_store_by_number
|
|
424
431
|
|
|
425
432
|
dais_store_number_extraction_tool: &dais_store_number_extraction_tool
|
|
426
433
|
name: dais_store_number_extraction
|
|
@@ -1343,6 +1350,10 @@ evaluation:
|
|
|
1343
1350
|
schema: *dais_schema
|
|
1344
1351
|
name: evaluation
|
|
1345
1352
|
num_evals: 25
|
|
1353
|
+
custom_inputs:
|
|
1354
|
+
configurable:
|
|
1355
|
+
thread_id: "1"
|
|
1356
|
+
user_id: my_user_id
|
|
1346
1357
|
|
|
1347
1358
|
datasets:
|
|
1348
1359
|
# Core product and inventory tables
|
|
@@ -919,7 +919,7 @@ app:
|
|
|
919
919
|
- *recommendation # Product recommendation agent
|
|
920
920
|
- *general # General purpose agent
|
|
921
921
|
orchestration: # Agent orchestration configuration
|
|
922
|
-
memory: *memory # Reference to memory configuration
|
|
922
|
+
#memory: *memory # Reference to memory configuration
|
|
923
923
|
supervisor: # Supervisor orchestration pattern
|
|
924
924
|
model: *tool_calling_llm # LLM for routing decisions
|
|
925
925
|
message_hooks:
|
|
@@ -14,10 +14,13 @@ schemas:
|
|
|
14
14
|
retail_schema: &retail_schema
|
|
15
15
|
catalog_name: retail_consumer_goods # Unity Catalog name
|
|
16
16
|
schema_name: hardware_store # Schema within the catalog
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
permissions: # Access permissions for the schema
|
|
18
|
+
- principals: [users] # Grant access to all users
|
|
19
|
+
privileges:
|
|
20
|
+
- USE_CATALOG # Full permissions for demo purposes
|
|
21
|
+
- USE_SCHEMA # Full permissions for demo purposes
|
|
22
|
+
- SELECT # Full permissions for demo purposes
|
|
23
|
+
- EXECUTE # Full permissions for demo purposes
|
|
21
24
|
|
|
22
25
|
# =============================================================================
|
|
23
26
|
# RESOURCES CONFIGURATION
|
|
@@ -33,7 +36,7 @@ resources:
|
|
|
33
36
|
llms:
|
|
34
37
|
# Primary LLM for general tasks
|
|
35
38
|
default_llm: &default_llm
|
|
36
|
-
name: databricks-claude-3-7-sonnet
|
|
39
|
+
name: databricks-claude-3-7-sonnet # Databricks serving endpoint name
|
|
37
40
|
temperature: 0.1 # Low temperature for consistent responses
|
|
38
41
|
max_tokens: 8192 # Maximum tokens per response
|
|
39
42
|
|
|
@@ -462,8 +465,8 @@ agents:
|
|
|
462
465
|
model: *tool_calling_llm # Reference to LLM configuration
|
|
463
466
|
tools: # Tools available to this agent
|
|
464
467
|
- *find_product_details_by_description_tool
|
|
465
|
-
guardrails:
|
|
466
|
-
|
|
468
|
+
guardrails: [] # Quality checks (currently disabled)
|
|
469
|
+
# - *llm_judge_guardrail
|
|
467
470
|
prompt: | # System prompt defining agent behavior
|
|
468
471
|
### User Information
|
|
469
472
|
- **User Id**: {user_id}
|
|
@@ -912,13 +915,13 @@ agents:
|
|
|
912
915
|
# and agent orchestration patterns for the multi-agent system
|
|
913
916
|
|
|
914
917
|
app:
|
|
915
|
-
name:
|
|
918
|
+
name: hardware_store_postgres_beta # Application name
|
|
916
919
|
description: "Multi-agent system for retail customer service and product assistance"
|
|
917
920
|
log_level: DEBUG # Logging level for the application
|
|
918
921
|
registered_model: # MLflow registered model configuration
|
|
919
922
|
schema: *retail_schema # Schema where model will be registered
|
|
920
|
-
name:
|
|
921
|
-
endpoint_name:
|
|
923
|
+
name: hardware_store_postgres_beta # Model name in MLflow registry
|
|
924
|
+
endpoint_name: hardware_store_postgres_beta # Model serving endpoint name
|
|
922
925
|
environment_vars:
|
|
923
926
|
PGHOST: "{{secrets/retail_ai/PGHOST}}" # Databricks host URL
|
|
924
927
|
RETAIL_AI_DATABRICKS_CLIENT_ID: "{{secrets/retail_ai/RETAIL_AI_DATABRICKS_CLIENT_ID}}"
|
|
@@ -926,7 +929,7 @@ app:
|
|
|
926
929
|
RETAIL_AI_DATABRICKS_HOST: "{{secrets/retail_ai/RETAIL_AI_DATABRICKS_HOST}}"
|
|
927
930
|
tags: # Tags for resource organization
|
|
928
931
|
business: rcg # Business unit identifier
|
|
929
|
-
streaming:
|
|
932
|
+
streaming: True # Indicates streaming capabilities
|
|
930
933
|
permissions: # Model serving permissions
|
|
931
934
|
- principals: [users] # Grant access to all users
|
|
932
935
|
entitlements:
|
|
@@ -943,6 +946,9 @@ app:
|
|
|
943
946
|
memory: *memory # Memory store for conversation context
|
|
944
947
|
supervisor: # Supervisor orchestration pattern
|
|
945
948
|
model: *tool_calling_llm # LLM for routing decisions
|
|
949
|
+
# swarm:
|
|
950
|
+
# model: *tool_calling_llm
|
|
951
|
+
# default_agent: *general
|
|
946
952
|
|
|
947
953
|
message_hooks:
|
|
948
954
|
- dao_ai.hooks.null_hook
|
|
@@ -959,11 +965,8 @@ app:
|
|
|
959
965
|
chat_history:
|
|
960
966
|
#max_tokens: 256
|
|
961
967
|
max_messages_before_summary: 5
|
|
962
|
-
max_summary_tokens: 128
|
|
963
968
|
model: *fast_llm # Model for summarization tasks
|
|
964
|
-
|
|
965
|
-
# model: *tool_calling_llm
|
|
966
|
-
# default_agent: *general
|
|
969
|
+
|
|
967
970
|
|
|
968
971
|
# =============================================================================
|
|
969
972
|
# UNITY CATALOG FUNCTIONS DEPLOYMENT
|
|
@@ -1033,6 +1036,12 @@ evaluation:
|
|
|
1033
1036
|
thread_id: "1"
|
|
1034
1037
|
user_id: nate_fleming
|
|
1035
1038
|
store_num: 87887
|
|
1039
|
+
guidelines:
|
|
1040
|
+
- name: MyRelevanceGuideline
|
|
1041
|
+
guidelines:
|
|
1042
|
+
- Ensure responses are relevant to the user's query
|
|
1043
|
+
- Prioritize information from the user's context
|
|
1044
|
+
- Avoid unnecessary jargon or technical details
|
|
1036
1045
|
|
|
1037
1046
|
# =============================================================================
|
|
1038
1047
|
# DATASETS CONFIGURATION
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# yaml-language-server: $schema=./schemas/bundle_config_schema.json
|
|
2
2
|
|
|
3
|
-
|
|
4
3
|
bundle:
|
|
5
4
|
name: dao-ai-bundle
|
|
6
5
|
|
|
@@ -31,11 +30,11 @@ resources:
|
|
|
31
30
|
spark_version: 16.2.x-scala2.12
|
|
32
31
|
num_workers: 1
|
|
33
32
|
environments:
|
|
34
|
-
- environment_key:
|
|
33
|
+
- environment_key: dao-ai-env
|
|
35
34
|
spec:
|
|
36
|
-
client: "
|
|
35
|
+
client: "4"
|
|
37
36
|
dependencies:
|
|
38
|
-
-
|
|
37
|
+
- -r ${workspace.file_path}/requirements.txt
|
|
39
38
|
tasks:
|
|
40
39
|
- task_key: ingest-and-transform
|
|
41
40
|
notebook_task:
|
|
@@ -50,7 +49,7 @@ resources:
|
|
|
50
49
|
notebook_path: ./notebooks/02_provision_vector_search.py
|
|
51
50
|
base_parameters:
|
|
52
51
|
config-path: ${var.config_path}
|
|
53
|
-
environment_key:
|
|
52
|
+
environment_key: dao-ai-env
|
|
54
53
|
- task_key: generate-evaluation-data
|
|
55
54
|
depends_on:
|
|
56
55
|
- task_key: provision-vector-search
|
|
@@ -58,7 +57,7 @@ resources:
|
|
|
58
57
|
notebook_path: ./notebooks/03_generate_evaluation_data.py
|
|
59
58
|
base_parameters:
|
|
60
59
|
config-path: ${var.config_path}
|
|
61
|
-
environment_key:
|
|
60
|
+
environment_key: dao-ai-env
|
|
62
61
|
- task_key: unity-catalog-tools
|
|
63
62
|
depends_on:
|
|
64
63
|
- task_key: provision-vector-search
|
|
@@ -66,7 +65,7 @@ resources:
|
|
|
66
65
|
notebook_path: ./notebooks/04_unity_catalog_tools.py
|
|
67
66
|
base_parameters:
|
|
68
67
|
config-path: ${var.config_path}
|
|
69
|
-
environment_key:
|
|
68
|
+
environment_key: dao-ai-env
|
|
70
69
|
- task_key: deploy-agents
|
|
71
70
|
depends_on:
|
|
72
71
|
- task_key: unity-catalog-tools
|
|
@@ -74,7 +73,7 @@ resources:
|
|
|
74
73
|
notebook_path: ./notebooks/05_agent_as_code_driver.py
|
|
75
74
|
base_parameters:
|
|
76
75
|
config-path: ${var.config_path}
|
|
77
|
-
environment_key:
|
|
76
|
+
environment_key: dao-ai-env
|
|
78
77
|
- task_key: run-evaluation
|
|
79
78
|
depends_on:
|
|
80
79
|
- task_key: deploy-agents
|
|
@@ -83,28 +82,14 @@ resources:
|
|
|
83
82
|
notebook_path: ./notebooks/06_run_evaluation.py
|
|
84
83
|
base_parameters:
|
|
85
84
|
config-path: ${var.config_path}
|
|
86
|
-
environment_key:
|
|
85
|
+
environment_key: dao-ai-env
|
|
87
86
|
|
|
88
87
|
targets:
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
host: https://adb-984752964297111.11.azuredatabricks.net
|
|
93
|
-
root_path: /Users/${workspace.current_user.userName}/.bundle/${var.app_name}/${bundle.target}
|
|
88
|
+
dev:
|
|
89
|
+
mode: development
|
|
90
|
+
default: true
|
|
94
91
|
|
|
95
|
-
aws:
|
|
96
|
-
workspace:
|
|
97
|
-
host: https://e2-demo-field-eng.cloud.databricks.com
|
|
98
|
-
root_path: /Users/${workspace.current_user.userName}/.bundle/${var.app_name}/${bundle.target}
|
|
99
|
-
gcp:
|
|
100
|
-
workspace:
|
|
101
|
-
host: https://416411475796958.8.gcp.databricks.com/
|
|
102
|
-
root_path: /Users/${workspace.current_user.userName}/.bundle/${var.app_name}/${bundle.target}
|
|
103
92
|
|
|
104
|
-
retail:
|
|
105
|
-
workspace:
|
|
106
|
-
host: https://adb-6447127900489650.10.azuredatabricks.net/
|
|
107
|
-
root_path: /Users/${workspace.current_user.userName}/.bundle/${var.app_name}/${bundle.target}
|
|
108
93
|
|
|
109
94
|
|
|
110
95
|
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
environment_version: '3'
|
|
2
|
+
dependencies:
|
|
3
|
+
- --index-url https://pypi.org/simple
|
|
4
|
+
# Core framework dependencies
|
|
5
|
+
- langchain==0.3.27
|
|
6
|
+
- langchain-core==0.3.72
|
|
7
|
+
- langchain-community==0.3.26
|
|
8
|
+
- langchain-anthropic==0.3.18
|
|
9
|
+
- langchain-openai==0.3.24
|
|
10
|
+
- langgraph==0.6.5
|
|
11
|
+
- langgraph-checkpoint==2.1.1
|
|
12
|
+
- langgraph-checkpoint-postgres==2.0.23
|
|
13
|
+
- langgraph-prebuilt==0.6.3
|
|
14
|
+
- langgraph-supervisor==0.0.29
|
|
15
|
+
- langmem==0.0.29
|
|
16
|
+
- langsmith==0.4.1
|
|
17
|
+
# Databricks dependencies
|
|
18
|
+
- databricks-agents==1.2.0
|
|
19
|
+
- databricks-ai-bridge==0.5.1
|
|
20
|
+
- databricks-langchain==0.5.1
|
|
21
|
+
- databricks-sdk==0.61.0
|
|
22
|
+
- databricks-vectorsearch==0.56
|
|
23
|
+
- unitycatalog-ai==0.3.1
|
|
24
|
+
- unitycatalog-langchain==0.2.0
|
|
25
|
+
# MLflow and AI model dependencies
|
|
26
|
+
- mlflow==3.1.1
|
|
27
|
+
- anthropic==0.60.0
|
|
28
|
+
- openai==1.90.0
|
|
29
|
+
- tiktoken==0.9.0
|
|
30
|
+
# Data processing dependencies
|
|
31
|
+
- pandas==2.3.0
|
|
32
|
+
- numpy==1.26.4
|
|
33
|
+
- pyarrow==20.0.0
|
|
34
|
+
- sqlparse==0.5.3
|
|
35
|
+
- pydantic==2.11.7
|
|
36
|
+
- pydantic-settings==2.10.0
|
|
37
|
+
# Database dependencies
|
|
38
|
+
- psycopg==3.2.9
|
|
39
|
+
- psycopg-binary==3.2.9
|
|
40
|
+
- psycopg-pool==3.2.6
|
|
41
|
+
- sqlalchemy==2.0.41
|
|
42
|
+
# Web framework dependencies
|
|
43
|
+
- fastapi==0.115.13
|
|
44
|
+
- uvicorn==0.34.3
|
|
45
|
+
- starlette==0.46.2
|
|
46
|
+
# Utilities
|
|
47
|
+
- loguru==0.7.3
|
|
48
|
+
- python-dotenv==1.1.0
|
|
49
|
+
- pyyaml==6.0.2
|
|
50
|
+
- requests==2.32.4
|
|
51
|
+
- tenacity==9.1.2
|
|
52
|
+
- typing-extensions==4.14.0
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Databricks notebook source
|
|
2
2
|
# DBTITLE 1,Install Required Python Packages and Restart Kernel
|
|
3
3
|
# MAGIC %pip install --quiet -r ../requirements.txt
|
|
4
|
+
# MAGIC %pip uninstall -y databricks-connect pyspark pyspark-connect
|
|
5
|
+
# MAGIC %pip install databricks-connect
|
|
4
6
|
# MAGIC %restart_python
|
|
5
7
|
|
|
6
8
|
# COMMAND ----------
|
|
@@ -223,14 +225,20 @@ eval_df: pd.DataFrame = spark.read.table(payload_table).toPandas()
|
|
|
223
225
|
|
|
224
226
|
evaluation_table_name: str = config.evaluation.table.full_name
|
|
225
227
|
|
|
226
|
-
|
|
228
|
+
scorers = [Safety(), clarity, response_completeness, tool_call_efficiency]
|
|
229
|
+
custom_scorers = []
|
|
230
|
+
|
|
231
|
+
if config.evaluation.guidelines:
|
|
232
|
+
custom_scorers = [Guidelines(name=guideline.name, guidelines=guideline.guidelines) for guideline in config.evaluation.guidelines]
|
|
233
|
+
|
|
234
|
+
scorers += custom_scorers
|
|
227
235
|
|
|
228
236
|
with mlflow.start_run(run_id=model_version.run_id):
|
|
229
237
|
eval_results = mlflow.genai.evaluate(
|
|
230
238
|
data=eval_df,
|
|
231
239
|
predict_fn=predict_fn,
|
|
232
240
|
model_id=model_version.model_id,
|
|
233
|
-
scorers=
|
|
241
|
+
scorers=scorers,
|
|
234
242
|
)
|
|
235
243
|
|
|
236
244
|
|
|
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "dao-ai"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.7"
|
|
8
8
|
description = "DAO AI: A modular, multi-agent orchestration framework for complex AI workflows. Supports agent handoff, tool integration, and dynamic configuration via YAML."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
11
|
-
requires-python = ">=3.
|
|
11
|
+
requires-python = ">=3.12"
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = "Nate Fleming", email = "nate.fleming@databricks.com" },
|
|
14
14
|
{ name = "Nate Fleming", email = "nate.fleming@gmail.com" },
|
|
@@ -42,27 +42,26 @@ classifiers = [
|
|
|
42
42
|
"Topic :: System :: Distributed Computing",
|
|
43
43
|
]
|
|
44
44
|
dependencies = [
|
|
45
|
-
"databricks-agents>=
|
|
45
|
+
"databricks-agents>=1.2.0",
|
|
46
46
|
"databricks-langchain>=0.4.2",
|
|
47
47
|
"databricks-sdk[openai]>=0.55.0",
|
|
48
48
|
"databricks-vectorsearch>=0.56",
|
|
49
49
|
"duckduckgo-search>=8.0.2",
|
|
50
50
|
"grandalf>=0.8",
|
|
51
|
-
"langchain>=0.3.
|
|
52
|
-
"langchain-mcp-adapters>=0.1.
|
|
53
|
-
"langgraph
|
|
54
|
-
"langgraph-checkpoint-postgres>=2.0.
|
|
55
|
-
"langgraph-
|
|
56
|
-
"langgraph-
|
|
57
|
-
"
|
|
58
|
-
"langmem>=0.0.27",
|
|
51
|
+
"langchain>=0.3.27",
|
|
52
|
+
"langchain-mcp-adapters>=0.1.9",
|
|
53
|
+
"langgraph>=0.6.5",
|
|
54
|
+
"langgraph-checkpoint-postgres>=2.0.23",
|
|
55
|
+
"langgraph-supervisor>=0.0.29",
|
|
56
|
+
"langgraph-swarm>=0.0.14",
|
|
57
|
+
"langmem>=0.0.29",
|
|
59
58
|
"loguru>=0.7.3",
|
|
60
59
|
"mcp>=1.9.1",
|
|
61
60
|
"mlflow>=3.1.1",
|
|
62
61
|
"nest-asyncio>=1.6.0",
|
|
63
62
|
"openevals>=0.0.19",
|
|
64
63
|
"openpyxl>=3.1.5",
|
|
65
|
-
"psycopg[binary,pool]>=3.2.
|
|
64
|
+
"psycopg[binary,pool]>=3.2.9",
|
|
66
65
|
"pydantic>=2.11.3",
|
|
67
66
|
"python-dotenv>=1.1.0",
|
|
68
67
|
"pyyaml>=6.0.2",
|
|
@@ -4,30 +4,25 @@ aiohttp-retry==2.9.1
|
|
|
4
4
|
aiosignal==1.3.2
|
|
5
5
|
alembic==1.16.2
|
|
6
6
|
annotated-types==0.7.0
|
|
7
|
-
anthropic==0.
|
|
7
|
+
anthropic==0.60.0
|
|
8
8
|
anyio==4.9.0
|
|
9
9
|
attrs==25.3.0
|
|
10
|
-
azure-core==1.34.0
|
|
11
|
-
azure-storage-blob==12.25.1
|
|
12
|
-
azure-storage-file-datalake==12.20.0
|
|
13
10
|
blinker==1.9.0
|
|
14
|
-
boto3==1.
|
|
15
|
-
botocore==1.
|
|
11
|
+
boto3==1.40.1
|
|
12
|
+
botocore==1.40.1
|
|
16
13
|
cachetools==5.5.2
|
|
17
14
|
certifi==2025.6.15
|
|
18
|
-
cffi==1.17.1
|
|
19
15
|
cfgv==3.4.0
|
|
20
16
|
charset-normalizer==3.4.2
|
|
21
17
|
click==8.2.1
|
|
22
18
|
cloudpickle==3.1.1
|
|
23
19
|
contourpy==1.3.2
|
|
24
|
-
cryptography==45.0.4
|
|
25
20
|
cycler==0.12.1
|
|
26
|
-
databricks-agents==1.
|
|
21
|
+
databricks-agents==1.2.0
|
|
27
22
|
databricks-ai-bridge==0.5.1
|
|
28
|
-
databricks-connect==16.
|
|
23
|
+
databricks-connect==16.3.4
|
|
29
24
|
databricks-langchain==0.5.1
|
|
30
|
-
databricks-sdk==0.
|
|
25
|
+
databricks-sdk==0.61.0
|
|
31
26
|
databricks-vectorsearch==0.56
|
|
32
27
|
dataclasses-json==0.6.7
|
|
33
28
|
deprecation==2.1.0
|
|
@@ -44,12 +39,7 @@ fonttools==4.58.4
|
|
|
44
39
|
frozenlist==1.7.0
|
|
45
40
|
gitdb==4.0.12
|
|
46
41
|
gitpython==3.1.44
|
|
47
|
-
google-api-core==2.25.1
|
|
48
42
|
google-auth==2.40.3
|
|
49
|
-
google-cloud-core==2.4.3
|
|
50
|
-
google-cloud-storage==3.1.1
|
|
51
|
-
google-crc32c==1.7.1
|
|
52
|
-
google-resumable-media==2.7.2
|
|
53
43
|
googleapis-common-protos==1.70.0
|
|
54
44
|
grandalf==0.8
|
|
55
45
|
graphene==3.4.3
|
|
@@ -67,7 +57,6 @@ identify==2.6.12
|
|
|
67
57
|
idna==3.10
|
|
68
58
|
importlib-metadata==8.7.0
|
|
69
59
|
iniconfig==2.1.0
|
|
70
|
-
isodate==0.7.2
|
|
71
60
|
itsdangerous==2.2.0
|
|
72
61
|
jinja2==3.1.6
|
|
73
62
|
jiter==0.10.0
|
|
@@ -76,21 +65,21 @@ joblib==1.5.1
|
|
|
76
65
|
jsonpatch==1.33
|
|
77
66
|
jsonpointer==3.0.0
|
|
78
67
|
kiwisolver==1.4.8
|
|
79
|
-
langchain==0.3.
|
|
80
|
-
langchain-anthropic==0.3.
|
|
68
|
+
langchain==0.3.27
|
|
69
|
+
langchain-anthropic==0.3.18
|
|
81
70
|
langchain-community==0.3.26
|
|
82
|
-
langchain-core==0.3.
|
|
83
|
-
langchain-mcp-adapters==0.1.
|
|
71
|
+
langchain-core==0.3.72
|
|
72
|
+
langchain-mcp-adapters==0.1.9
|
|
84
73
|
langchain-openai==0.3.24
|
|
85
|
-
langchain-text-splitters==0.3.
|
|
86
|
-
langgraph==0.
|
|
87
|
-
langgraph-checkpoint==2.1.
|
|
88
|
-
langgraph-checkpoint-postgres==2.0.
|
|
89
|
-
langgraph-prebuilt==0.
|
|
90
|
-
langgraph-sdk==0.
|
|
91
|
-
langgraph-supervisor==0.0.
|
|
92
|
-
langgraph-swarm==0.0.
|
|
93
|
-
langmem==0.0.
|
|
74
|
+
langchain-text-splitters==0.3.9
|
|
75
|
+
langgraph==0.6.5
|
|
76
|
+
langgraph-checkpoint==2.1.1
|
|
77
|
+
langgraph-checkpoint-postgres==2.0.23
|
|
78
|
+
langgraph-prebuilt==0.6.3
|
|
79
|
+
langgraph-sdk==0.2.0
|
|
80
|
+
langgraph-supervisor==0.0.29
|
|
81
|
+
langgraph-swarm==0.0.14
|
|
82
|
+
langmem==0.0.29
|
|
94
83
|
langsmith==0.4.1
|
|
95
84
|
loguru==0.7.3
|
|
96
85
|
lxml==5.4.0
|
|
@@ -126,7 +115,6 @@ pluggy==1.6.0
|
|
|
126
115
|
pre-commit==4.2.0
|
|
127
116
|
primp==0.15.0
|
|
128
117
|
propcache==0.3.2
|
|
129
|
-
proto-plus==1.26.1
|
|
130
118
|
protobuf==5.29.5
|
|
131
119
|
psycopg==3.2.9
|
|
132
120
|
psycopg-binary==3.2.9
|
|
@@ -135,7 +123,6 @@ py4j==0.10.9.7
|
|
|
135
123
|
pyarrow==20.0.0
|
|
136
124
|
pyasn1==0.6.1
|
|
137
125
|
pyasn1-modules==0.4.2
|
|
138
|
-
pycparser==2.22
|
|
139
126
|
pydantic==2.11.7
|
|
140
127
|
pydantic-core==2.33.2
|
|
141
128
|
pydantic-settings==2.10.0
|
|
@@ -153,7 +140,7 @@ requests-toolbelt==1.0.0
|
|
|
153
140
|
rich==14.0.0
|
|
154
141
|
rsa==4.9.1
|
|
155
142
|
ruff==0.12.0
|
|
156
|
-
s3transfer==0.13.
|
|
143
|
+
s3transfer==0.13.1
|
|
157
144
|
scikit-learn==1.7.0
|
|
158
145
|
scipy==1.13.1
|
|
159
146
|
setuptools==80.9.0
|
|
@@ -181,6 +168,7 @@ urllib3==2.5.0
|
|
|
181
168
|
uvicorn==0.34.3
|
|
182
169
|
virtualenv==20.31.2
|
|
183
170
|
werkzeug==3.1.3
|
|
171
|
+
whenever==0.7.3
|
|
184
172
|
xxhash==3.5.0
|
|
185
173
|
yarl==1.20.1
|
|
186
174
|
zipp==3.23.0
|
|
@@ -466,16 +466,9 @@
|
|
|
466
466
|
"title": "Max Messages Before Summary"
|
|
467
467
|
},
|
|
468
468
|
"max_summary_tokens": {
|
|
469
|
-
"
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
"type": "null"
|
|
475
|
-
}
|
|
476
|
-
],
|
|
477
|
-
"default": null,
|
|
478
|
-
"title": "Max Summary Tokens"
|
|
469
|
+
"default": 255,
|
|
470
|
+
"title": "Max Summary Tokens",
|
|
471
|
+
"type": "integer"
|
|
479
472
|
}
|
|
480
473
|
},
|
|
481
474
|
"required": [
|
|
@@ -1097,6 +1090,13 @@
|
|
|
1097
1090
|
"additionalProperties": true,
|
|
1098
1091
|
"title": "Custom Inputs",
|
|
1099
1092
|
"type": "object"
|
|
1093
|
+
},
|
|
1094
|
+
"guidelines": {
|
|
1095
|
+
"items": {
|
|
1096
|
+
"$ref": "#/$defs/GuidelineModel"
|
|
1097
|
+
},
|
|
1098
|
+
"title": "Guidelines",
|
|
1099
|
+
"type": "array"
|
|
1100
1100
|
}
|
|
1101
1101
|
},
|
|
1102
1102
|
"required": [
|
|
@@ -1264,6 +1264,28 @@
|
|
|
1264
1264
|
"title": "GuardrailModel",
|
|
1265
1265
|
"type": "object"
|
|
1266
1266
|
},
|
|
1267
|
+
"GuidelineModel": {
|
|
1268
|
+
"additionalProperties": false,
|
|
1269
|
+
"properties": {
|
|
1270
|
+
"name": {
|
|
1271
|
+
"title": "Name",
|
|
1272
|
+
"type": "string"
|
|
1273
|
+
},
|
|
1274
|
+
"guidelines": {
|
|
1275
|
+
"items": {
|
|
1276
|
+
"type": "string"
|
|
1277
|
+
},
|
|
1278
|
+
"title": "Guidelines",
|
|
1279
|
+
"type": "array"
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1282
|
+
"required": [
|
|
1283
|
+
"name",
|
|
1284
|
+
"guidelines"
|
|
1285
|
+
],
|
|
1286
|
+
"title": "GuidelineModel",
|
|
1287
|
+
"type": "object"
|
|
1288
|
+
},
|
|
1267
1289
|
"HumanInTheLoopModel": {
|
|
1268
1290
|
"additionalProperties": false,
|
|
1269
1291
|
"properties": {
|