c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python 0.1.0a4__py3-none-any.whl → 0.1.0a6__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.
- {c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info → c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a6.dist-info}/METADATA +41 -16
- c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a6.dist-info/RECORD +230 -0
- gradientai/_client.py +73 -71
- gradientai/_version.py +1 -1
- gradientai/resources/__init__.py +14 -28
- gradientai/resources/agents/__init__.py +69 -13
- gradientai/resources/agents/agents.py +148 -20
- gradientai/resources/{regions → agents}/evaluation_datasets.py +3 -3
- gradientai/resources/agents/evaluation_metrics/__init__.py +33 -0
- gradientai/resources/agents/evaluation_metrics/evaluation_metrics.py +177 -0
- gradientai/resources/agents/evaluation_metrics/workspaces/__init__.py +33 -0
- gradientai/resources/agents/evaluation_metrics/workspaces/agents.py +324 -0
- gradientai/resources/agents/evaluation_metrics/workspaces/workspaces.py +654 -0
- gradientai/resources/{regions/evaluation_runs → agents}/evaluation_runs.py +197 -47
- gradientai/resources/{regions → agents}/evaluation_test_cases.py +30 -9
- gradientai/resources/agents/{child_agents.py → routes.py} +64 -64
- gradientai/resources/chat/completions.py +20 -2
- gradientai/resources/inference/__init__.py +0 -14
- gradientai/resources/inference/inference.py +0 -32
- gradientai/resources/knowledge_bases/__init__.py +14 -0
- gradientai/resources/{indexing_jobs.py → knowledge_bases/indexing_jobs.py} +16 -12
- gradientai/resources/knowledge_bases/knowledge_bases.py +32 -0
- gradientai/resources/{providers → model_providers}/__init__.py +13 -13
- gradientai/resources/{providers → model_providers}/anthropic/keys.py +12 -7
- gradientai/resources/{providers/providers.py → model_providers/model_providers.py} +31 -31
- gradientai/resources/{providers → model_providers}/openai/keys.py +12 -7
- gradientai/resources/models.py +77 -105
- gradientai/resources/regions.py +195 -0
- gradientai/types/__init__.py +2 -17
- gradientai/types/agent_list_response.py +2 -2
- gradientai/types/agents/__init__.py +44 -8
- gradientai/types/{api_evaluation_metric.py → agents/api_evaluation_metric.py} +1 -1
- gradientai/types/{regions/evaluation_runs → agents}/api_evaluation_metric_result.py +1 -1
- gradientai/types/{regions/evaluation_runs/api_prompt.py → agents/api_evaluation_prompt.py} +3 -3
- gradientai/types/{regions/evaluation_runs → agents}/api_evaluation_run.py +13 -1
- gradientai/types/{regions → agents}/api_evaluation_test_case.py +1 -1
- gradientai/types/agents/api_key_list_response.py +2 -2
- gradientai/types/{region_list_evaluation_metrics_response.py → agents/evaluation_metric_list_response.py} +3 -3
- gradientai/types/agents/evaluation_metrics/__init__.py +14 -0
- gradientai/types/agents/evaluation_metrics/workspace_create_params.py +16 -0
- gradientai/types/agents/evaluation_metrics/workspace_create_response.py +16 -0
- gradientai/types/agents/evaluation_metrics/workspace_delete_response.py +11 -0
- gradientai/types/agents/evaluation_metrics/workspace_list_evaluation_test_cases_response.py +12 -0
- gradientai/types/agents/evaluation_metrics/workspace_list_response.py +16 -0
- gradientai/types/agents/evaluation_metrics/workspace_retrieve_response.py +16 -0
- gradientai/types/agents/evaluation_metrics/workspace_update_params.py +18 -0
- gradientai/types/agents/evaluation_metrics/workspace_update_response.py +16 -0
- gradientai/types/agents/evaluation_metrics/workspaces/__init__.py +8 -0
- gradientai/types/agents/evaluation_metrics/workspaces/agent_list_params.py +26 -0
- gradientai/types/agents/evaluation_metrics/workspaces/agent_list_response.py +22 -0
- gradientai/types/agents/evaluation_metrics/workspaces/agent_move_params.py +16 -0
- gradientai/types/agents/evaluation_metrics/workspaces/agent_move_response.py +16 -0
- gradientai/types/{regions → agents}/evaluation_run_create_params.py +3 -2
- gradientai/types/{regions → agents}/evaluation_run_create_response.py +2 -2
- gradientai/types/{regions/evaluation_runs/result_retrieve_response.py → agents/evaluation_run_list_results_response.py} +5 -5
- gradientai/types/{regions → agents}/evaluation_run_retrieve_response.py +1 -1
- gradientai/types/agents/evaluation_run_retrieve_results_response.py +12 -0
- gradientai/types/{regions → agents}/evaluation_test_case_list_evaluation_runs_response.py +1 -1
- gradientai/types/agents/evaluation_test_case_retrieve_params.py +12 -0
- gradientai/types/agents/{child_agent_add_params.py → route_add_params.py} +2 -2
- gradientai/types/agents/{child_agent_add_response.py → route_add_response.py} +2 -2
- gradientai/types/agents/{child_agent_delete_response.py → route_delete_response.py} +2 -2
- gradientai/types/agents/{child_agent_update_params.py → route_update_params.py} +2 -2
- gradientai/types/agents/{child_agent_update_response.py → route_update_response.py} +2 -2
- gradientai/types/agents/{child_agent_view_response.py → route_view_response.py} +2 -2
- gradientai/types/agents/version_list_response.py +2 -2
- gradientai/types/api_knowledge_base.py +1 -1
- gradientai/types/api_workspace.py +1 -1
- gradientai/types/inference/__init__.py +0 -2
- gradientai/types/inference/api_key_list_response.py +2 -2
- gradientai/types/knowledge_base_list_response.py +2 -2
- gradientai/types/knowledge_bases/__init__.py +12 -0
- gradientai/types/{indexing_job_retrieve_data_sources_response.py → knowledge_bases/api_indexed_data_source.py} +4 -8
- gradientai/types/{api_indexing_job.py → knowledge_bases/api_indexing_job.py} +13 -1
- gradientai/types/knowledge_bases/api_knowledge_base_data_source.py +4 -1
- gradientai/types/knowledge_bases/data_source_list_response.py +2 -2
- gradientai/types/{indexing_job_create_response.py → knowledge_bases/indexing_job_create_response.py} +1 -1
- gradientai/types/{indexing_job_list_response.py → knowledge_bases/indexing_job_list_response.py} +3 -3
- gradientai/types/knowledge_bases/indexing_job_retrieve_data_sources_response.py +12 -0
- gradientai/types/{indexing_job_retrieve_response.py → knowledge_bases/indexing_job_retrieve_response.py} +1 -1
- gradientai/types/{indexing_job_update_cancel_params.py → knowledge_bases/indexing_job_update_cancel_params.py} +1 -1
- gradientai/types/{indexing_job_update_cancel_response.py → knowledge_bases/indexing_job_update_cancel_response.py} +1 -1
- gradientai/types/{inference/model.py → model.py} +1 -1
- gradientai/types/model_list_response.py +5 -8
- gradientai/types/{providers → model_providers}/anthropic/key_list_agents_response.py +2 -2
- gradientai/types/{providers → model_providers}/anthropic/key_list_response.py +2 -2
- gradientai/types/{providers → model_providers}/openai/key_list_response.py +2 -2
- gradientai/types/{providers → model_providers}/openai/key_retrieve_agents_response.py +2 -2
- gradientai/types/shared/__init__.py +4 -0
- c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info/RECORD +0 -217
- gradientai/resources/inference/models.py +0 -226
- gradientai/resources/regions/__init__.py +0 -61
- gradientai/resources/regions/evaluation_runs/__init__.py +0 -33
- gradientai/resources/regions/evaluation_runs/results.py +0 -264
- gradientai/resources/regions/regions.py +0 -352
- gradientai/types/api_model.py +0 -32
- gradientai/types/inference/model_list_response.py +0 -15
- gradientai/types/model_list_params.py +0 -42
- gradientai/types/regions/__init__.py +0 -32
- gradientai/types/regions/evaluation_runs/__init__.py +0 -9
- gradientai/types/regions/evaluation_runs/result_retrieve_prompt_response.py +0 -12
- {c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info → c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a6.dist-info}/WHEEL +0 -0
- {c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info → c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a6.dist-info}/licenses/LICENSE +0 -0
- /gradientai/resources/{providers → model_providers}/anthropic/__init__.py +0 -0
- /gradientai/resources/{providers → model_providers}/anthropic/anthropic.py +0 -0
- /gradientai/resources/{providers → model_providers}/openai/__init__.py +0 -0
- /gradientai/resources/{providers → model_providers}/openai/openai.py +0 -0
- /gradientai/types/{regions → agents}/api_star_metric.py +0 -0
- /gradientai/types/{regions → agents}/api_star_metric_param.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_dataset_create_file_upload_presigned_urls_params.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_dataset_create_file_upload_presigned_urls_response.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_dataset_create_params.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_dataset_create_response.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_test_case_create_params.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_test_case_create_response.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_test_case_list_evaluation_runs_params.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_test_case_list_response.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_test_case_retrieve_response.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_test_case_update_params.py +0 -0
- /gradientai/types/{regions → agents}/evaluation_test_case_update_response.py +0 -0
- /gradientai/types/{indexing_job_create_params.py → knowledge_bases/indexing_job_create_params.py} +0 -0
- /gradientai/types/{indexing_job_list_params.py → knowledge_bases/indexing_job_list_params.py} +0 -0
- /gradientai/types/{providers → model_providers}/__init__.py +0 -0
- /gradientai/types/{providers → model_providers}/anthropic/__init__.py +0 -0
- /gradientai/types/{providers → model_providers}/anthropic/key_create_params.py +0 -0
- /gradientai/types/{providers → model_providers}/anthropic/key_create_response.py +0 -0
- /gradientai/types/{providers → model_providers}/anthropic/key_delete_response.py +0 -0
- /gradientai/types/{providers → model_providers}/anthropic/key_list_agents_params.py +0 -0
- /gradientai/types/{providers → model_providers}/anthropic/key_list_params.py +0 -0
- /gradientai/types/{providers → model_providers}/anthropic/key_retrieve_response.py +0 -0
- /gradientai/types/{providers → model_providers}/anthropic/key_update_params.py +0 -0
- /gradientai/types/{providers → model_providers}/anthropic/key_update_response.py +0 -0
- /gradientai/types/{providers → model_providers}/openai/__init__.py +0 -0
- /gradientai/types/{providers → model_providers}/openai/key_create_params.py +0 -0
- /gradientai/types/{providers → model_providers}/openai/key_create_response.py +0 -0
- /gradientai/types/{providers → model_providers}/openai/key_delete_response.py +0 -0
- /gradientai/types/{providers → model_providers}/openai/key_list_params.py +0 -0
- /gradientai/types/{providers → model_providers}/openai/key_retrieve_agents_params.py +0 -0
- /gradientai/types/{providers → model_providers}/openai/key_retrieve_response.py +0 -0
- /gradientai/types/{providers → model_providers}/openai/key_update_params.py +0 -0
- /gradientai/types/{providers → model_providers}/openai/key_update_response.py +0 -0
- /gradientai/types/{agents → shared}/api_links.py +0 -0
- /gradientai/types/{agents → shared}/api_meta.py +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
|
3
|
-
Version: 0.1.
|
4
|
-
Summary: The official Python library for
|
3
|
+
Version: 0.1.0a6
|
4
|
+
Summary: The official Python library for GradientAI
|
5
5
|
Project-URL: Homepage, https://github.com/digitalocean/gradientai-python
|
6
6
|
Project-URL: Repository, https://github.com/digitalocean/gradientai-python
|
7
7
|
Author: Gradient AI
|
@@ -32,11 +32,11 @@ Requires-Dist: aiohttp; extra == 'aiohttp'
|
|
32
32
|
Requires-Dist: httpx-aiohttp>=0.1.6; extra == 'aiohttp'
|
33
33
|
Description-Content-Type: text/markdown
|
34
34
|
|
35
|
-
#
|
35
|
+
# GradientAI Python API library
|
36
36
|
|
37
37
|
[>)](https://pypi.org/project/c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python/)
|
38
38
|
|
39
|
-
The
|
39
|
+
The GradientAI Python library provides convenient access to the GradientAI REST API from any Python 3.8+
|
40
40
|
application. The library includes type definitions for all request params and response fields,
|
41
41
|
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
|
42
42
|
|
@@ -65,10 +65,16 @@ client = GradientAI(
|
|
65
65
|
api_key=os.environ.get("GRADIENTAI_API_KEY"), # This is the default and can be omitted
|
66
66
|
)
|
67
67
|
|
68
|
-
|
69
|
-
|
68
|
+
completion = client.chat.completions.create(
|
69
|
+
messages=[
|
70
|
+
{
|
71
|
+
"content": "string",
|
72
|
+
"role": "system",
|
73
|
+
}
|
74
|
+
],
|
75
|
+
model="llama3-8b-instruct",
|
70
76
|
)
|
71
|
-
print(
|
77
|
+
print(completion.id)
|
72
78
|
```
|
73
79
|
|
74
80
|
While you can provide an `api_key` keyword argument,
|
@@ -91,10 +97,16 @@ client = AsyncGradientAI(
|
|
91
97
|
|
92
98
|
|
93
99
|
async def main() -> None:
|
94
|
-
|
95
|
-
|
100
|
+
completion = await client.chat.completions.create(
|
101
|
+
messages=[
|
102
|
+
{
|
103
|
+
"content": "string",
|
104
|
+
"role": "system",
|
105
|
+
}
|
106
|
+
],
|
107
|
+
model="llama3-8b-instruct",
|
96
108
|
)
|
97
|
-
print(
|
109
|
+
print(completion.id)
|
98
110
|
|
99
111
|
|
100
112
|
asyncio.run(main())
|
@@ -127,10 +139,16 @@ async def main() -> None:
|
|
127
139
|
api_key=os.environ.get("GRADIENTAI_API_KEY"), # This is the default and can be omitted
|
128
140
|
http_client=DefaultAioHttpClient(),
|
129
141
|
) as client:
|
130
|
-
|
131
|
-
|
142
|
+
completion = await client.chat.completions.create(
|
143
|
+
messages=[
|
144
|
+
{
|
145
|
+
"content": "string",
|
146
|
+
"role": "system",
|
147
|
+
}
|
148
|
+
],
|
149
|
+
model="llama3-8b-instruct",
|
132
150
|
)
|
133
|
-
print(
|
151
|
+
print(completion.id)
|
134
152
|
|
135
153
|
|
136
154
|
asyncio.run(main())
|
@@ -154,10 +172,17 @@ from gradientai import GradientAI
|
|
154
172
|
|
155
173
|
client = GradientAI()
|
156
174
|
|
157
|
-
|
158
|
-
|
175
|
+
completion = client.chat.completions.create(
|
176
|
+
messages=[
|
177
|
+
{
|
178
|
+
"content": "string",
|
179
|
+
"role": "system",
|
180
|
+
}
|
181
|
+
],
|
182
|
+
model="llama3-8b-instruct",
|
183
|
+
stream_options={},
|
159
184
|
)
|
160
|
-
print(
|
185
|
+
print(completion.stream_options)
|
161
186
|
```
|
162
187
|
|
163
188
|
## Handling errors
|
@@ -0,0 +1,230 @@
|
|
1
|
+
gradientai/__init__.py,sha256=yqy3yZnX0JVUS-H01MAvroChzqS67Qf072OrPfNckjI,2655
|
2
|
+
gradientai/_base_client.py,sha256=TADFnPHK7WpsNuJUY76SxMFf2IVoOdz_tlloQEXkutk,66719
|
3
|
+
gradientai/_client.py,sha256=fVSjsof_G2ocWJyWlghrJYbpHg_z8gbJDOISRrsAvUY,26908
|
4
|
+
gradientai/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
5
|
+
gradientai/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
6
|
+
gradientai/_exceptions.py,sha256=o1GvaW36c7_LMj5WasVKUBOpae8tzETBJsfbVphb3Vk,3228
|
7
|
+
gradientai/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
|
8
|
+
gradientai/_models.py,sha256=G1vczEodX0vUySeVKbF-mbzlaObNL1oVAYH4c65agRk,29131
|
9
|
+
gradientai/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
10
|
+
gradientai/_resource.py,sha256=4NZbH2h8dQ-t-DQPida4VANJ_oZJNA7qxV84mwJT8oM,1124
|
11
|
+
gradientai/_response.py,sha256=RhlDdupxTcKNyDDj045MZD3-a_lsEc3yjiOzxWg0cDc,28842
|
12
|
+
gradientai/_streaming.py,sha256=AWqY4cmmmTplZperXnkkMkeQ11gmpqYbt6TIXByqCv8,10116
|
13
|
+
gradientai/_types.py,sha256=22gBoIuoGJ1R6l5nPwquWCRzJodKhO-3e7k22-h37JQ,6201
|
14
|
+
gradientai/_version.py,sha256=6DEgmFh2VPj98nJ2tVgNYDCU5i68Lf33js_QO9Ry45c,170
|
15
|
+
gradientai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
+
gradientai/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
17
|
+
gradientai/_utils/_logs.py,sha256=1QuZcxzSKHcqNFbPoz_pvfLD5eDfOMBzGMyanAm_2gw,787
|
18
|
+
gradientai/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
19
|
+
gradientai/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
20
|
+
gradientai/_utils/_resources_proxy.py,sha256=NDJuLXxRGC4t6-ySSK6WI-uyqJzx3Z-doQRGfCkuP3w,609
|
21
|
+
gradientai/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
22
|
+
gradientai/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
23
|
+
gradientai/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
|
24
|
+
gradientai/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
|
25
|
+
gradientai/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
26
|
+
gradientai/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
27
|
+
gradientai/resources/__init__.py,sha256=Sej63-wOANl_4F78LH6m2Zx2Qu_-wGPHirIiq_20gwk,3488
|
28
|
+
gradientai/resources/models.py,sha256=QgmB03fBAdteKRmdTvwLnBcWYzvvaWnU6wtv8ZTE4vw,8597
|
29
|
+
gradientai/resources/regions.py,sha256=c4KX_qFTu83Svil1CO8CP4XdkEIfNQD3zwU_E6w734A,7172
|
30
|
+
gradientai/resources/agents/__init__.py,sha256=Rysev19rr3O3IVlHCvKUac0VwMV2xcByK5jpXPiFaVk,5363
|
31
|
+
gradientai/resources/agents/agents.py,sha256=be3ucbfRa3gVya1iP8xzzUUMs77Y-UiUYSb8WuN3BFE,45161
|
32
|
+
gradientai/resources/agents/api_keys.py,sha256=1Uh77vhUD0WYUkvX0RD4VcLCOWFG6vL6Lz1EQRDx-t4,24632
|
33
|
+
gradientai/resources/agents/evaluation_datasets.py,sha256=mhs9lTIIZHfUFgN93jBdJYQZ0iGHQwN_EQlTFk2IiDU,12594
|
34
|
+
gradientai/resources/agents/evaluation_runs.py,sha256=LDaEWVWUjrPcLMqQ6TQldzoc1a1ydz2rzpAcP1KNpxI,19483
|
35
|
+
gradientai/resources/agents/evaluation_test_cases.py,sha256=F7nTpn6cKhUkC7wy8DAr4Lm7G9I1cVX6goBaOUR4Pow,27342
|
36
|
+
gradientai/resources/agents/functions.py,sha256=ZAOelsCnOl8lRuF5RpZDVGMN-E0yTG4Vo3hA-wv5Ldg,18492
|
37
|
+
gradientai/resources/agents/knowledge_bases.py,sha256=rFIrqsT7nXFJ_Sy4OWpUc8QmBGKSN_PhYpFpWvYHTfg,15191
|
38
|
+
gradientai/resources/agents/routes.py,sha256=pDoK5hUgluhz5awJ9FR_krF8DIbkRzLX__MTYYQa2bA,21957
|
39
|
+
gradientai/resources/agents/versions.py,sha256=hmHDaawFkpqoUEYI4Vi5jckH3mamkPKupXO3cZccyKE,11546
|
40
|
+
gradientai/resources/agents/evaluation_metrics/__init__.py,sha256=qUCsT_vI2TrZrUBPe8h-VMNBE4ytcoe0RXshDctV0g0,1198
|
41
|
+
gradientai/resources/agents/evaluation_metrics/evaluation_metrics.py,sha256=BueqcWT0lqbElo-lgntkr1s7J0-qi2KqEZV2qzc7dcI,7089
|
42
|
+
gradientai/resources/agents/evaluation_metrics/workspaces/__init__.py,sha256=Zf3wa7WSVOKyG1x9Fppny38_ewQCbdghxbptqGFVfOM,1054
|
43
|
+
gradientai/resources/agents/evaluation_metrics/workspaces/agents.py,sha256=AVgDNRVJI07ERA_cRFY8KeUZZjPBLHv6GK2jPhu4Jt0,12553
|
44
|
+
gradientai/resources/agents/evaluation_metrics/workspaces/workspaces.py,sha256=iSQS3IW5xjOX5EsyJraoS5enwzrBARUhm6Xl1EgiICE,27079
|
45
|
+
gradientai/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
|
46
|
+
gradientai/resources/chat/chat.py,sha256=ANOEzzDATXj-onkkdtvVad9O-Dfwe7Uza7yfA_3bU4U,3696
|
47
|
+
gradientai/resources/chat/completions.py,sha256=KWtB8ro2ClciI4NhbXzgXL-bIE7fcInDdGR7EElA5nU,19108
|
48
|
+
gradientai/resources/inference/__init__.py,sha256=5Yk9bdOpUJPTero0_CvA-GJvcU5_gVlN1jf5r2GGGPY,1055
|
49
|
+
gradientai/resources/inference/api_keys.py,sha256=xgWTFTp8IVRkw2nvXnfjBZPOTJyLUDIKlE7fSmb1y2I,22021
|
50
|
+
gradientai/resources/inference/inference.py,sha256=jBimuBx3kKsuwC3pgy-PPrWg1TryO_a108CC_xLS2-Y,3771
|
51
|
+
gradientai/resources/knowledge_bases/__init__.py,sha256=lTQb-5YWsLKoXrPaxO6opzsGXpXZybuowe1kgFGDTcA,1702
|
52
|
+
gradientai/resources/knowledge_bases/data_sources.py,sha256=uSX40BBVrjnEpa3DATR2XH76gmJANG-oFnMe5N8MTis,17889
|
53
|
+
gradientai/resources/knowledge_bases/indexing_jobs.py,sha256=01xbt4UNTla51cUD5tLeUIT3cH87GoP3VKK-Mv-rEaY,23185
|
54
|
+
gradientai/resources/knowledge_bases/knowledge_bases.py,sha256=ZEIAfLoIlfgzY19xyinKZRlp-ZNjfbr8X3nDbtKsfP0,29461
|
55
|
+
gradientai/resources/model_providers/__init__.py,sha256=JuYymuWt40b6uJfYZpKGT9Ym1kmhO7Et8rnte6YNGJE,1596
|
56
|
+
gradientai/resources/model_providers/model_providers.py,sha256=XYhPTpba1nMnVNd2pRajekeQEvG2OPCVuxOkkRFIc2E,5136
|
57
|
+
gradientai/resources/model_providers/anthropic/__init__.py,sha256=07ZXCxoPjF79SZEYuffvDn-WcVsSjhNZm7HBMb_6pYI,1015
|
58
|
+
gradientai/resources/model_providers/anthropic/anthropic.py,sha256=F056ue6d1WI8amKsarHh-Sfe_E3DRgxlEZOUL5S5JkU,3675
|
59
|
+
gradientai/resources/model_providers/anthropic/keys.py,sha256=WyRqOn51jfb3Iuu8mlhghBuX1uYyd0rga3-3owc3NLA,26495
|
60
|
+
gradientai/resources/model_providers/openai/__init__.py,sha256=77LFIe5ko8imMJR7pkAn3E9r4rzw7j2fF9ZSpBaLZyo,976
|
61
|
+
gradientai/resources/model_providers/openai/keys.py,sha256=HAwxE3WVrBLPZnn799iHL9LRzMWTCdldZ5-PNeWhQrs,26388
|
62
|
+
gradientai/resources/model_providers/openai/openai.py,sha256=MfV9fB4EJVa6RYIfVS2QJW_BSkShLKCscDuxDV8wCBE,3567
|
63
|
+
gradientai/types/__init__.py,sha256=95EVUFJ_xrIP7K7ewBh2MeDPRrmhwGedv0rQ2GkTkv4,2784
|
64
|
+
gradientai/types/agent_create_params.py,sha256=nvLpM8V64762cwAn7ggyvbSzQ0mgjwOopOUZ_bVL1-I,912
|
65
|
+
gradientai/types/agent_create_response.py,sha256=frBMp76xLUzznVzWP70fb49drn3r3-2l4kX1xpQrNmg,332
|
66
|
+
gradientai/types/agent_delete_response.py,sha256=_1ciIOuRDvbeuaBvbCOpLV7QF6TufMX5MXNsBZv6H4s,332
|
67
|
+
gradientai/types/agent_list_params.py,sha256=RC6oo07xNp6vfHRLvwS5wRrM6yjpEUf7Q0RNyc3lUQM,396
|
68
|
+
gradientai/types/agent_list_response.py,sha256=WrK6dBVB0D36kaMqxG-UO6Xh9T0eyjvkgrLr6Ndg5AQ,4873
|
69
|
+
gradientai/types/agent_retrieve_response.py,sha256=y7F3MascI1aBoVkPORghe_CQHstUXBVF4oMJcjDByMk,336
|
70
|
+
gradientai/types/agent_update_params.py,sha256=aIuFbZmb0fBXvGFnjL4nWobXgwfVUe1IEiMqYzYPAJ8,1771
|
71
|
+
gradientai/types/agent_update_response.py,sha256=tLXl32VqNHwi8oW9A9jRKMFcGjXR1edflnr7ermyspQ,332
|
72
|
+
gradientai/types/agent_update_status_params.py,sha256=rK-txkmPGkR4cChMVJ0_t5fy3XZWBPlTP2eEykPST0w,467
|
73
|
+
gradientai/types/agent_update_status_response.py,sha256=pbl3IO_hNYlVh3cFmXQccUZKSJe97pC-LFS-QZ5Ab2U,344
|
74
|
+
gradientai/types/api_agent.py,sha256=dUGm4_bD_R7OQ_fSvQWZU6fSUVIMhFUAfnzUIfmZ2W0,6017
|
75
|
+
gradientai/types/api_agent_api_key_info.py,sha256=fXqCbC6UVQg3X15WhGFoDn1g0x6IJ9ec5uK3siAnmE0,476
|
76
|
+
gradientai/types/api_agent_model.py,sha256=GHX8w9IBBOsYnIFv8E0SF_vOWvETAG8kkrYqvz8S59g,1435
|
77
|
+
gradientai/types/api_agreement.py,sha256=hMeoGBF2HySVHDm4dFTyamq19BexwhezL6Y1e_R1uFk,342
|
78
|
+
gradientai/types/api_anthropic_api_key_info.py,sha256=Ii_1zvwZselJjf9XwUGDFWq-fT7VlgC_l-cfXQfpc-s,489
|
79
|
+
gradientai/types/api_deployment_visibility.py,sha256=WT2fj4lgBorEOB9EirE50Xn0-J56a5v1zXuNpKCrzf0,340
|
80
|
+
gradientai/types/api_knowledge_base.py,sha256=LoZAFXubzOBaV3edIYCr8-N7cwwf4BEyzKudw1hQjZQ,839
|
81
|
+
gradientai/types/api_model_version.py,sha256=heTuejUUfP0GVFThpYEhwPqBc331hrMBGF_8Uq2qcME,313
|
82
|
+
gradientai/types/api_openai_api_key_info.py,sha256=_vfDX_fAIwHB1BXqNk7dUeA7meSU5GVTLbdDblSK5rY,582
|
83
|
+
gradientai/types/api_retrieval_method.py,sha256=hbD5272cHgAqDCwPv7tqIUlqNnDAOIjkwDUTciglitE,377
|
84
|
+
gradientai/types/api_workspace.py,sha256=rR9yxetW9xzia9DGFWqH36wPfOIv1aOomB0ScxTDWxo,815
|
85
|
+
gradientai/types/knowledge_base_create_params.py,sha256=qr9msSag-RTna-wcjDeGJ4xMi7vhnXbtGOub4b3nhME,2076
|
86
|
+
gradientai/types/knowledge_base_create_response.py,sha256=bpVpd6X2_OfBZMQPdvkFXQb6YfHTPsXw3F1RpX4Vaso,342
|
87
|
+
gradientai/types/knowledge_base_delete_response.py,sha256=Qwzyk1akgmNrjfYmtm53onng5UtFSXYxLzHKQNSuW6A,270
|
88
|
+
gradientai/types/knowledge_base_list_params.py,sha256=ix0uGYXNXrRhZNRFtun3sLhE6Hd_yoSlgzvGyPqT0XY,341
|
89
|
+
gradientai/types/knowledge_base_list_response.py,sha256=z8mUZAd328EEvs_3YnHZVcbT6lUsHEVzRiFPHIW2Rpw,501
|
90
|
+
gradientai/types/knowledge_base_retrieve_response.py,sha256=zwsKaL1KEfgFbglBriT4XorDz6PUwmvgkIrnD0mzWpI,758
|
91
|
+
gradientai/types/knowledge_base_update_params.py,sha256=8TRWSRY6c1tRTKPwBNkjwdw_1FbJ1Jmy7vX3covlj64,681
|
92
|
+
gradientai/types/knowledge_base_update_response.py,sha256=hNxnfwd-eyRIAuy7KxcQfG-dEK3TZITMYmAv7VH7AyE,342
|
93
|
+
gradientai/types/model.py,sha256=DMw8KwQx8B6S6sAI038D0xdzkmYdY5-r0oMhCUG4l6w,532
|
94
|
+
gradientai/types/model_list_response.py,sha256=fUKK6I7am-Sx4cnC7nC3mHEhOKZXbkTRHLzxiApK3pA,329
|
95
|
+
gradientai/types/region_list_params.py,sha256=_oeMCCqhoSpB4rb3BvQw97w-Zo6eblgye3iuIoTjMHs,418
|
96
|
+
gradientai/types/region_list_response.py,sha256=JyPfcqxMTafktlkuq5S2Vog77rMQ1RJ6_3cCa-gi0yA,515
|
97
|
+
gradientai/types/agents/__init__.py,sha256=h0Uk85a9xEa8HmelfaLVLHmB82wRmIZxj4eVXO4GR28,5117
|
98
|
+
gradientai/types/agents/api_evaluation_metric.py,sha256=T0CTm5p9uHPQkjbBN8UkD9w44B6sQr_otOxVP91csW0,673
|
99
|
+
gradientai/types/agents/api_evaluation_metric_result.py,sha256=we8AdZV1pi3ivzJDkT3kx3z8AkqQ6MeRdHiUwx_IOPs,450
|
100
|
+
gradientai/types/agents/api_evaluation_prompt.py,sha256=anx9cyrOsVh22jhKPIa7n_nzZu9_m3_C64b5RgefDt0,1218
|
101
|
+
gradientai/types/agents/api_evaluation_run.py,sha256=iGxojNe5Gsb6oIjsZHYUTtoC1kRmJSTWySL_YKfGbHY,1862
|
102
|
+
gradientai/types/agents/api_evaluation_test_case.py,sha256=tT2OZLJMSC3D5ZrfQff7smvYbF612EOKiA_ID3tHxkQ,1110
|
103
|
+
gradientai/types/agents/api_key_create_params.py,sha256=nbdADmTDS1_MbQZYsGTPkmpHvWQV7s6R815uSBJO3KA,381
|
104
|
+
gradientai/types/agents/api_key_create_response.py,sha256=3GURkoTxf4JQ3vegYIN5Ph68jz82k2UG6yKbLIN8Xqk,336
|
105
|
+
gradientai/types/agents/api_key_delete_response.py,sha256=jDUrMgujEeW-Y-KqvoG28IGZSgPOOZ2XjuVIIo2lVrU,336
|
106
|
+
gradientai/types/agents/api_key_list_params.py,sha256=2bqdW2M_aw0ae7qY-zDgnxa96gun0V9Wzv2hwISss-8,327
|
107
|
+
gradientai/types/agents/api_key_list_response.py,sha256=RyTrL6RU6AaK6rBJ9WDWOfy8B8w3j82d4ulle9gb238,497
|
108
|
+
gradientai/types/agents/api_key_regenerate_response.py,sha256=TML0mOW1vJ7A1E49xJsVfJSs4BTcNmhsKMNPv0GeGF8,344
|
109
|
+
gradientai/types/agents/api_key_update_params.py,sha256=dK14YjCCy8GThEOBykQhgAvCuYPAHxFsf0nHIrmO534,547
|
110
|
+
gradientai/types/agents/api_key_update_response.py,sha256=t8QvQ1HJT2DadyMUjCpmthK8OpqAUwo-7SKmqcs1RSI,336
|
111
|
+
gradientai/types/agents/api_link_knowledge_base_output.py,sha256=7CppA-k04phV0oaqBiZssJKTfWHyDybJrNGY56NBT5k,348
|
112
|
+
gradientai/types/agents/api_star_metric.py,sha256=zoIdToH1tDzi1rXSev8ys-VFDHOiL-PLDVk4NgM6jF8,444
|
113
|
+
gradientai/types/agents/api_star_metric_param.py,sha256=21SYQ7J8rgYtw8JIDgPb2d_Xh1plzBjVPPgWuwqZYwY,430
|
114
|
+
gradientai/types/agents/evaluation_dataset_create_file_upload_presigned_urls_params.py,sha256=5VmGf4WuVMmIhjFbJcVRoyOTXq-Z484Z0utiza2b4k8,555
|
115
|
+
gradientai/types/agents/evaluation_dataset_create_file_upload_presigned_urls_response.py,sha256=D71yt5RvwxzY0M33uTPGcxlC8xhhf2pske-0-Uur8x8,964
|
116
|
+
gradientai/types/agents/evaluation_dataset_create_params.py,sha256=_Ab7rv6id0zOWDsZynBVZH9T_OL35l39HY-hMROynp8,546
|
117
|
+
gradientai/types/agents/evaluation_dataset_create_response.py,sha256=UJGh8WSeleKopfjG9MAy5uCW-l0L8vtDYt_rPm-yiTE,333
|
118
|
+
gradientai/types/agents/evaluation_metric_list_response.py,sha256=iuM4v76PGX5o_HSmc2-SlRYvxqIWPtfIJk0GzZZLUBE,359
|
119
|
+
gradientai/types/agents/evaluation_run_create_params.py,sha256=vabJd9XM_ctfmzXMSyONKlf1e_19PGBrngFn9ZeTu_Q,441
|
120
|
+
gradientai/types/agents/evaluation_run_create_response.py,sha256=K9rMKeMZ3w8UxktDCL_lqT9VzMsWquENtJyhcujbnCI,299
|
121
|
+
gradientai/types/agents/evaluation_run_list_results_response.py,sha256=xULgLCkz7RkZEhGvHGBWipFOPj4TonW70Mad87_-i_k,507
|
122
|
+
gradientai/types/agents/evaluation_run_retrieve_response.py,sha256=a_iqhS8uvQr3QLNgStdDkdfGsVEhMcMbhhlBV57EsPc,347
|
123
|
+
gradientai/types/agents/evaluation_run_retrieve_results_response.py,sha256=GQoxrgyX_JgppfNc4QUh8bz5qxxH3m1lxOqqcQLpnrk,362
|
124
|
+
gradientai/types/agents/evaluation_test_case_create_params.py,sha256=MDzlgUtT_TvI3AEBi10oqqqh46GY7Hzbhzks-9NWzL8,721
|
125
|
+
gradientai/types/agents/evaluation_test_case_create_response.py,sha256=6o_tJW7oECyIFtOl9C96eaHoMF_GwIGuwK772BMkcNY,319
|
126
|
+
gradientai/types/agents/evaluation_test_case_list_evaluation_runs_params.py,sha256=YpIdWEwwEtBStTZl6fuD60fT7xmMXk8cj2yuWTQz-NY,371
|
127
|
+
gradientai/types/agents/evaluation_test_case_list_evaluation_runs_response.py,sha256=QKriPoRmv3AW0RMc5tVYxQOGF1rrQqMoM5oJffHUXnk,425
|
128
|
+
gradientai/types/agents/evaluation_test_case_list_response.py,sha256=8BqMiIhwizpSFles_MpvcDWkYqzEFfFwY6icGzBkSfY,384
|
129
|
+
gradientai/types/agents/evaluation_test_case_retrieve_params.py,sha256=B5a7G0qN8CiSEjAUrv3h_Ys3c-nv1rhM8YA470FJtF4,351
|
130
|
+
gradientai/types/agents/evaluation_test_case_retrieve_response.py,sha256=zr5U956-FgFoPAUSSEvOI8CsyBFDdGG-dpC5rIfxZ60,379
|
131
|
+
gradientai/types/agents/evaluation_test_case_update_params.py,sha256=S0FRlU-b1dRQlDKJFthcAmIGmjb4IwAy4zL9uQ0XKqM,809
|
132
|
+
gradientai/types/agents/evaluation_test_case_update_response.py,sha256=SBsxKPG4_0T6LoL7rKj9kp0J4sHqtamRszprgD064h4,369
|
133
|
+
gradientai/types/agents/function_create_params.py,sha256=AagCrtptfN15XA0WdFWvzcDTsVqjH_ztjvW3yZXxIQU,514
|
134
|
+
gradientai/types/agents/function_create_response.py,sha256=_HlKLn7L6NtRQJEQLTYAZRk1XLq8AmrspjxJ7NO3FOI,340
|
135
|
+
gradientai/types/agents/function_delete_response.py,sha256=mXVfs4hsYbiRijPwfEAz3xhmpsGrJbz58YF-BLt-NrY,340
|
136
|
+
gradientai/types/agents/function_update_params.py,sha256=rTc1J3VwUikAk3WR3lbWe_dq8QebS39C1LKm8kkXYs0,682
|
137
|
+
gradientai/types/agents/function_update_response.py,sha256=_u_a9cf7DSx6wplCKx7ZkzM4-TBWNhIXgtVZY83gCWQ,340
|
138
|
+
gradientai/types/agents/knowledge_base_detach_response.py,sha256=dCFJvnfuz6otqLZ9Lae11S3ouSSM9xkYU9UWenaKPjg,350
|
139
|
+
gradientai/types/agents/route_add_params.py,sha256=00mdO2llJA2tFg2BKGiy43EITIs2seLfA3uMwFB8Dqo,651
|
140
|
+
gradientai/types/agents/route_add_response.py,sha256=TT7zCfUfvzlct-wbGbgFygjv_vZAcOW0xpZoJCY4lbQ,358
|
141
|
+
gradientai/types/agents/route_delete_response.py,sha256=SFhq1l8DKUJK6mUwwk1-DTqwZsYITsGDjkK6HXnZPcU,312
|
142
|
+
gradientai/types/agents/route_update_params.py,sha256=e8fWgOq8mMGi20ng-XlqtbAusKTQOd5TzLsNUWa_V5w,672
|
143
|
+
gradientai/types/agents/route_update_response.py,sha256=zDFovVKBqmPTtiDbTXuqHokEGC8uKaeDZjcnrW3Y9nI,433
|
144
|
+
gradientai/types/agents/route_view_response.py,sha256=ShDsY0nJX8ECbY9Eu1zWcYMpERwzEeRjU_7Tb-IKFbY,345
|
145
|
+
gradientai/types/agents/version_list_params.py,sha256=0_3DhUbFDRyjUnn2G4saFOvuotRXI5EFZ4n4s6qUF8o,329
|
146
|
+
gradientai/types/agents/version_list_response.py,sha256=Y0Y8CSPUPVHKRA3zTRRfQ8gC2aFyBacSCaGz-D5k8nk,2725
|
147
|
+
gradientai/types/agents/version_update_params.py,sha256=j9tOda5wXmSOHsmcxQONo2mM-hEtrYi5-19HfGU_XnI,379
|
148
|
+
gradientai/types/agents/version_update_response.py,sha256=nspPIkxQskT82tcW0JyG7bBVlXq_KU6CZzodTd9jfkQ,709
|
149
|
+
gradientai/types/agents/evaluation_metrics/__init__.py,sha256=XWH_utxMx-JwArRpr-rHQfmoxQRGK6GciKOllbkqg40,894
|
150
|
+
gradientai/types/agents/evaluation_metrics/workspace_create_params.py,sha256=LrccBST52BUMlIidiba8K_7vU9HLZW8TTQ2E227UF8Y,343
|
151
|
+
gradientai/types/agents/evaluation_metrics/workspace_create_response.py,sha256=jCVs2l3APGqA7gTetoepZS0Fkf7XJdK4e9pspgI3zpo,360
|
152
|
+
gradientai/types/agents/evaluation_metrics/workspace_delete_response.py,sha256=Al8qWJXknJCeDm30oPGONeSD1TONg555gKu5fkkEU28,274
|
153
|
+
gradientai/types/agents/evaluation_metrics/workspace_list_evaluation_test_cases_response.py,sha256=PSQLxyGQqgePycIL8I5OywCe6w5jcEiDu9gnCtCJefw,406
|
154
|
+
gradientai/types/agents/evaluation_metrics/workspace_list_response.py,sha256=UPaO8jS48UYrKwszGwQRJ2lBJ4OALtHDQTseNHXuUf8,369
|
155
|
+
gradientai/types/agents/evaluation_metrics/workspace_retrieve_response.py,sha256=k7ORQIxXYMsTyLEmkJN1PAz9vXFH139Sq0jBRLv-S5M,364
|
156
|
+
gradientai/types/agents/evaluation_metrics/workspace_update_params.py,sha256=rq7mZeZUJ2BDQA6L2zeMB4nWvA5U_EkNDjvKiVBPY6M,444
|
157
|
+
gradientai/types/agents/evaluation_metrics/workspace_update_response.py,sha256=sPvuXY7fxAl0hk2d4p8eIGl9iAciqu2HzmIc7c4sDxk,360
|
158
|
+
gradientai/types/agents/evaluation_metrics/workspaces/__init__.py,sha256=JmVfrkVAdpoy5Rcyw8n4AVVcGNAfpLHWGJjFhg7CcQU,399
|
159
|
+
gradientai/types/agents/evaluation_metrics/workspaces/agent_list_params.py,sha256=0zqP67__kS_8qDZz6Aud_CePzVUFK4m4p5Ch4m5HcXs,563
|
160
|
+
gradientai/types/agents/evaluation_metrics/workspaces/agent_list_response.py,sha256=W4O5v1LoWh2hQJTpUm5SfQCYcv6Q9Yz1Id5Pm1sPQNA,503
|
161
|
+
gradientai/types/agents/evaluation_metrics/workspaces/agent_move_params.py,sha256=4INiLEvgT9UDqFbrGwp3nuWOzFhwv7sX_YCr1Um1RaQ,422
|
162
|
+
gradientai/types/agents/evaluation_metrics/workspaces/agent_move_response.py,sha256=j2uoTmFwnLNU7kGI5LZdPpMUxWmUk-HdQIVVDOwSy4Y,350
|
163
|
+
gradientai/types/chat/__init__.py,sha256=zdTzozOxKOf2jRrwHBHU2Rmtz4nOTwQkYQl2ZbLJZyg,403
|
164
|
+
gradientai/types/chat/chat_completion_token_logprob.py,sha256=6-ipUFfsXMf5L7FDFi127NaVkDtmEooVgGBF6Ts965A,1769
|
165
|
+
gradientai/types/chat/completion_create_params.py,sha256=F4Dcrt5aYC_GEWUSN2OA3Zm5ImevZ7tFuTxBH7RyooM,6635
|
166
|
+
gradientai/types/chat/completion_create_response.py,sha256=5nCsU9BeXjB5HmkBNemRZHyFwegvKouSBHjzxvb4EFM,2405
|
167
|
+
gradientai/types/inference/__init__.py,sha256=4Dt7-03NeP9ehdHLkLsZMiL_YLQwZsl92D0mMoDQ5g0,857
|
168
|
+
gradientai/types/inference/api_key_create_params.py,sha256=MOy5Bdr1wNBqCvqzyZ0FLfFY2a97q6eXCzgCR1wcLAE,263
|
169
|
+
gradientai/types/inference/api_key_create_response.py,sha256=HjTGC3rpPKqYPE-D6Z9jIE8fqrmo2hTTGBrt00cMwIU,335
|
170
|
+
gradientai/types/inference/api_key_delete_response.py,sha256=18JbFhk0T0qsNM8PosxQDaBwy-fzKLclG_cAbk8WqS4,335
|
171
|
+
gradientai/types/inference/api_key_list_params.py,sha256=2bqdW2M_aw0ae7qY-zDgnxa96gun0V9Wzv2hwISss-8,327
|
172
|
+
gradientai/types/inference/api_key_list_response.py,sha256=EYzeo66RGZbXAjoMA0oihTYyrF0vh8e4-ISeyARbipA,496
|
173
|
+
gradientai/types/inference/api_key_update_params.py,sha256=Jeq5mm_HXgkh77SjYpct-vdc1UZBWAo9fUtoZSAxCpQ,385
|
174
|
+
gradientai/types/inference/api_key_update_regenerate_response.py,sha256=EdejYl_Kuu3r0O-Zzu8sO7P32lQSzsVpJu-m7j1TkpI,355
|
175
|
+
gradientai/types/inference/api_key_update_response.py,sha256=x77TF5sMy-k9wVEBP0h1bkp2bi1nX1oP4SpzetnF-Rc,335
|
176
|
+
gradientai/types/inference/api_model_api_key_info.py,sha256=P8vLRvhdCqqkD6Jbzfa6cijmCRMeJGHw70nMEvcOKCU,477
|
177
|
+
gradientai/types/knowledge_bases/__init__.py,sha256=AOvaWdzrac-_M4coPjLsObAfh1YU8oWKBSdeK4Ml80s,2305
|
178
|
+
gradientai/types/knowledge_bases/api_file_upload_data_source.py,sha256=pwuooMktHMl3-c9_XAqisMW2euFXE_WzLW2MrH4cphY,363
|
179
|
+
gradientai/types/knowledge_bases/api_file_upload_data_source_param.py,sha256=BYJsp891zGJL9NxKAQA9wj7ZI5oW8O7ktpGQTf78-Z4,349
|
180
|
+
gradientai/types/knowledge_bases/api_indexed_data_source.py,sha256=bC9O35k9Bw9eZ5vHSJDnVdMkbZkHt61fjy8ROcNauTQ,1194
|
181
|
+
gradientai/types/knowledge_bases/api_indexing_job.py,sha256=IRY0OUaRY8iWPIX3MvrCw3nR8HMOmWYXwNGWbV2Ctrs,1405
|
182
|
+
gradientai/types/knowledge_bases/api_knowledge_base_data_source.py,sha256=dd5m7pefZR_x2yiPXWqln2lce9yjAoP1Gsh3uF3HdE0,1390
|
183
|
+
gradientai/types/knowledge_bases/api_spaces_data_source.py,sha256=hikZqBGk2a6deuYtL5o0x2a0ShTk_-r6Mrlocw04g54,333
|
184
|
+
gradientai/types/knowledge_bases/api_spaces_data_source_param.py,sha256=fHHNZiL9k5JX8NLFJSrrh11S6mHE6l1Tv_GOs5HmSvw,319
|
185
|
+
gradientai/types/knowledge_bases/api_web_crawler_data_source.py,sha256=TwP9_tIh7lZyYBYA8vcUBsJ8t1njlqvRnSkbe5kBFx4,927
|
186
|
+
gradientai/types/knowledge_bases/api_web_crawler_data_source_param.py,sha256=5RNeniApD7_5LobZWFhQ3iZ2RaLa2Lj4hpqXvIPAfco,884
|
187
|
+
gradientai/types/knowledge_bases/aws_data_source_param.py,sha256=MXImPMnxy2B2LEof2CSGH2BRIs77HrN6lYgwdYHFx7k,345
|
188
|
+
gradientai/types/knowledge_bases/data_source_create_params.py,sha256=qXoTkAJ3Mta5Lx3q8-Fd5EXwsQXhGmOw1NH2PjQJ-pY,739
|
189
|
+
gradientai/types/knowledge_bases/data_source_create_response.py,sha256=Pr6z8AvrNNvgABGB9cL_-gdwBYQn8z3OYDrramZeWIY,381
|
190
|
+
gradientai/types/knowledge_bases/data_source_delete_response.py,sha256=9W0vPF3zE6aoO4pKKY1FWNFhvyBSJ4UJ0bq-jIf5Rug,324
|
191
|
+
gradientai/types/knowledge_bases/data_source_list_params.py,sha256=LE15JRXzJdFffHga_aS1JUnGc-gDdTbSfdV-hyywVTw,335
|
192
|
+
gradientai/types/knowledge_bases/data_source_list_response.py,sha256=gtJOM-0MNFnUjHQ397vCA7TseSrPM2-YaGSWQznubV4,542
|
193
|
+
gradientai/types/knowledge_bases/indexing_job_create_params.py,sha256=OhQcaCShz4GB3N27erLsRCDLJOXJMSTPnAL8jN099hg,346
|
194
|
+
gradientai/types/knowledge_bases/indexing_job_create_response.py,sha256=Bm7HG0n745DGz5dLsma4Lm_CwIOIBA1KtrmcUzYx7K0,322
|
195
|
+
gradientai/types/knowledge_bases/indexing_job_list_params.py,sha256=6bECitbPQGnm-WdSIULUcX47CeEVa5wqKWfYhWZC4Wo,337
|
196
|
+
gradientai/types/knowledge_bases/indexing_job_list_response.py,sha256=ga_tcBAXhKNaUPcL3pEkI4IXLRs3bV55LHja3RlNAP8,483
|
197
|
+
gradientai/types/knowledge_bases/indexing_job_retrieve_data_sources_response.py,sha256=tpac0_oX9Tqjxy7wgLIWMk0d74f-konAVHRr5yNKu9g,396
|
198
|
+
gradientai/types/knowledge_bases/indexing_job_retrieve_response.py,sha256=ubGW4WrVlUXw5oemxsFiBlFCfD-xEs8SU2iszY6WA1U,326
|
199
|
+
gradientai/types/knowledge_bases/indexing_job_update_cancel_params.py,sha256=g0q6nlUdyOIz8ZFygW5IqFKP7Y7-BGkm9ft-2u7WT2U,427
|
200
|
+
gradientai/types/knowledge_bases/indexing_job_update_cancel_response.py,sha256=2YC31-iwH3Fep1MQRgsVCI8E_Wy73NB-bjnFbIphLO4,334
|
201
|
+
gradientai/types/model_providers/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
202
|
+
gradientai/types/model_providers/anthropic/__init__.py,sha256=Rc-P39qouKDD0KcLrR0xXtDercCG-01WvVGfITLxH3w,839
|
203
|
+
gradientai/types/model_providers/anthropic/key_create_params.py,sha256=Wpo2FgKsoMDwT0DrN9QiFdxGL93QUV7PsyZjU_dZwVo,275
|
204
|
+
gradientai/types/model_providers/anthropic/key_create_response.py,sha256=QMr7WcgcSAU4-X3OBzZ_x8z37UQKN4gVNctFjFx35ZU,344
|
205
|
+
gradientai/types/model_providers/anthropic/key_delete_response.py,sha256=woDhj5cV-I-bl-8SahR4yIhLzXXOl4YQjuZq9JhQXow,344
|
206
|
+
gradientai/types/model_providers/anthropic/key_list_agents_params.py,sha256=ZOwFGGQpBm0H-jceINE2yFj5SQsRi3eAYJldIIhdZG0,333
|
207
|
+
gradientai/types/model_providers/anthropic/key_list_agents_response.py,sha256=GTvbpdAduT4tQ8s8BHAzL1oEK4DtI04IDX2maEIKrWo,507
|
208
|
+
gradientai/types/model_providers/anthropic/key_list_params.py,sha256=NIUqtMZ4wCEmsf4pSVYf52rlKg4j98VeXHdsBHvJkb0,321
|
209
|
+
gradientai/types/model_providers/anthropic/key_list_response.py,sha256=PEByTAy9lhKEUVmduGalNdtHP5M7MMCiC3iJFBhaldg,507
|
210
|
+
gradientai/types/model_providers/anthropic/key_retrieve_response.py,sha256=kwlHSeYuNimwsfAc11EYYiONL1QEuj-nRSyYbenCdMA,348
|
211
|
+
gradientai/types/model_providers/anthropic/key_update_params.py,sha256=Y3soYvQEpYbnofgxQoLdeZFolk-NcUSnlUg8BQ2BliU,398
|
212
|
+
gradientai/types/model_providers/anthropic/key_update_response.py,sha256=RsO2ImbQNdJgGNDUPwnOMrE2Bq_pw4e8f_DBB01ZsPw,344
|
213
|
+
gradientai/types/model_providers/openai/__init__.py,sha256=vTB3oppxWE1E9S4c2XzsDERHaaRUkUKGuWUsgp2PY5Y,863
|
214
|
+
gradientai/types/model_providers/openai/key_create_params.py,sha256=Wpo2FgKsoMDwT0DrN9QiFdxGL93QUV7PsyZjU_dZwVo,275
|
215
|
+
gradientai/types/model_providers/openai/key_create_response.py,sha256=D8eRhllf50P3LJHMDzMT2YWuymUXtV-2KgfAZdRHM08,335
|
216
|
+
gradientai/types/model_providers/openai/key_delete_response.py,sha256=AOF_SSCaagPjxP9mEHEXuTX2G8mBYyyaVwviNC0PfTg,335
|
217
|
+
gradientai/types/model_providers/openai/key_list_params.py,sha256=NIUqtMZ4wCEmsf4pSVYf52rlKg4j98VeXHdsBHvJkb0,321
|
218
|
+
gradientai/types/model_providers/openai/key_list_response.py,sha256=Sqlw5FdENZyKcIUcsnYzJVlJOF5UKl2ayJW3aUuRzvw,498
|
219
|
+
gradientai/types/model_providers/openai/key_retrieve_agents_params.py,sha256=iXx-1E5feJfrtjuNIXV0SsCTMB_wA88edXunaMd0sEY,341
|
220
|
+
gradientai/types/model_providers/openai/key_retrieve_agents_response.py,sha256=IdkDMHJFXQgoml9KRLISoWCBEJtNelFXKR0rTto826A,515
|
221
|
+
gradientai/types/model_providers/openai/key_retrieve_response.py,sha256=96ZitCFjLlTzk8UhB2Q1ekmLYF2fer_9TGZ1kzhT2Ck,339
|
222
|
+
gradientai/types/model_providers/openai/key_update_params.py,sha256=Y3soYvQEpYbnofgxQoLdeZFolk-NcUSnlUg8BQ2BliU,398
|
223
|
+
gradientai/types/model_providers/openai/key_update_response.py,sha256=918Y7yxffOe0DmFci54fq0-zTO_1Lc6jruSok8WsBX4,335
|
224
|
+
gradientai/types/shared/__init__.py,sha256=S9SLB1APW-dDg_jhLB7iJbyycEkZGof0AJi0ejhNGWI,172
|
225
|
+
gradientai/types/shared/api_links.py,sha256=Iq5iQwOkRYuwLcuDLk54dUfrq0f2ZVEOXSpF744gYgA,403
|
226
|
+
gradientai/types/shared/api_meta.py,sha256=-KyinzQqM5GSjD7E5xm7A4UALXAvLOyVNR1SYVOUFJM,297
|
227
|
+
c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a6.dist-info/METADATA,sha256=2yYN_5FGbHKS8wNSw4eW7fNmY93uA2s0Z-Qo6ZmB1_I,15021
|
228
|
+
c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a6.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
229
|
+
c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a6.dist-info/licenses/LICENSE,sha256=AzxEF8mEks6hu5V_87CXF8gLdL875WeO8FmQtEZTFok,11341
|
230
|
+
c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a6.dist-info/RECORD,,
|