google-adk 0.0.5__py3-none-any.whl → 0.1.1__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.
- google/adk/cli/cli.py +2 -0
- google/adk/cli/cli_deploy.py +3 -3
- google/adk/cli/cli_tools_click.py +3 -3
- google/adk/cli/fast_api.py +2 -5
- google/adk/version.py +1 -1
- google_adk-0.1.1.dist-info/METADATA +181 -0
- {google_adk-0.0.5.dist-info → google_adk-0.1.1.dist-info}/RECORD +10 -10
- google_adk-0.0.5.dist-info/METADATA +0 -75
- {google_adk-0.0.5.dist-info → google_adk-0.1.1.dist-info}/WHEEL +0 -0
- {google_adk-0.0.5.dist-info → google_adk-0.1.1.dist-info}/entry_points.txt +0 -0
- {google_adk-0.0.5.dist-info → google_adk-0.1.1.dist-info}/licenses/LICENSE +0 -0
google/adk/cli/cli.py
CHANGED
google/adk/cli/cli_deploy.py
CHANGED
@@ -82,7 +82,7 @@ def to_cloud_run(
|
|
82
82
|
app_name: str,
|
83
83
|
temp_folder: str,
|
84
84
|
port: int,
|
85
|
-
|
85
|
+
trace_to_cloud: bool,
|
86
86
|
with_ui: bool,
|
87
87
|
):
|
88
88
|
"""Deploys an agent to Google Cloud Run.
|
@@ -108,7 +108,7 @@ def to_cloud_run(
|
|
108
108
|
app_name: The name of the app, by default, it's basename of `agent_folder`.
|
109
109
|
temp_folder: The temp folder for the generated Cloud Run source files.
|
110
110
|
port: The port of the ADK api server.
|
111
|
-
|
111
|
+
trace_to_cloud: Whether to enable Cloud Trace.
|
112
112
|
with_ui: Whether to deploy with UI.
|
113
113
|
"""
|
114
114
|
app_name = app_name or os.path.basename(agent_folder)
|
@@ -142,7 +142,7 @@ def to_cloud_run(
|
|
142
142
|
port=port,
|
143
143
|
command='web' if with_ui else 'api_server',
|
144
144
|
install_agent_deps=install_agent_deps,
|
145
|
-
trace_to_cloud_option='--trace_to_cloud' if
|
145
|
+
trace_to_cloud_option='--trace_to_cloud' if trace_to_cloud else '',
|
146
146
|
)
|
147
147
|
dockerfile_path = os.path.join(temp_folder, 'Dockerfile')
|
148
148
|
os.makedirs(temp_folder, exist_ok=True)
|
@@ -452,7 +452,7 @@ def cli_api_server(
|
|
452
452
|
help="Optional. The port of the ADK API server (default: 8000).",
|
453
453
|
)
|
454
454
|
@click.option(
|
455
|
-
"--
|
455
|
+
"--trace_to_cloud",
|
456
456
|
type=bool,
|
457
457
|
is_flag=True,
|
458
458
|
show_default=True,
|
@@ -497,7 +497,7 @@ def cli_deploy_cloud_run(
|
|
497
497
|
app_name: str,
|
498
498
|
temp_folder: str,
|
499
499
|
port: int,
|
500
|
-
|
500
|
+
trace_to_cloud: bool,
|
501
501
|
with_ui: bool,
|
502
502
|
):
|
503
503
|
"""Deploys an agent to Cloud Run.
|
@@ -517,7 +517,7 @@ def cli_deploy_cloud_run(
|
|
517
517
|
app_name=app_name,
|
518
518
|
temp_folder=temp_folder,
|
519
519
|
port=port,
|
520
|
-
|
520
|
+
trace_to_cloud=trace_to_cloud,
|
521
521
|
with_ui=with_ui,
|
522
522
|
)
|
523
523
|
except Exception as e:
|
google/adk/cli/fast_api.py
CHANGED
@@ -143,11 +143,8 @@ def get_fast_api_app(
|
|
143
143
|
provider.add_span_processor(
|
144
144
|
export.SimpleSpanProcessor(ApiServerSpanExporter(trace_dict))
|
145
145
|
)
|
146
|
-
|
147
|
-
|
148
|
-
"ADK_TRACE_TO_CLOUD", "0"
|
149
|
-
).lower() in ["1", "true"]
|
150
|
-
if enable_cloud_tracing:
|
146
|
+
if trace_to_cloud:
|
147
|
+
envs.load_dotenv()
|
151
148
|
if project_id := os.environ.get("GOOGLE_CLOUD_PROJECT", None):
|
152
149
|
processor = export.BatchSpanProcessor(
|
153
150
|
CloudTraceSpanExporter(project_id=project_id)
|
google/adk/version.py
CHANGED
@@ -0,0 +1,181 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: google-adk
|
3
|
+
Version: 0.1.1
|
4
|
+
Summary: Agent Development Kit
|
5
|
+
Author-email: Google LLC <googleapis-packages@google.com>
|
6
|
+
Requires-Python: >=3.9
|
7
|
+
Description-Content-Type: text/markdown
|
8
|
+
Classifier: Typing :: Typed
|
9
|
+
Classifier: Intended Audience :: Developers
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
11
|
+
Classifier: Programming Language :: Python
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
18
|
+
Classifier: Operating System :: OS Independent
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
20
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
21
|
+
License-File: LICENSE
|
22
|
+
Requires-Dist: authlib>=1.5.1
|
23
|
+
Requires-Dist: click>=8.1.8
|
24
|
+
Requires-Dist: fastapi>=0.115.0
|
25
|
+
Requires-Dist: google-api-python-client>=2.157.0
|
26
|
+
Requires-Dist: google-cloud-aiplatform>=1.87.0
|
27
|
+
Requires-Dist: google-cloud-secret-manager>=2.22.0
|
28
|
+
Requires-Dist: google-cloud-speech>=2.30.0
|
29
|
+
Requires-Dist: google-cloud-storage>=2.18.0, <3.0.0
|
30
|
+
Requires-Dist: google-genai>=1.9.0
|
31
|
+
Requires-Dist: graphviz>=0.20.2
|
32
|
+
Requires-Dist: mcp>=1.5.0;python_version>='3.10'
|
33
|
+
Requires-Dist: opentelemetry-api>=1.31.0
|
34
|
+
Requires-Dist: opentelemetry-exporter-gcp-trace>=1.9.0
|
35
|
+
Requires-Dist: opentelemetry-sdk>=1.31.0
|
36
|
+
Requires-Dist: pydantic>=2.0, <3.0.0
|
37
|
+
Requires-Dist: python-dotenv>=1.0.0
|
38
|
+
Requires-Dist: PyYAML>=6.0.2
|
39
|
+
Requires-Dist: sqlalchemy>=2.0
|
40
|
+
Requires-Dist: tzlocal>=5.3
|
41
|
+
Requires-Dist: uvicorn>=0.34.0
|
42
|
+
Requires-Dist: flit>=3.10.0 ; extra == "dev"
|
43
|
+
Requires-Dist: isort>=6.0.0 ; extra == "dev"
|
44
|
+
Requires-Dist: pyink>=24.10.0 ; extra == "dev"
|
45
|
+
Requires-Dist: pylint>=2.6.0 ; extra == "dev"
|
46
|
+
Requires-Dist: autodoc_pydantic ; extra == "docs"
|
47
|
+
Requires-Dist: furo ; extra == "docs"
|
48
|
+
Requires-Dist: myst-parser ; extra == "docs"
|
49
|
+
Requires-Dist: sphinx ; extra == "docs"
|
50
|
+
Requires-Dist: sphinx-autodoc-typehints ; extra == "docs"
|
51
|
+
Requires-Dist: sphinx-rtd-theme ; extra == "docs"
|
52
|
+
Requires-Dist: google-cloud-aiplatform[evaluation]>=1.87.0 ; extra == "eval"
|
53
|
+
Requires-Dist: pandas>=2.2.3 ; extra == "eval"
|
54
|
+
Requires-Dist: tabulate>=0.9.0 ; extra == "eval"
|
55
|
+
Requires-Dist: anthropic>=0.43.0 ; extra == "extensions"
|
56
|
+
Requires-Dist: beautifulsoup4>=3.2.2 ; extra == "extensions"
|
57
|
+
Requires-Dist: crewai[tools] ; extra == "extensions" and (python_version>='3.10')
|
58
|
+
Requires-Dist: docker>=7.0.0 ; extra == "extensions"
|
59
|
+
Requires-Dist: langgraph>=0.2.60 ; extra == "extensions"
|
60
|
+
Requires-Dist: litellm>=1.63.11 ; extra == "extensions"
|
61
|
+
Requires-Dist: llama-index-readers-file>=0.4.0 ; extra == "extensions"
|
62
|
+
Requires-Dist: lxml>=5.3.0 ; extra == "extensions"
|
63
|
+
Requires-Dist: langchain-community>=0.3.17 ; extra == "test"
|
64
|
+
Requires-Dist: pytest-asyncio>=0.25.0 ; extra == "test"
|
65
|
+
Requires-Dist: pytest-mock>=3.14.0 ; extra == "test"
|
66
|
+
Requires-Dist: pytest-xdist>=3.6.1 ; extra == "test"
|
67
|
+
Requires-Dist: pytest>=8.3.4 ; extra == "test"
|
68
|
+
Project-URL: changelog, https://github.com/google/adk-python/blob/main/CHANGELOG.md
|
69
|
+
Project-URL: documentation, https://google.github.io/adk-docs/
|
70
|
+
Project-URL: homepage, https://google.github.io/adk-docs/
|
71
|
+
Project-URL: repository, https://github.com/google/adk-python
|
72
|
+
Provides-Extra: dev
|
73
|
+
Provides-Extra: docs
|
74
|
+
Provides-Extra: eval
|
75
|
+
Provides-Extra: extensions
|
76
|
+
Provides-Extra: test
|
77
|
+
|
78
|
+
# Agent Development Kit (ADK)
|
79
|
+
|
80
|
+
[](LICENSE)
|
81
|
+
|
82
|
+
<html>
|
83
|
+
<h1 align="center">
|
84
|
+
<img src="https://github.com/google/adk-python/blob/main/assets/agent-development-kit.png" width="256"/>
|
85
|
+
</h1>
|
86
|
+
<h3 align="center">
|
87
|
+
An open-source, code-first Python toolkit for building, evaluating, and deploying sophisticated AI agents with flexibility and control.
|
88
|
+
</h3>
|
89
|
+
<h3 align="center">
|
90
|
+
Important Links:
|
91
|
+
<a href="https://google.github.io/adk-docs/">Docs</a> &
|
92
|
+
<a href="https://github.com/google/adk-samples">Samples</a>.
|
93
|
+
</h3>
|
94
|
+
</html>
|
95
|
+
|
96
|
+
The Agent Development Kit (ADK) is designed for developers seeking fine-grained control and flexibility when building advanced AI agents that are tightly integrated with services in Google Cloud. It allows you to define agent behavior, orchestration, and tool use directly in code, enabling robust debugging, versioning, and deployment anywhere – from your laptop to the cloud.
|
97
|
+
|
98
|
+
---
|
99
|
+
|
100
|
+
## ✨ Key Features
|
101
|
+
|
102
|
+
* **Code-First Development:** Define agents, tools, and orchestration logic for maximum control, testability, and versioning.
|
103
|
+
* **Multi-Agent Architecture:** Build modular and scalable applications by composing multiple specialized agents in flexible hierarchies.
|
104
|
+
* **Rich Tool Ecosystem:** Equip agents with diverse capabilities using pre-built tools, custom Python functions, API specifications, or integrating existing tools.
|
105
|
+
* **Flexible Orchestration:** Define workflows using built-in agents for predictable pipelines, or leverage LLM-driven dynamic routing for adaptive behavior.
|
106
|
+
* **Integrated Developer Experience:** Develop, test, and debug locally with a CLI and visual web UI.
|
107
|
+
* **Built-in Evaluation:** Measure agent performance by evaluating response quality and step-by-step execution trajectory.
|
108
|
+
* **Deployment Ready:** Containerize and deploy your agents anywhere – scale with Vertex AI Agent Engine, Cloud Run, or Docker.
|
109
|
+
* **Native Streaming Support:** Build real-time, interactive experiences with native support for bidirectional streaming (text and audio).
|
110
|
+
* **State, Memory & Artifacts:** Manage short-term conversational context, configure long-term memory, and handle file uploads/downloads.
|
111
|
+
* **Extensibility:** Customize agent behavior deeply with callbacks and easily integrate third-party tools and services.
|
112
|
+
|
113
|
+
## 🚀 Installation
|
114
|
+
|
115
|
+
You can install the ADK using `pip`:
|
116
|
+
|
117
|
+
```bash
|
118
|
+
pip install google-adk
|
119
|
+
```
|
120
|
+
|
121
|
+
## 🏁 Getting Started
|
122
|
+
|
123
|
+
Create your first agent (`my_agent/agent.py`):
|
124
|
+
|
125
|
+
```python
|
126
|
+
# my_agent/agent.py
|
127
|
+
from google.adk.agents import Agent
|
128
|
+
from google.adk.tools import google_search
|
129
|
+
|
130
|
+
root_agent = Agent(
|
131
|
+
name="search_assistant",
|
132
|
+
model="gemini-2.0-flash-exp", # Or your preferred Gemini model
|
133
|
+
instruction="You are a helpful assistant. Answer user questions using Google Search when needed.",
|
134
|
+
description="An assistant that can search the web.",
|
135
|
+
tools=[google_search]
|
136
|
+
)
|
137
|
+
```
|
138
|
+
|
139
|
+
Create `my_agent/__init__.py`:
|
140
|
+
|
141
|
+
```python
|
142
|
+
# my_agent/__init__.py
|
143
|
+
from . import agent
|
144
|
+
```
|
145
|
+
|
146
|
+
Run it via the CLI (from the directory *containing* `my_agent`):
|
147
|
+
|
148
|
+
```bash
|
149
|
+
adk run my_agent
|
150
|
+
```
|
151
|
+
|
152
|
+
Or launch the Web UI from the folder that contains `my_agent` folder:
|
153
|
+
|
154
|
+
```bash
|
155
|
+
adk web
|
156
|
+
```
|
157
|
+
|
158
|
+
For a full step-by-step guide, check out the [quickstart](https://google.github.io/adk-docs/get-started/quickstart/) or [sample agents](https://github.com/google/adk-samples).
|
159
|
+
|
160
|
+
## 📚 Resources
|
161
|
+
|
162
|
+
Explore the full documentation for detailed guides on building, evaluating, and deploying agents:
|
163
|
+
|
164
|
+
* **[Get Started](https://google.github.io/adk-docs/get-started/)**
|
165
|
+
* **[Browse Sample Agents](https://github.com/google/adk-samples)**
|
166
|
+
* **[Evaluate Agents](https://google.github.io/adk-docs/guides/evaluate-agents/)**
|
167
|
+
* **[Deploy Agents](https://google.github.io/adk-docs/deploy/)**
|
168
|
+
* **[API Reference](https://google.github.io/adk-docs/api-reference/)**
|
169
|
+
|
170
|
+
## 🤝 Contributing
|
171
|
+
|
172
|
+
We welcome contributions from the community! Whether it's bug reports, feature requests, documentation improvements, or code contributions, please see our [**Contributing Guidelines**](https://github.com/google/adk-python/blob/main/CONTRIBUTING.md) to get started.
|
173
|
+
|
174
|
+
## 📄 License
|
175
|
+
|
176
|
+
This project is licensed under the Apache 2.0 License - see the [LICENSE](https://github.com/google/adk-python/blob/main/LICENSE) file for details.
|
177
|
+
|
178
|
+
---
|
179
|
+
|
180
|
+
*Happy Agent Building!*
|
181
|
+
|
@@ -1,7 +1,7 @@
|
|
1
1
|
google/adk/__init__.py,sha256=sSPQK3r0tW8ahl-k8SXkZvMcbiTbGICCtrw6KkFucyg,726
|
2
2
|
google/adk/runners.py,sha256=r5EG6-3vC-tcW3svdTnebyOw4owIKaRnsPcL4OxvgDg,15506
|
3
3
|
google/adk/telemetry.py,sha256=kxR9VxIMJKAwtTOS0lnq-rS-ZYTZt3pIegHvcV86z7w,6284
|
4
|
-
google/adk/version.py,sha256=
|
4
|
+
google/adk/version.py,sha256=FrSlBkjwnb7rUl1grMkSiteDTSJUAx3SqyM21_wmk8E,621
|
5
5
|
google/adk/agents/__init__.py,sha256=WsCiBlvI-ISWrcntboo_sULvVJNwLNxXCe42UGPLKdY,1041
|
6
6
|
google/adk/agents/active_streaming_tool.py,sha256=AYrT9aCFBzaESFzkMTil_fuK1zDoKDfZQaQXL3_Jxog,1159
|
7
7
|
google/adk/agents/base_agent.py,sha256=wBiVLK11jBDB-bExFeNwoWnbw2dv_f3aYOKKGaSDnjU,10574
|
@@ -30,11 +30,11 @@ google/adk/auth/auth_tool.py,sha256=yTljVLHsxyWIdTu4lKF71NU2Xhw57YAx2b0sBgRQ78U,
|
|
30
30
|
google/adk/cli/__init__.py,sha256=ouPYnIY02VmGNfpA6IT8oSQdfeZd1LHVoDSt_x8zQPU,609
|
31
31
|
google/adk/cli/__main__.py,sha256=gN8rRWlkh_3gLI-oYByxrKpCW9BIfDwrr0YuyisxmHo,646
|
32
32
|
google/adk/cli/agent_graph.py,sha256=H5gvs2wG6ks3F6pk14f33txmvAN9rr0_2H2fNMF96VE,4754
|
33
|
-
google/adk/cli/cli.py,sha256=
|
34
|
-
google/adk/cli/cli_deploy.py,sha256=
|
33
|
+
google/adk/cli/cli.py,sha256=FHKi-ZP-ieP2fS_zJIVJRBC06v9il0vN7Y7IcdBnZKw,5822
|
34
|
+
google/adk/cli/cli_deploy.py,sha256=eA61YJVdZyw7mSeP3QwHpwL8vb4HN0Qhpg1Y5dO7SaI,5011
|
35
35
|
google/adk/cli/cli_eval.py,sha256=HCEpPEe89L2woswTeL3pML4R8fo4uJbAw7ThLg_gb3s,9218
|
36
|
-
google/adk/cli/cli_tools_click.py,sha256=
|
37
|
-
google/adk/cli/fast_api.py,sha256=
|
36
|
+
google/adk/cli/cli_tools_click.py,sha256=8iQTiml2wHpOpp3BpB2qe3UppuHH4JgSvWsXJxYCXE8,14089
|
37
|
+
google/adk/cli/fast_api.py,sha256=QKn0hUKx_9kWIT9p1u1V2lE5wwkvdUIArMBCqsDFUHI,25560
|
38
38
|
google/adk/cli/browser/adk_favicon.svg,sha256=giyzTZ5Xe6HFU63NgTIZDm35L-RmID-odVFOZ4vMo1M,3132
|
39
39
|
google/adk/cli/browser/index.html,sha256=ondMDNXv_f4dZl34BPUByheEP3FX2o9W1VDCBfv-OeA,18483
|
40
40
|
google/adk/cli/browser/main-SLIAU2JL.js,sha256=ANN6KoZRskSPgQbXPCpEdyGVufZ6eYUBsH4u_DgMTFg,2441406
|
@@ -168,8 +168,8 @@ google/adk/tools/retrieval/base_retrieval_tool.py,sha256=4aar8Kg-6rQG7Ht1n18D5fv
|
|
168
168
|
google/adk/tools/retrieval/files_retrieval.py,sha256=bucma_LL7aw15GQnYwgpDP1Lo9UqN-RFlG3w1w0sWfw,1158
|
169
169
|
google/adk/tools/retrieval/llama_index_retrieval.py,sha256=r9HUQXqygxizX0OXz7pJAWxzRRwmofAtFa3UvRR2di0,1304
|
170
170
|
google/adk/tools/retrieval/vertex_ai_rag_retrieval.py,sha256=FzLpZctWX232wn24M-CvjV8s1StivNy8H7e5IqgWphg,3340
|
171
|
-
google_adk-0.
|
172
|
-
google_adk-0.
|
173
|
-
google_adk-0.
|
174
|
-
google_adk-0.
|
175
|
-
google_adk-0.
|
171
|
+
google_adk-0.1.1.dist-info/entry_points.txt,sha256=zL9CU-6V2yQ2oc5lrcyj55ROHrpiIePsvQJ4H6SL-zI,43
|
172
|
+
google_adk-0.1.1.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
173
|
+
google_adk-0.1.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
174
|
+
google_adk-0.1.1.dist-info/METADATA,sha256=mzTuzsqFJMHbYiySgqfF_QxW8yRfpAbi5Z8Bg-M-efM,7823
|
175
|
+
google_adk-0.1.1.dist-info/RECORD,,
|
@@ -1,75 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: google-adk
|
3
|
-
Version: 0.0.5
|
4
|
-
Summary:
|
5
|
-
Author-email: Google LLC <googleapis-packages@google.com>
|
6
|
-
Requires-Python: >=3.9
|
7
|
-
Description-Content-Type: text/markdown
|
8
|
-
Classifier: Typing :: Typed
|
9
|
-
Classifier: Intended Audience :: Developers
|
10
|
-
Classifier: Intended Audience :: Science/Research
|
11
|
-
Classifier: Programming Language :: Python
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
14
|
-
Classifier: Programming Language :: Python :: 3.13
|
15
|
-
Classifier: Programming Language :: Python :: 3.12
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
17
|
-
Classifier: Programming Language :: Python :: 3.10
|
18
|
-
Classifier: Operating System :: OS Independent
|
19
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
20
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
21
|
-
License-File: LICENSE
|
22
|
-
Requires-Dist: authlib>=1.5.1
|
23
|
-
Requires-Dist: click>=8.1.8
|
24
|
-
Requires-Dist: fastapi>=0.115.0
|
25
|
-
Requires-Dist: google-api-python-client>=2.157.0
|
26
|
-
Requires-Dist: google-cloud-aiplatform>=1.87.0
|
27
|
-
Requires-Dist: google-cloud-secret-manager>=2.22.0
|
28
|
-
Requires-Dist: google-cloud-speech>=2.30.0
|
29
|
-
Requires-Dist: google-cloud-storage>=2.18.0, <3.0.0
|
30
|
-
Requires-Dist: google-genai>=1.9.0
|
31
|
-
Requires-Dist: graphviz>=0.20.2
|
32
|
-
Requires-Dist: mcp>=1.5.0;python_version>='3.10'
|
33
|
-
Requires-Dist: opentelemetry-api>=1.31.0
|
34
|
-
Requires-Dist: opentelemetry-exporter-gcp-trace>=1.9.0
|
35
|
-
Requires-Dist: opentelemetry-sdk>=1.31.0
|
36
|
-
Requires-Dist: pydantic>=2.0, <3.0.0
|
37
|
-
Requires-Dist: python-dotenv>=1.0.0
|
38
|
-
Requires-Dist: PyYAML>=6.0.2
|
39
|
-
Requires-Dist: sqlalchemy>=2.0
|
40
|
-
Requires-Dist: tzlocal>=5.3
|
41
|
-
Requires-Dist: uvicorn>=0.34.0
|
42
|
-
Requires-Dist: flit>=3.10.0 ; extra == "dev"
|
43
|
-
Requires-Dist: isort>=6.0.0 ; extra == "dev"
|
44
|
-
Requires-Dist: pyink>=24.10.0 ; extra == "dev"
|
45
|
-
Requires-Dist: pylint>=2.6.0 ; extra == "dev"
|
46
|
-
Requires-Dist: autodoc_pydantic ; extra == "docs"
|
47
|
-
Requires-Dist: furo ; extra == "docs"
|
48
|
-
Requires-Dist: myst-parser ; extra == "docs"
|
49
|
-
Requires-Dist: sphinx ; extra == "docs"
|
50
|
-
Requires-Dist: sphinx-autodoc-typehints ; extra == "docs"
|
51
|
-
Requires-Dist: sphinx-rtd-theme ; extra == "docs"
|
52
|
-
Requires-Dist: google-cloud-aiplatform[evaluation]>=1.87.0 ; extra == "eval"
|
53
|
-
Requires-Dist: pandas>=2.2.3 ; extra == "eval"
|
54
|
-
Requires-Dist: tabulate>=0.9.0 ; extra == "eval"
|
55
|
-
Requires-Dist: anthropic>=0.43.0 ; extra == "extensions"
|
56
|
-
Requires-Dist: beautifulsoup4>=3.2.2 ; extra == "extensions"
|
57
|
-
Requires-Dist: crewai[tools] ; extra == "extensions" and (python_version>='3.10')
|
58
|
-
Requires-Dist: docker>=7.0.0 ; extra == "extensions"
|
59
|
-
Requires-Dist: langgraph>=0.2.60 ; extra == "extensions"
|
60
|
-
Requires-Dist: litellm>=1.63.11 ; extra == "extensions"
|
61
|
-
Requires-Dist: llama-index-readers-file>=0.4.0 ; extra == "extensions"
|
62
|
-
Requires-Dist: lxml>=5.3.0 ; extra == "extensions"
|
63
|
-
Requires-Dist: langchain-community>=0.3.17 ; extra == "test"
|
64
|
-
Requires-Dist: pytest-asyncio>=0.25.0 ; extra == "test"
|
65
|
-
Requires-Dist: pytest-mock>=3.14.0 ; extra == "test"
|
66
|
-
Requires-Dist: pytest-xdist>=3.6.1 ; extra == "test"
|
67
|
-
Requires-Dist: pytest>=8.3.4 ; extra == "test"
|
68
|
-
Provides-Extra: dev
|
69
|
-
Provides-Extra: docs
|
70
|
-
Provides-Extra: eval
|
71
|
-
Provides-Extra: extensions
|
72
|
-
Provides-Extra: test
|
73
|
-
|
74
|
-
hello world
|
75
|
-
|
File without changes
|
File without changes
|
File without changes
|