dao-ai 0.0.29__py3-none-any.whl → 0.0.30__py3-none-any.whl
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/config.py +26 -2
- {dao_ai-0.0.29.dist-info → dao_ai-0.0.30.dist-info}/METADATA +1 -1
- {dao_ai-0.0.29.dist-info → dao_ai-0.0.30.dist-info}/RECORD +6 -6
- {dao_ai-0.0.29.dist-info → dao_ai-0.0.30.dist-info}/WHEEL +0 -0
- {dao_ai-0.0.29.dist-info → dao_ai-0.0.30.dist-info}/entry_points.txt +0 -0
- {dao_ai-0.0.29.dist-info → dao_ai-0.0.30.dist-info}/licenses/LICENSE +0 -0
dao_ai/config.py
CHANGED
|
@@ -2009,21 +2009,45 @@ class AppConfig(BaseModel):
|
|
|
2009
2009
|
def create_agent(
|
|
2010
2010
|
self,
|
|
2011
2011
|
w: WorkspaceClient | None = None,
|
|
2012
|
+
vsc: "VectorSearchClient | None" = None,
|
|
2013
|
+
pat: str | None = None,
|
|
2014
|
+
client_id: str | None = None,
|
|
2015
|
+
client_secret: str | None = None,
|
|
2016
|
+
workspace_host: str | None = None,
|
|
2012
2017
|
) -> None:
|
|
2013
2018
|
from dao_ai.providers.base import ServiceProvider
|
|
2014
2019
|
from dao_ai.providers.databricks import DatabricksProvider
|
|
2015
2020
|
|
|
2016
|
-
provider: ServiceProvider = DatabricksProvider(
|
|
2021
|
+
provider: ServiceProvider = DatabricksProvider(
|
|
2022
|
+
w=w,
|
|
2023
|
+
vsc=vsc,
|
|
2024
|
+
pat=pat,
|
|
2025
|
+
client_id=client_id,
|
|
2026
|
+
client_secret=client_secret,
|
|
2027
|
+
workspace_host=workspace_host,
|
|
2028
|
+
)
|
|
2017
2029
|
provider.create_agent(self)
|
|
2018
2030
|
|
|
2019
2031
|
def deploy_agent(
|
|
2020
2032
|
self,
|
|
2021
2033
|
w: WorkspaceClient | None = None,
|
|
2034
|
+
vsc: "VectorSearchClient | None" = None,
|
|
2035
|
+
pat: str | None = None,
|
|
2036
|
+
client_id: str | None = None,
|
|
2037
|
+
client_secret: str | None = None,
|
|
2038
|
+
workspace_host: str | None = None,
|
|
2022
2039
|
) -> None:
|
|
2023
2040
|
from dao_ai.providers.base import ServiceProvider
|
|
2024
2041
|
from dao_ai.providers.databricks import DatabricksProvider
|
|
2025
2042
|
|
|
2026
|
-
provider: ServiceProvider = DatabricksProvider(
|
|
2043
|
+
provider: ServiceProvider = DatabricksProvider(
|
|
2044
|
+
w=w,
|
|
2045
|
+
vsc=vsc,
|
|
2046
|
+
pat=pat,
|
|
2047
|
+
client_id=client_id,
|
|
2048
|
+
client_secret=client_secret,
|
|
2049
|
+
workspace_host=workspace_host,
|
|
2050
|
+
)
|
|
2027
2051
|
provider.deploy_agent(self)
|
|
2028
2052
|
|
|
2029
2053
|
def find_agents(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dao-ai
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.30
|
|
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
|
|
@@ -3,7 +3,7 @@ dao_ai/agent_as_code.py,sha256=sviZQV7ZPxE5zkZ9jAbfegI681nra5i8yYxw05e3X7U,552
|
|
|
3
3
|
dao_ai/catalog.py,sha256=sPZpHTD3lPx4EZUtIWeQV7VQM89WJ6YH__wluk1v2lE,4947
|
|
4
4
|
dao_ai/chat_models.py,sha256=uhwwOTeLyHWqoTTgHrs4n5iSyTwe4EQcLKnh3jRxPWI,8626
|
|
5
5
|
dao_ai/cli.py,sha256=gq-nsapWxDA1M6Jua3vajBvIwf0Oa6YLcB58lEtMKUo,22503
|
|
6
|
-
dao_ai/config.py,sha256=
|
|
6
|
+
dao_ai/config.py,sha256=r4mhailZn2edyJpElUGPvJS5rYyt6kclNWIK6RG328g,73279
|
|
7
7
|
dao_ai/graph.py,sha256=9kjJx0oFZKq5J9-Kpri4-0VCJILHYdYyhqQnj0_noxQ,8913
|
|
8
8
|
dao_ai/guardrails.py,sha256=4TKArDONRy8RwHzOT1plZ1rhy3x9GF_aeGpPCRl6wYA,4016
|
|
9
9
|
dao_ai/messages.py,sha256=xl_3-WcFqZKCFCiov8sZOPljTdM3gX3fCHhxq-xFg2U,7005
|
|
@@ -34,8 +34,8 @@ dao_ai/tools/slack.py,sha256=SCvyVcD9Pv_XXPXePE_fSU1Pd8VLTEkKDLvoGTZWy2Y,4775
|
|
|
34
34
|
dao_ai/tools/time.py,sha256=Y-23qdnNHzwjvnfkWvYsE7PoWS1hfeKy44tA7sCnNac,8759
|
|
35
35
|
dao_ai/tools/unity_catalog.py,sha256=uX_h52BuBAr4c9UeqSMI7DNz3BPRLeai5tBVW4sJqRI,13113
|
|
36
36
|
dao_ai/tools/vector_search.py,sha256=h6yCgEtOA3h-anJG0hGB3VvcmC3Os7_qnhz8xxRjv1E,11346
|
|
37
|
-
dao_ai-0.0.
|
|
38
|
-
dao_ai-0.0.
|
|
39
|
-
dao_ai-0.0.
|
|
40
|
-
dao_ai-0.0.
|
|
41
|
-
dao_ai-0.0.
|
|
37
|
+
dao_ai-0.0.30.dist-info/METADATA,sha256=T8RdBoC0m6A9CzhFGYPd81X4USQwabDrrWFTa7aEgCs,42778
|
|
38
|
+
dao_ai-0.0.30.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
39
|
+
dao_ai-0.0.30.dist-info/entry_points.txt,sha256=Xa-UFyc6gWGwMqMJOt06ZOog2vAfygV_DSwg1AiP46g,43
|
|
40
|
+
dao_ai-0.0.30.dist-info/licenses/LICENSE,sha256=YZt3W32LtPYruuvHE9lGk2bw6ZPMMJD8yLrjgHybyz4,1069
|
|
41
|
+
dao_ai-0.0.30.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|