google-adk 0.0.4__py3-none-any.whl → 0.1.0__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 CHANGED
@@ -82,6 +82,8 @@ async def run_interactively(
82
82
  )
83
83
  while True:
84
84
  query = input('user: ')
85
+ if not query or not query.strip():
86
+ continue
85
87
  if query == 'exit':
86
88
  break
87
89
  async for event in runner.run_async(
@@ -82,7 +82,7 @@ def to_cloud_run(
82
82
  app_name: str,
83
83
  temp_folder: str,
84
84
  port: int,
85
- with_cloud_trace: bool,
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
- with_cloud_trace: Whether to enable Cloud Trace.
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 with_cloud_trace else '',
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
- "--with_cloud_trace",
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
- with_cloud_trace: bool,
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
- with_cloud_trace=with_cloud_trace,
520
+ trace_to_cloud=trace_to_cloud,
521
521
  with_ui=with_ui,
522
522
  )
523
523
  except Exception as e:
@@ -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
- envs.load_dotenv()
147
- enable_cloud_tracing = trace_to_cloud or os.environ.get(
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)
@@ -74,7 +74,7 @@ class BaseLlmFlow(ABC):
74
74
  return
75
75
 
76
76
  llm = self.__get_llm(invocation_context)
77
- logger.info(
77
+ logger.debug(
78
78
  'Establishing live connection for agent: %s with llm request: %s',
79
79
  invocation_context.agent.name,
80
80
  llm_request,
google/adk/version.py CHANGED
@@ -13,4 +13,4 @@
13
13
  # limitations under the License.
14
14
 
15
15
  # version: date+base_cl
16
- __version__ = "0.0.4"
16
+ __version__ = "0.1.0"
@@ -0,0 +1,160 @@
1
+ Metadata-Version: 2.4
2
+ Name: google-adk
3
+ Version: 0.1.0
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
+ An open-source, code-first Python toolkit for building, evaluating, and deploying sophisticated AI agents with flexibility and control.
81
+
82
+ 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.
83
+
84
+ ---
85
+
86
+ ## ✨ Key Features
87
+
88
+ * **Code-First Development:** Define agents, tools, and orchestration logic for maximum control, testability, and versioning.
89
+ * **Multi-Agent Architecture:** Build modular and scalable applications by composing multiple specialized agents in flexible hierarchies.
90
+ * **Rich Tool Ecosystem:** Equip agents with diverse capabilities using pre-built tools, custom Python functions, API specifications, or integrating existing tools.
91
+ * **Flexible Orchestration:** Define workflows using built-in agents for predictable pipelines, or leverage LLM-driven dynamic routing for adaptive behavior.
92
+ * **Integrated Developer Experience:** Develop, test, and debug locally with a CLI and visual web UI.
93
+ * **Built-in Evaluation:** Measure agent performance by evaluating response quality and step-by-step execution trajectory.
94
+ * **Deployment Ready:** Containerize and deploy your agents anywhere – scale with Vertex AI Agent Engine, Cloud Run, or Docker.
95
+ * **Native Streaming Support:** Build real-time, interactive experiences with native support for bidirectional streaming (text and audio).
96
+ * **State, Memory & Artifacts:** Manage short-term conversational context, configure long-term memory, and handle file uploads/downloads.
97
+ * **Extensibility:** Customize agent behavior deeply with callbacks and easily integrate third-party tools and services.
98
+
99
+ ## 🚀 Installation
100
+
101
+ You can install the ADK using `pip`:
102
+
103
+ ```bash
104
+ pip install google-adk
105
+ ```
106
+
107
+ ## 🏁 Getting Started
108
+
109
+ Create your first agent (`my_agent/agent.py`):
110
+
111
+ ```python
112
+ # my_agent/agent.py
113
+ from google.adk.agents import Agent
114
+ from google.adk.tools import google_search
115
+
116
+ root_agent = Agent(
117
+ name="search_assistant",
118
+ model="gemini-2.0-flash-exp", # Or your preferred Gemini model
119
+ instruction="You are a helpful assistant. Answer user questions using Google Search when needed.",
120
+ description="An assistant that can search the web.",
121
+ tools=[google_search]
122
+ )
123
+ ```
124
+
125
+ Create `my_agent/__init__.py`:
126
+
127
+ ```python
128
+ # my_agent/__init__.py
129
+ from . import agent
130
+ ```
131
+
132
+ Run it via the CLI (from the directory *containing* `my_agent`):
133
+
134
+ ```bash
135
+ adk run my_agent
136
+ ```
137
+
138
+ Or launch the Web UI from the folder that contains `my_agent` folder:
139
+
140
+ ```bash
141
+ adk web
142
+ ```
143
+
144
+ 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).
145
+
146
+ ## 📚 Resources
147
+
148
+ Explore the full documentation for detailed guides on building, evaluating, and deploying agents:
149
+
150
+ * **[Get Started](https://google.github.io/adk-docs/get-started/)**
151
+ * **[Browse Sample Agents](https://github.com/google/adk-samples)**
152
+ * **[Evaluate Agents](https://google.github.io/adk-docs/guides/evaluate-agents/)**
153
+ * **[Deploy Agents](https://google.github.io/adk-docs/deploy/)**
154
+ * **[API Reference](https://google.github.io/adk-docs/api-reference/)**
155
+ * **[Troubleshooting](https://google.github.io/adk-docs/guides/troubleshooting/)**
156
+
157
+ ---
158
+
159
+ *Happy Agent Building!*
160
+
@@ -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=xnURRlgFpF4S_bFlteCOVwTSfdNg1DMZ9S2tOMvbYiM,621
4
+ google/adk/version.py,sha256=3qqGXeCwoRUUnqlZN5HhLRK3BT7JmyO2i8sFWfmi6yo,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,14 +30,14 @@ 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=uVWDcVSggD0otDq7OBbOer6EelwmOlpOU2gq8xH9awI,5768
34
- google/adk/cli/cli_deploy.py,sha256=zVo3FlyoMPiboDQ-Y6TdE7ryIDKs10xNP8Q-yxXxxHM,5017
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=Lb3RdGBghm5DJE9AhuJTVxY6p3Sg9bAtjFYz6cvauAQ,14097
37
- google/adk/cli/fast_api.py,sha256=b171jDFYBYO4k_Lgbudgkd2fsVeK8TLNdYC-p8R0uEc,25684
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
- google/adk/cli/browser/index.html,sha256=x_JwOveRkv76Lp_FuU4Ag0FPG2Rs8mnpcFDNuRtH22Q,18483
40
- google/adk/cli/browser/main-CU22TRPI.js,sha256=zVtLdKTdG3fNPUff_WPEFtT5ZUDe8MzV6PsI3mZaYRc,2440508
39
+ google/adk/cli/browser/index.html,sha256=ondMDNXv_f4dZl34BPUByheEP3FX2o9W1VDCBfv-OeA,18483
40
+ google/adk/cli/browser/main-SLIAU2JL.js,sha256=ANN6KoZRskSPgQbXPCpEdyGVufZ6eYUBsH4u_DgMTFg,2441406
41
41
  google/adk/cli/browser/polyfills-FFHMD2TL.js,sha256=6tcwOogi31Djphkq1hP2H5TxfN1MBg3P4YYrxHNdH5M,35115
42
42
  google/adk/cli/browser/styles-4VDSPQ37.css,sha256=QF3xmtXMt44nFiCh0aKnvQwQiZptr3sW1u9bzltukAI,5522
43
43
  google/adk/cli/browser/assets/audio-processor.js,sha256=BTYefpDeOz7VQveAoC_WFleLY9JkJs_FuGS0oQiadIA,1769
@@ -75,7 +75,7 @@ google/adk/flows/llm_flows/_nl_planning.py,sha256=4F7bDQXLSMLsTR1FZ0LUs6ddE8XSCr
75
75
  google/adk/flows/llm_flows/agent_transfer.py,sha256=GsLWu-I1D6tATf9E0l9fBq8HE0iFKu0Z2X_n0B6k_sE,3901
76
76
  google/adk/flows/llm_flows/audio_transcriber.py,sha256=uEa6727OIHaiShvT3w4S8bDz-QnZWHdNsDDwyXHzW7I,3483
77
77
  google/adk/flows/llm_flows/auto_flow.py,sha256=CnuFelyZhB_ns4U_5_dW0x_KQlzu02My7qWcB4XBCYY,1714
78
- google/adk/flows/llm_flows/base_llm_flow.py,sha256=2IkEj_s-UFr_SwL0kG8J02GlWx5GSYR9G419yCLNuCc,19350
78
+ google/adk/flows/llm_flows/base_llm_flow.py,sha256=Uk-Vc0BTPJO1b5LZO0ogJ-j9EyOAzESwu6ouTNUxaFg,19351
79
79
  google/adk/flows/llm_flows/basic.py,sha256=79DM3qVOspJn2bHWMPptWDJRuFQxdX7ZYM1h-V8X9QQ,2344
80
80
  google/adk/flows/llm_flows/contents.py,sha256=zl9YZ2pa8AdJCl_KsuER8V12TTrCBwbuQRMkgvsQoLo,12879
81
81
  google/adk/flows/llm_flows/functions.py,sha256=itOKNKDsmtJb614cHy67uKlyFUcqvpLsv7YFz67cGXQ,15970
@@ -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.0.4.dist-info/entry_points.txt,sha256=zL9CU-6V2yQ2oc5lrcyj55ROHrpiIePsvQJ4H6SL-zI,43
172
- google_adk-0.0.4.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
173
- google_adk-0.0.4.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
174
- google_adk-0.0.4.dist-info/METADATA,sha256=aLel2HjtmjjljG0UQO1UOydDEAi44WElhcT_4mCtHZk,3153
175
- google_adk-0.0.4.dist-info/RECORD,,
171
+ google_adk-0.1.0.dist-info/entry_points.txt,sha256=zL9CU-6V2yQ2oc5lrcyj55ROHrpiIePsvQJ4H6SL-zI,43
172
+ google_adk-0.1.0.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
173
+ google_adk-0.1.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
174
+ google_adk-0.1.0.dist-info/METADATA,sha256=-ogL8ev3ABOB2JUVDLsuvf6biALa7dIoBnUEG0Lqc0c,6987
175
+ google_adk-0.1.0.dist-info/RECORD,,
@@ -1,75 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: google-adk
3
- Version: 0.0.4
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
-