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.
Files changed (143) hide show
  1. {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
  2. c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a6.dist-info/RECORD +230 -0
  3. gradientai/_client.py +73 -71
  4. gradientai/_version.py +1 -1
  5. gradientai/resources/__init__.py +14 -28
  6. gradientai/resources/agents/__init__.py +69 -13
  7. gradientai/resources/agents/agents.py +148 -20
  8. gradientai/resources/{regions → agents}/evaluation_datasets.py +3 -3
  9. gradientai/resources/agents/evaluation_metrics/__init__.py +33 -0
  10. gradientai/resources/agents/evaluation_metrics/evaluation_metrics.py +177 -0
  11. gradientai/resources/agents/evaluation_metrics/workspaces/__init__.py +33 -0
  12. gradientai/resources/agents/evaluation_metrics/workspaces/agents.py +324 -0
  13. gradientai/resources/agents/evaluation_metrics/workspaces/workspaces.py +654 -0
  14. gradientai/resources/{regions/evaluation_runs → agents}/evaluation_runs.py +197 -47
  15. gradientai/resources/{regions → agents}/evaluation_test_cases.py +30 -9
  16. gradientai/resources/agents/{child_agents.py → routes.py} +64 -64
  17. gradientai/resources/chat/completions.py +20 -2
  18. gradientai/resources/inference/__init__.py +0 -14
  19. gradientai/resources/inference/inference.py +0 -32
  20. gradientai/resources/knowledge_bases/__init__.py +14 -0
  21. gradientai/resources/{indexing_jobs.py → knowledge_bases/indexing_jobs.py} +16 -12
  22. gradientai/resources/knowledge_bases/knowledge_bases.py +32 -0
  23. gradientai/resources/{providers → model_providers}/__init__.py +13 -13
  24. gradientai/resources/{providers → model_providers}/anthropic/keys.py +12 -7
  25. gradientai/resources/{providers/providers.py → model_providers/model_providers.py} +31 -31
  26. gradientai/resources/{providers → model_providers}/openai/keys.py +12 -7
  27. gradientai/resources/models.py +77 -105
  28. gradientai/resources/regions.py +195 -0
  29. gradientai/types/__init__.py +2 -17
  30. gradientai/types/agent_list_response.py +2 -2
  31. gradientai/types/agents/__init__.py +44 -8
  32. gradientai/types/{api_evaluation_metric.py → agents/api_evaluation_metric.py} +1 -1
  33. gradientai/types/{regions/evaluation_runs → agents}/api_evaluation_metric_result.py +1 -1
  34. gradientai/types/{regions/evaluation_runs/api_prompt.py → agents/api_evaluation_prompt.py} +3 -3
  35. gradientai/types/{regions/evaluation_runs → agents}/api_evaluation_run.py +13 -1
  36. gradientai/types/{regions → agents}/api_evaluation_test_case.py +1 -1
  37. gradientai/types/agents/api_key_list_response.py +2 -2
  38. gradientai/types/{region_list_evaluation_metrics_response.py → agents/evaluation_metric_list_response.py} +3 -3
  39. gradientai/types/agents/evaluation_metrics/__init__.py +14 -0
  40. gradientai/types/agents/evaluation_metrics/workspace_create_params.py +16 -0
  41. gradientai/types/agents/evaluation_metrics/workspace_create_response.py +16 -0
  42. gradientai/types/agents/evaluation_metrics/workspace_delete_response.py +11 -0
  43. gradientai/types/agents/evaluation_metrics/workspace_list_evaluation_test_cases_response.py +12 -0
  44. gradientai/types/agents/evaluation_metrics/workspace_list_response.py +16 -0
  45. gradientai/types/agents/evaluation_metrics/workspace_retrieve_response.py +16 -0
  46. gradientai/types/agents/evaluation_metrics/workspace_update_params.py +18 -0
  47. gradientai/types/agents/evaluation_metrics/workspace_update_response.py +16 -0
  48. gradientai/types/agents/evaluation_metrics/workspaces/__init__.py +8 -0
  49. gradientai/types/agents/evaluation_metrics/workspaces/agent_list_params.py +26 -0
  50. gradientai/types/agents/evaluation_metrics/workspaces/agent_list_response.py +22 -0
  51. gradientai/types/agents/evaluation_metrics/workspaces/agent_move_params.py +16 -0
  52. gradientai/types/agents/evaluation_metrics/workspaces/agent_move_response.py +16 -0
  53. gradientai/types/{regions → agents}/evaluation_run_create_params.py +3 -2
  54. gradientai/types/{regions → agents}/evaluation_run_create_response.py +2 -2
  55. gradientai/types/{regions/evaluation_runs/result_retrieve_response.py → agents/evaluation_run_list_results_response.py} +5 -5
  56. gradientai/types/{regions → agents}/evaluation_run_retrieve_response.py +1 -1
  57. gradientai/types/agents/evaluation_run_retrieve_results_response.py +12 -0
  58. gradientai/types/{regions → agents}/evaluation_test_case_list_evaluation_runs_response.py +1 -1
  59. gradientai/types/agents/evaluation_test_case_retrieve_params.py +12 -0
  60. gradientai/types/agents/{child_agent_add_params.py → route_add_params.py} +2 -2
  61. gradientai/types/agents/{child_agent_add_response.py → route_add_response.py} +2 -2
  62. gradientai/types/agents/{child_agent_delete_response.py → route_delete_response.py} +2 -2
  63. gradientai/types/agents/{child_agent_update_params.py → route_update_params.py} +2 -2
  64. gradientai/types/agents/{child_agent_update_response.py → route_update_response.py} +2 -2
  65. gradientai/types/agents/{child_agent_view_response.py → route_view_response.py} +2 -2
  66. gradientai/types/agents/version_list_response.py +2 -2
  67. gradientai/types/api_knowledge_base.py +1 -1
  68. gradientai/types/api_workspace.py +1 -1
  69. gradientai/types/inference/__init__.py +0 -2
  70. gradientai/types/inference/api_key_list_response.py +2 -2
  71. gradientai/types/knowledge_base_list_response.py +2 -2
  72. gradientai/types/knowledge_bases/__init__.py +12 -0
  73. gradientai/types/{indexing_job_retrieve_data_sources_response.py → knowledge_bases/api_indexed_data_source.py} +4 -8
  74. gradientai/types/{api_indexing_job.py → knowledge_bases/api_indexing_job.py} +13 -1
  75. gradientai/types/knowledge_bases/api_knowledge_base_data_source.py +4 -1
  76. gradientai/types/knowledge_bases/data_source_list_response.py +2 -2
  77. gradientai/types/{indexing_job_create_response.py → knowledge_bases/indexing_job_create_response.py} +1 -1
  78. gradientai/types/{indexing_job_list_response.py → knowledge_bases/indexing_job_list_response.py} +3 -3
  79. gradientai/types/knowledge_bases/indexing_job_retrieve_data_sources_response.py +12 -0
  80. gradientai/types/{indexing_job_retrieve_response.py → knowledge_bases/indexing_job_retrieve_response.py} +1 -1
  81. gradientai/types/{indexing_job_update_cancel_params.py → knowledge_bases/indexing_job_update_cancel_params.py} +1 -1
  82. gradientai/types/{indexing_job_update_cancel_response.py → knowledge_bases/indexing_job_update_cancel_response.py} +1 -1
  83. gradientai/types/{inference/model.py → model.py} +1 -1
  84. gradientai/types/model_list_response.py +5 -8
  85. gradientai/types/{providers → model_providers}/anthropic/key_list_agents_response.py +2 -2
  86. gradientai/types/{providers → model_providers}/anthropic/key_list_response.py +2 -2
  87. gradientai/types/{providers → model_providers}/openai/key_list_response.py +2 -2
  88. gradientai/types/{providers → model_providers}/openai/key_retrieve_agents_response.py +2 -2
  89. gradientai/types/shared/__init__.py +4 -0
  90. c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info/RECORD +0 -217
  91. gradientai/resources/inference/models.py +0 -226
  92. gradientai/resources/regions/__init__.py +0 -61
  93. gradientai/resources/regions/evaluation_runs/__init__.py +0 -33
  94. gradientai/resources/regions/evaluation_runs/results.py +0 -264
  95. gradientai/resources/regions/regions.py +0 -352
  96. gradientai/types/api_model.py +0 -32
  97. gradientai/types/inference/model_list_response.py +0 -15
  98. gradientai/types/model_list_params.py +0 -42
  99. gradientai/types/regions/__init__.py +0 -32
  100. gradientai/types/regions/evaluation_runs/__init__.py +0 -9
  101. gradientai/types/regions/evaluation_runs/result_retrieve_prompt_response.py +0 -12
  102. {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
  103. {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
  104. /gradientai/resources/{providers → model_providers}/anthropic/__init__.py +0 -0
  105. /gradientai/resources/{providers → model_providers}/anthropic/anthropic.py +0 -0
  106. /gradientai/resources/{providers → model_providers}/openai/__init__.py +0 -0
  107. /gradientai/resources/{providers → model_providers}/openai/openai.py +0 -0
  108. /gradientai/types/{regions → agents}/api_star_metric.py +0 -0
  109. /gradientai/types/{regions → agents}/api_star_metric_param.py +0 -0
  110. /gradientai/types/{regions → agents}/evaluation_dataset_create_file_upload_presigned_urls_params.py +0 -0
  111. /gradientai/types/{regions → agents}/evaluation_dataset_create_file_upload_presigned_urls_response.py +0 -0
  112. /gradientai/types/{regions → agents}/evaluation_dataset_create_params.py +0 -0
  113. /gradientai/types/{regions → agents}/evaluation_dataset_create_response.py +0 -0
  114. /gradientai/types/{regions → agents}/evaluation_test_case_create_params.py +0 -0
  115. /gradientai/types/{regions → agents}/evaluation_test_case_create_response.py +0 -0
  116. /gradientai/types/{regions → agents}/evaluation_test_case_list_evaluation_runs_params.py +0 -0
  117. /gradientai/types/{regions → agents}/evaluation_test_case_list_response.py +0 -0
  118. /gradientai/types/{regions → agents}/evaluation_test_case_retrieve_response.py +0 -0
  119. /gradientai/types/{regions → agents}/evaluation_test_case_update_params.py +0 -0
  120. /gradientai/types/{regions → agents}/evaluation_test_case_update_response.py +0 -0
  121. /gradientai/types/{indexing_job_create_params.py → knowledge_bases/indexing_job_create_params.py} +0 -0
  122. /gradientai/types/{indexing_job_list_params.py → knowledge_bases/indexing_job_list_params.py} +0 -0
  123. /gradientai/types/{providers → model_providers}/__init__.py +0 -0
  124. /gradientai/types/{providers → model_providers}/anthropic/__init__.py +0 -0
  125. /gradientai/types/{providers → model_providers}/anthropic/key_create_params.py +0 -0
  126. /gradientai/types/{providers → model_providers}/anthropic/key_create_response.py +0 -0
  127. /gradientai/types/{providers → model_providers}/anthropic/key_delete_response.py +0 -0
  128. /gradientai/types/{providers → model_providers}/anthropic/key_list_agents_params.py +0 -0
  129. /gradientai/types/{providers → model_providers}/anthropic/key_list_params.py +0 -0
  130. /gradientai/types/{providers → model_providers}/anthropic/key_retrieve_response.py +0 -0
  131. /gradientai/types/{providers → model_providers}/anthropic/key_update_params.py +0 -0
  132. /gradientai/types/{providers → model_providers}/anthropic/key_update_response.py +0 -0
  133. /gradientai/types/{providers → model_providers}/openai/__init__.py +0 -0
  134. /gradientai/types/{providers → model_providers}/openai/key_create_params.py +0 -0
  135. /gradientai/types/{providers → model_providers}/openai/key_create_response.py +0 -0
  136. /gradientai/types/{providers → model_providers}/openai/key_delete_response.py +0 -0
  137. /gradientai/types/{providers → model_providers}/openai/key_list_params.py +0 -0
  138. /gradientai/types/{providers → model_providers}/openai/key_retrieve_agents_params.py +0 -0
  139. /gradientai/types/{providers → model_providers}/openai/key_retrieve_response.py +0 -0
  140. /gradientai/types/{providers → model_providers}/openai/key_update_params.py +0 -0
  141. /gradientai/types/{providers → model_providers}/openai/key_update_response.py +0 -0
  142. /gradientai/types/{agents → shared}/api_links.py +0 -0
  143. /gradientai/types/{agents → shared}/api_meta.py +0 -0
@@ -6,10 +6,10 @@ from typing_extensions import Required, Annotated, TypedDict
6
6
 
7
7
  from ..._utils import PropertyInfo
8
8
 
9
- __all__ = ["ChildAgentUpdateParams"]
9
+ __all__ = ["RouteUpdateParams"]
10
10
 
11
11
 
12
- class ChildAgentUpdateParams(TypedDict, total=False):
12
+ class RouteUpdateParams(TypedDict, total=False):
13
13
  path_parent_agent_uuid: Required[Annotated[str, PropertyInfo(alias="parent_agent_uuid")]]
14
14
 
15
15
  body_child_agent_uuid: Annotated[str, PropertyInfo(alias="child_agent_uuid")]
@@ -4,10 +4,10 @@ from typing import Optional
4
4
 
5
5
  from ..._models import BaseModel
6
6
 
7
- __all__ = ["ChildAgentUpdateResponse"]
7
+ __all__ = ["RouteUpdateResponse"]
8
8
 
9
9
 
10
- class ChildAgentUpdateResponse(BaseModel):
10
+ class RouteUpdateResponse(BaseModel):
11
11
  child_agent_uuid: Optional[str] = None
12
12
 
13
13
  parent_agent_uuid: Optional[str] = None
@@ -6,10 +6,10 @@ from typing import List, Optional
6
6
 
7
7
  from ..._models import BaseModel
8
8
 
9
- __all__ = ["ChildAgentViewResponse"]
9
+ __all__ = ["RouteViewResponse"]
10
10
 
11
11
 
12
- class ChildAgentViewResponse(BaseModel):
12
+ class RouteViewResponse(BaseModel):
13
13
  children: Optional[List["APIAgent"]] = None
14
14
 
15
15
 
@@ -5,9 +5,9 @@ from datetime import datetime
5
5
 
6
6
  from pydantic import Field as FieldInfo
7
7
 
8
- from .api_meta import APIMeta
9
8
  from ..._models import BaseModel
10
- from .api_links import APILinks
9
+ from ..shared.api_meta import APIMeta
10
+ from ..shared.api_links import APILinks
11
11
  from ..api_retrieval_method import APIRetrievalMethod
12
12
 
13
13
  __all__ = [
@@ -4,7 +4,7 @@ from typing import List, Optional
4
4
  from datetime import datetime
5
5
 
6
6
  from .._models import BaseModel
7
- from .api_indexing_job import APIIndexingJob
7
+ from .knowledge_bases.api_indexing_job import APIIndexingJob
8
8
 
9
9
  __all__ = ["APIKnowledgeBase"]
10
10
 
@@ -6,7 +6,7 @@ from typing import List, Optional
6
6
  from datetime import datetime
7
7
 
8
8
  from .._models import BaseModel
9
- from .regions.api_evaluation_test_case import APIEvaluationTestCase
9
+ from .agents.api_evaluation_test_case import APIEvaluationTestCase
10
10
 
11
11
  __all__ = ["APIWorkspace"]
12
12
 
@@ -2,9 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from .model import Model as Model
6
5
  from .api_key_list_params import APIKeyListParams as APIKeyListParams
7
- from .model_list_response import ModelListResponse as ModelListResponse
8
6
  from .api_key_create_params import APIKeyCreateParams as APIKeyCreateParams
9
7
  from .api_key_list_response import APIKeyListResponse as APIKeyListResponse
10
8
  from .api_key_update_params import APIKeyUpdateParams as APIKeyUpdateParams
@@ -3,8 +3,8 @@
3
3
  from typing import List, Optional
4
4
 
5
5
  from ..._models import BaseModel
6
- from ..agents.api_meta import APIMeta
7
- from ..agents.api_links import APILinks
6
+ from ..shared.api_meta import APIMeta
7
+ from ..shared.api_links import APILinks
8
8
  from .api_model_api_key_info import APIModelAPIKeyInfo
9
9
 
10
10
  __all__ = ["APIKeyListResponse"]
@@ -3,8 +3,8 @@
3
3
  from typing import List, Optional
4
4
 
5
5
  from .._models import BaseModel
6
- from .agents.api_meta import APIMeta
7
- from .agents.api_links import APILinks
6
+ from .shared.api_meta import APIMeta
7
+ from .shared.api_links import APILinks
8
8
  from .api_knowledge_base import APIKnowledgeBase
9
9
 
10
10
  __all__ = ["KnowledgeBaseListResponse"]
@@ -2,16 +2,28 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from .api_indexing_job import APIIndexingJob as APIIndexingJob
5
6
  from .aws_data_source_param import AwsDataSourceParam as AwsDataSourceParam
6
7
  from .api_spaces_data_source import APISpacesDataSource as APISpacesDataSource
8
+ from .api_indexed_data_source import APIIndexedDataSource as APIIndexedDataSource
7
9
  from .data_source_list_params import DataSourceListParams as DataSourceListParams
10
+ from .indexing_job_list_params import IndexingJobListParams as IndexingJobListParams
8
11
  from .data_source_create_params import DataSourceCreateParams as DataSourceCreateParams
9
12
  from .data_source_list_response import DataSourceListResponse as DataSourceListResponse
13
+ from .indexing_job_create_params import IndexingJobCreateParams as IndexingJobCreateParams
14
+ from .indexing_job_list_response import IndexingJobListResponse as IndexingJobListResponse
10
15
  from .api_file_upload_data_source import APIFileUploadDataSource as APIFileUploadDataSource
11
16
  from .api_web_crawler_data_source import APIWebCrawlerDataSource as APIWebCrawlerDataSource
12
17
  from .data_source_create_response import DataSourceCreateResponse as DataSourceCreateResponse
13
18
  from .data_source_delete_response import DataSourceDeleteResponse as DataSourceDeleteResponse
14
19
  from .api_spaces_data_source_param import APISpacesDataSourceParam as APISpacesDataSourceParam
20
+ from .indexing_job_create_response import IndexingJobCreateResponse as IndexingJobCreateResponse
15
21
  from .api_knowledge_base_data_source import APIKnowledgeBaseDataSource as APIKnowledgeBaseDataSource
22
+ from .indexing_job_retrieve_response import IndexingJobRetrieveResponse as IndexingJobRetrieveResponse
16
23
  from .api_file_upload_data_source_param import APIFileUploadDataSourceParam as APIFileUploadDataSourceParam
17
24
  from .api_web_crawler_data_source_param import APIWebCrawlerDataSourceParam as APIWebCrawlerDataSourceParam
25
+ from .indexing_job_update_cancel_params import IndexingJobUpdateCancelParams as IndexingJobUpdateCancelParams
26
+ from .indexing_job_update_cancel_response import IndexingJobUpdateCancelResponse as IndexingJobUpdateCancelResponse
27
+ from .indexing_job_retrieve_data_sources_response import (
28
+ IndexingJobRetrieveDataSourcesResponse as IndexingJobRetrieveDataSourcesResponse,
29
+ )
@@ -1,15 +1,15 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- from typing import List, Optional
3
+ from typing import Optional
4
4
  from datetime import datetime
5
5
  from typing_extensions import Literal
6
6
 
7
- from .._models import BaseModel
7
+ from ..._models import BaseModel
8
8
 
9
- __all__ = ["IndexingJobRetrieveDataSourcesResponse", "IndexedDataSource"]
9
+ __all__ = ["APIIndexedDataSource"]
10
10
 
11
11
 
12
- class IndexedDataSource(BaseModel):
12
+ class APIIndexedDataSource(BaseModel):
13
13
  completed_at: Optional[datetime] = None
14
14
 
15
15
  data_source_uuid: Optional[str] = None
@@ -46,7 +46,3 @@ class IndexedDataSource(BaseModel):
46
46
  total_bytes_indexed: Optional[str] = None
47
47
 
48
48
  total_file_count: Optional[str] = None
49
-
50
-
51
- class IndexingJobRetrieveDataSourcesResponse(BaseModel):
52
- indexed_data_sources: Optional[List[IndexedDataSource]] = None
@@ -4,7 +4,7 @@ from typing import List, Optional
4
4
  from datetime import datetime
5
5
  from typing_extensions import Literal
6
6
 
7
- from .._models import BaseModel
7
+ from ..._models import BaseModel
8
8
 
9
9
  __all__ = ["APIIndexingJob"]
10
10
 
@@ -34,6 +34,18 @@ class APIIndexingJob(BaseModel):
34
34
 
35
35
  started_at: Optional[datetime] = None
36
36
 
37
+ status: Optional[
38
+ Literal[
39
+ "INDEX_JOB_STATUS_UNKNOWN",
40
+ "INDEX_JOB_STATUS_PARTIAL",
41
+ "INDEX_JOB_STATUS_IN_PROGRESS",
42
+ "INDEX_JOB_STATUS_COMPLETED",
43
+ "INDEX_JOB_STATUS_FAILED",
44
+ "INDEX_JOB_STATUS_NO_CHANGES",
45
+ "INDEX_JOB_STATUS_PENDING",
46
+ ]
47
+ ] = None
48
+
37
49
  tokens: Optional[int] = None
38
50
 
39
51
  total_datasources: Optional[int] = None
@@ -4,8 +4,9 @@ from typing import Optional
4
4
  from datetime import datetime
5
5
 
6
6
  from ..._models import BaseModel
7
- from ..api_indexing_job import APIIndexingJob
7
+ from .api_indexing_job import APIIndexingJob
8
8
  from .api_spaces_data_source import APISpacesDataSource
9
+ from .api_indexed_data_source import APIIndexedDataSource
9
10
  from .api_file_upload_data_source import APIFileUploadDataSource
10
11
  from .api_web_crawler_data_source import APIWebCrawlerDataSource
11
12
 
@@ -32,6 +33,8 @@ class APIKnowledgeBaseDataSource(BaseModel):
32
33
 
33
34
  item_path: Optional[str] = None
34
35
 
36
+ last_datasource_indexing_job: Optional[APIIndexedDataSource] = None
37
+
35
38
  last_indexing_job: Optional[APIIndexingJob] = None
36
39
 
37
40
  region: Optional[str] = None
@@ -3,8 +3,8 @@
3
3
  from typing import List, Optional
4
4
 
5
5
  from ..._models import BaseModel
6
- from ..agents.api_meta import APIMeta
7
- from ..agents.api_links import APILinks
6
+ from ..shared.api_meta import APIMeta
7
+ from ..shared.api_links import APILinks
8
8
  from .api_knowledge_base_data_source import APIKnowledgeBaseDataSource
9
9
 
10
10
  __all__ = ["DataSourceListResponse"]
@@ -2,7 +2,7 @@
2
2
 
3
3
  from typing import Optional
4
4
 
5
- from .._models import BaseModel
5
+ from ..._models import BaseModel
6
6
  from .api_indexing_job import APIIndexingJob
7
7
 
8
8
  __all__ = ["IndexingJobCreateResponse"]
@@ -2,10 +2,10 @@
2
2
 
3
3
  from typing import List, Optional
4
4
 
5
- from .._models import BaseModel
6
- from .agents.api_meta import APIMeta
7
- from .agents.api_links import APILinks
5
+ from ..._models import BaseModel
6
+ from ..shared.api_meta import APIMeta
8
7
  from .api_indexing_job import APIIndexingJob
8
+ from ..shared.api_links import APILinks
9
9
 
10
10
  __all__ = ["IndexingJobListResponse"]
11
11
 
@@ -0,0 +1,12 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List, Optional
4
+
5
+ from ..._models import BaseModel
6
+ from .api_indexed_data_source import APIIndexedDataSource
7
+
8
+ __all__ = ["IndexingJobRetrieveDataSourcesResponse"]
9
+
10
+
11
+ class IndexingJobRetrieveDataSourcesResponse(BaseModel):
12
+ indexed_data_sources: Optional[List[APIIndexedDataSource]] = None
@@ -2,7 +2,7 @@
2
2
 
3
3
  from typing import Optional
4
4
 
5
- from .._models import BaseModel
5
+ from ..._models import BaseModel
6
6
  from .api_indexing_job import APIIndexingJob
7
7
 
8
8
  __all__ = ["IndexingJobRetrieveResponse"]
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
 
5
5
  from typing_extensions import Annotated, TypedDict
6
6
 
7
- from .._utils import PropertyInfo
7
+ from ..._utils import PropertyInfo
8
8
 
9
9
  __all__ = ["IndexingJobUpdateCancelParams"]
10
10
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  from typing import Optional
4
4
 
5
- from .._models import BaseModel
5
+ from ..._models import BaseModel
6
6
  from .api_indexing_job import APIIndexingJob
7
7
 
8
8
  __all__ = ["IndexingJobUpdateCancelResponse"]
@@ -2,7 +2,7 @@
2
2
 
3
3
  from typing_extensions import Literal
4
4
 
5
- from ..._models import BaseModel
5
+ from .._models import BaseModel
6
6
 
7
7
  __all__ = ["Model"]
8
8
 
@@ -1,18 +1,15 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- from typing import List, Optional
3
+ from typing import List
4
+ from typing_extensions import Literal
4
5
 
6
+ from .model import Model
5
7
  from .._models import BaseModel
6
- from .api_model import APIModel
7
- from .agents.api_meta import APIMeta
8
- from .agents.api_links import APILinks
9
8
 
10
9
  __all__ = ["ModelListResponse"]
11
10
 
12
11
 
13
12
  class ModelListResponse(BaseModel):
14
- links: Optional[APILinks] = None
13
+ data: List[Model]
15
14
 
16
- meta: Optional[APIMeta] = None
17
-
18
- models: Optional[List[APIModel]] = None
15
+ object: Literal["list"]
@@ -5,8 +5,8 @@ from __future__ import annotations
5
5
  from typing import List, Optional
6
6
 
7
7
  from ...._models import BaseModel
8
- from ...agents.api_meta import APIMeta
9
- from ...agents.api_links import APILinks
8
+ from ...shared.api_meta import APIMeta
9
+ from ...shared.api_links import APILinks
10
10
 
11
11
  __all__ = ["KeyListAgentsResponse"]
12
12
 
@@ -3,8 +3,8 @@
3
3
  from typing import List, Optional
4
4
 
5
5
  from ...._models import BaseModel
6
- from ...agents.api_meta import APIMeta
7
- from ...agents.api_links import APILinks
6
+ from ...shared.api_meta import APIMeta
7
+ from ...shared.api_links import APILinks
8
8
  from ...api_anthropic_api_key_info import APIAnthropicAPIKeyInfo
9
9
 
10
10
  __all__ = ["KeyListResponse"]
@@ -3,8 +3,8 @@
3
3
  from typing import List, Optional
4
4
 
5
5
  from ...._models import BaseModel
6
- from ...agents.api_meta import APIMeta
7
- from ...agents.api_links import APILinks
6
+ from ...shared.api_meta import APIMeta
7
+ from ...shared.api_links import APILinks
8
8
  from ...api_openai_api_key_info import APIOpenAIAPIKeyInfo
9
9
 
10
10
  __all__ = ["KeyListResponse"]
@@ -5,8 +5,8 @@ from __future__ import annotations
5
5
  from typing import List, Optional
6
6
 
7
7
  from ...._models import BaseModel
8
- from ...agents.api_meta import APIMeta
9
- from ...agents.api_links import APILinks
8
+ from ...shared.api_meta import APIMeta
9
+ from ...shared.api_links import APILinks
10
10
 
11
11
  __all__ = ["KeyRetrieveAgentsResponse"]
12
12
 
@@ -0,0 +1,4 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .api_meta import APIMeta as APIMeta
4
+ from .api_links import APILinks as APILinks
@@ -1,217 +0,0 @@
1
- gradientai/__init__.py,sha256=yqy3yZnX0JVUS-H01MAvroChzqS67Qf072OrPfNckjI,2655
2
- gradientai/_base_client.py,sha256=TADFnPHK7WpsNuJUY76SxMFf2IVoOdz_tlloQEXkutk,66719
3
- gradientai/_client.py,sha256=Gw09z9s3RJ5VkGSddstksCMUbRXNXABxwaE_52QBE6I,26891
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=tmdbLShVf7Cqp0JI3L-RIsjYh_OqTvIPiEuHkOeCFxk,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=qM_7RzdGLxvPNsbuzJMx-tx22uOYwPEUMEJvxRu69KY,3951
28
- gradientai/resources/indexing_jobs.py,sha256=SIxT6ONHlLoFUSeRfVtyf4GDiIaPo34kD8ugBpB1Hvk,23060
29
- gradientai/resources/models.py,sha256=SKdBMKr6NP1ldD_xzbr-gUL8hdo33omUAz5UPAJ0KWQ,9434
30
- gradientai/resources/agents/__init__.py,sha256=g7RE6uq7nxVbg2vQuei1DHvdp8GopokdkT5VQFyP718,3052
31
- gradientai/resources/agents/agents.py,sha256=8cBy5zOAl3AkFHNir3ilkvE9_LwqDDxVlHDPRwNQqWg,39691
32
- gradientai/resources/agents/api_keys.py,sha256=1Uh77vhUD0WYUkvX0RD4VcLCOWFG6vL6Lz1EQRDx-t4,24632
33
- gradientai/resources/agents/child_agents.py,sha256=o3R388I34Gtv3N2VPYURlsJja4Qi6bmdNgPlFIOgANQ,22405
34
- gradientai/resources/agents/functions.py,sha256=ZAOelsCnOl8lRuF5RpZDVGMN-E0yTG4Vo3hA-wv5Ldg,18492
35
- gradientai/resources/agents/knowledge_bases.py,sha256=rFIrqsT7nXFJ_Sy4OWpUc8QmBGKSN_PhYpFpWvYHTfg,15191
36
- gradientai/resources/agents/versions.py,sha256=hmHDaawFkpqoUEYI4Vi5jckH3mamkPKupXO3cZccyKE,11546
37
- gradientai/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
38
- gradientai/resources/chat/chat.py,sha256=ANOEzzDATXj-onkkdtvVad9O-Dfwe7Uza7yfA_3bU4U,3696
39
- gradientai/resources/chat/completions.py,sha256=I9XQiY7JsWiLGKN4Yr9mRxlQAkfG7Mi0f7KvJIWyRRA,18208
40
- gradientai/resources/inference/__init__.py,sha256=y-CpQwkBQ2dmwB_VsNIDl4RG8dl5PiOOP8oyudt7KwA,1505
41
- gradientai/resources/inference/api_keys.py,sha256=xgWTFTp8IVRkw2nvXnfjBZPOTJyLUDIKlE7fSmb1y2I,22021
42
- gradientai/resources/inference/inference.py,sha256=11SbjCT5Kd5ljWXsHqUmWBUWbx2LWjYn-lWDYHzDu70,4852
43
- gradientai/resources/inference/models.py,sha256=iVpwkdyIoNL_OPp023YPEcukqPmzAQJ4K3Nq38X4058,8624
44
- gradientai/resources/knowledge_bases/__init__.py,sha256=QEpOfT6q4B_U2c274p-CcEzBly2G20q9hhNTOGmAYyg,1173
45
- gradientai/resources/knowledge_bases/data_sources.py,sha256=uSX40BBVrjnEpa3DATR2XH76gmJANG-oFnMe5N8MTis,17889
46
- gradientai/resources/knowledge_bases/knowledge_bases.py,sha256=-xm_zKLw9CErFLjCn8curjSI8GnORAJ4XS6gzeGM9fw,28171
47
- gradientai/resources/providers/__init__.py,sha256=5ZD8jGQM1E9T9fijxpyOvXbs4kTV4-U49Bk1iDa_Yyc,1530
48
- gradientai/resources/providers/providers.py,sha256=5EQ42roZY5TWFGl5bRT6tQeR0H8NvKt_4wxAozgMuKE,4916
49
- gradientai/resources/providers/anthropic/__init__.py,sha256=07ZXCxoPjF79SZEYuffvDn-WcVsSjhNZm7HBMb_6pYI,1015
50
- gradientai/resources/providers/anthropic/anthropic.py,sha256=F056ue6d1WI8amKsarHh-Sfe_E3DRgxlEZOUL5S5JkU,3675
51
- gradientai/resources/providers/anthropic/keys.py,sha256=eAqaWahRdTWto6gPZaXXokExB9o5227Km7L2q3w9Ur8,26432
52
- gradientai/resources/providers/openai/__init__.py,sha256=77LFIe5ko8imMJR7pkAn3E9r4rzw7j2fF9ZSpBaLZyo,976
53
- gradientai/resources/providers/openai/keys.py,sha256=J__usZ3hHnphMvGejEb2vcQFO_jPwIaSDET_QXDvUW0,26325
54
- gradientai/resources/providers/openai/openai.py,sha256=MfV9fB4EJVa6RYIfVS2QJW_BSkShLKCscDuxDV8wCBE,3567
55
- gradientai/resources/regions/__init__.py,sha256=yYEKyvpSHWtq7HityPJNUGWagcq_5XF4qqBDRIdyxYg,2348
56
- gradientai/resources/regions/evaluation_datasets.py,sha256=HGhu5gd1-dAo85NBJLRKxCFbNb2oi55ebLShBShflbw,12597
57
- gradientai/resources/regions/evaluation_test_cases.py,sha256=0BZtXY0EhrDOpsYwBVc207OqreOLIxgXy8aFMLEsuEU,26465
58
- gradientai/resources/regions/regions.py,sha256=tJ57tQ6yszMyOJ2-pULZhNh14gIevOo3qNhYGfZjQCA,14221
59
- gradientai/resources/regions/evaluation_runs/__init__.py,sha256=98TXHKtILDwZdKz9B4vsfHtc_3srH_ysrb4Ytdo-fhs,1120
60
- gradientai/resources/regions/evaluation_runs/evaluation_runs.py,sha256=GJpkgeuNmjYfYcKoUHzugR2dh0Nn7IFuq3YPbA1eX44,12542
61
- gradientai/resources/regions/evaluation_runs/results.py,sha256=xSpsgpJPG2BxUGEoegcJ1g-e3aWRJjo19FneRPKEloM,10738
62
- gradientai/types/__init__.py,sha256=7qRMlDFqnNAyZLoxVSOQPdAUlWXH0uzXNzbAaLlI3Vw,3917
63
- gradientai/types/agent_create_params.py,sha256=nvLpM8V64762cwAn7ggyvbSzQ0mgjwOopOUZ_bVL1-I,912
64
- gradientai/types/agent_create_response.py,sha256=frBMp76xLUzznVzWP70fb49drn3r3-2l4kX1xpQrNmg,332
65
- gradientai/types/agent_delete_response.py,sha256=_1ciIOuRDvbeuaBvbCOpLV7QF6TufMX5MXNsBZv6H4s,332
66
- gradientai/types/agent_list_params.py,sha256=RC6oo07xNp6vfHRLvwS5wRrM6yjpEUf7Q0RNyc3lUQM,396
67
- gradientai/types/agent_list_response.py,sha256=tnbIoQFQlGY625k8g723c-YQ5kO-jc1719LjcwoLDQs,4873
68
- gradientai/types/agent_retrieve_response.py,sha256=y7F3MascI1aBoVkPORghe_CQHstUXBVF4oMJcjDByMk,336
69
- gradientai/types/agent_update_params.py,sha256=aIuFbZmb0fBXvGFnjL4nWobXgwfVUe1IEiMqYzYPAJ8,1771
70
- gradientai/types/agent_update_response.py,sha256=tLXl32VqNHwi8oW9A9jRKMFcGjXR1edflnr7ermyspQ,332
71
- gradientai/types/agent_update_status_params.py,sha256=rK-txkmPGkR4cChMVJ0_t5fy3XZWBPlTP2eEykPST0w,467
72
- gradientai/types/agent_update_status_response.py,sha256=pbl3IO_hNYlVh3cFmXQccUZKSJe97pC-LFS-QZ5Ab2U,344
73
- gradientai/types/api_agent.py,sha256=dUGm4_bD_R7OQ_fSvQWZU6fSUVIMhFUAfnzUIfmZ2W0,6017
74
- gradientai/types/api_agent_api_key_info.py,sha256=fXqCbC6UVQg3X15WhGFoDn1g0x6IJ9ec5uK3siAnmE0,476
75
- gradientai/types/api_agent_model.py,sha256=GHX8w9IBBOsYnIFv8E0SF_vOWvETAG8kkrYqvz8S59g,1435
76
- gradientai/types/api_agreement.py,sha256=hMeoGBF2HySVHDm4dFTyamq19BexwhezL6Y1e_R1uFk,342
77
- gradientai/types/api_anthropic_api_key_info.py,sha256=Ii_1zvwZselJjf9XwUGDFWq-fT7VlgC_l-cfXQfpc-s,489
78
- gradientai/types/api_deployment_visibility.py,sha256=WT2fj4lgBorEOB9EirE50Xn0-J56a5v1zXuNpKCrzf0,340
79
- gradientai/types/api_evaluation_metric.py,sha256=veJhs4Qw7-06-e3_tXkC_mYokJXtWBiH5gT0losFEn8,672
80
- gradientai/types/api_indexing_job.py,sha256=kcnTvlBHxsvEQNlwVqZLx286tSHeB9J28KWuAnu0IuQ,1053
81
- gradientai/types/api_knowledge_base.py,sha256=EhP7oIFttRVUlAR495zzb8nu9cD1l5K4hVKvyjY5JlE,823
82
- gradientai/types/api_model.py,sha256=cTBrApG2za1_mR6Cca9vL254XczcxZM0lVMfXEqhFnE,718
83
- gradientai/types/api_model_version.py,sha256=heTuejUUfP0GVFThpYEhwPqBc331hrMBGF_8Uq2qcME,313
84
- gradientai/types/api_openai_api_key_info.py,sha256=_vfDX_fAIwHB1BXqNk7dUeA7meSU5GVTLbdDblSK5rY,582
85
- gradientai/types/api_retrieval_method.py,sha256=hbD5272cHgAqDCwPv7tqIUlqNnDAOIjkwDUTciglitE,377
86
- gradientai/types/api_workspace.py,sha256=cQLU3dFUJP24rbVlcyphD6YjZX7wTKsV9oESast9nYE,816
87
- gradientai/types/indexing_job_create_params.py,sha256=OhQcaCShz4GB3N27erLsRCDLJOXJMSTPnAL8jN099hg,346
88
- gradientai/types/indexing_job_create_response.py,sha256=TM02ila6BiuGjf7jh3wM3vGOuc8NRS8AHEknYvDEIrE,321
89
- gradientai/types/indexing_job_list_params.py,sha256=6bECitbPQGnm-WdSIULUcX47CeEVa5wqKWfYhWZC4Wo,337
90
- gradientai/types/indexing_job_list_response.py,sha256=6E0yPeaor5EYprBgXx4w5SW8jrAOi0umPe6YiYN38h4,480
91
- gradientai/types/indexing_job_retrieve_data_sources_response.py,sha256=-cmdbgm2WgygZER6JQp4E2kTkeXbAjjxZmIc1Jw-oW8,1361
92
- gradientai/types/indexing_job_retrieve_response.py,sha256=xqnOC9HhwZWpgDPDQC46dBtSrNJUupoqjphh5Da-OBM,325
93
- gradientai/types/indexing_job_update_cancel_params.py,sha256=b9t1-RXUbT45Qp4LkmJ1P6KxAA7OMLVJpqHdti8Mibk,426
94
- gradientai/types/indexing_job_update_cancel_response.py,sha256=zgUun3J5_KvzFZqSuNzSPXDXCxDq5GhkgMNNnBkH6QU,333
95
- gradientai/types/knowledge_base_create_params.py,sha256=qr9msSag-RTna-wcjDeGJ4xMi7vhnXbtGOub4b3nhME,2076
96
- gradientai/types/knowledge_base_create_response.py,sha256=bpVpd6X2_OfBZMQPdvkFXQb6YfHTPsXw3F1RpX4Vaso,342
97
- gradientai/types/knowledge_base_delete_response.py,sha256=Qwzyk1akgmNrjfYmtm53onng5UtFSXYxLzHKQNSuW6A,270
98
- gradientai/types/knowledge_base_list_params.py,sha256=ix0uGYXNXrRhZNRFtun3sLhE6Hd_yoSlgzvGyPqT0XY,341
99
- gradientai/types/knowledge_base_list_response.py,sha256=nPb2zOk8vja4jPGUknKLCk4zYOzUmsXe-Xt2c1GjBxg,501
100
- gradientai/types/knowledge_base_retrieve_response.py,sha256=zwsKaL1KEfgFbglBriT4XorDz6PUwmvgkIrnD0mzWpI,758
101
- gradientai/types/knowledge_base_update_params.py,sha256=8TRWSRY6c1tRTKPwBNkjwdw_1FbJ1Jmy7vX3covlj64,681
102
- gradientai/types/knowledge_base_update_response.py,sha256=hNxnfwd-eyRIAuy7KxcQfG-dEK3TZITMYmAv7VH7AyE,342
103
- gradientai/types/model_list_params.py,sha256=RGl48iwa2txemByFNe1EypUyE3CjPgsyr_bOu2mKesY,1335
104
- gradientai/types/model_list_response.py,sha256=mhviLaxxVtIuJiHWT_-ozDeQStg5FXV1VRbd-sz80kc,451
105
- gradientai/types/region_list_evaluation_metrics_response.py,sha256=XoQ7I-ChlgLsiJ8psWAbj37ANO0TyCFH8X3cNkcTF8Y,372
106
- gradientai/types/region_list_params.py,sha256=_oeMCCqhoSpB4rb3BvQw97w-Zo6eblgye3iuIoTjMHs,418
107
- gradientai/types/region_list_response.py,sha256=JyPfcqxMTafktlkuq5S2Vog77rMQ1RJ6_3cCa-gi0yA,515
108
- gradientai/types/agents/__init__.py,sha256=7lIU6xpoGfD6x16uuNW14EOGyck5nje5lt4DdOXD7Ds,2313
109
- gradientai/types/agents/api_key_create_params.py,sha256=nbdADmTDS1_MbQZYsGTPkmpHvWQV7s6R815uSBJO3KA,381
110
- gradientai/types/agents/api_key_create_response.py,sha256=3GURkoTxf4JQ3vegYIN5Ph68jz82k2UG6yKbLIN8Xqk,336
111
- gradientai/types/agents/api_key_delete_response.py,sha256=jDUrMgujEeW-Y-KqvoG28IGZSgPOOZ2XjuVIIo2lVrU,336
112
- gradientai/types/agents/api_key_list_params.py,sha256=2bqdW2M_aw0ae7qY-zDgnxa96gun0V9Wzv2hwISss-8,327
113
- gradientai/types/agents/api_key_list_response.py,sha256=wBycxE1gngdzPsB-BMVEtLf0NeYutTKCpF1pIz6Op0k,481
114
- gradientai/types/agents/api_key_regenerate_response.py,sha256=TML0mOW1vJ7A1E49xJsVfJSs4BTcNmhsKMNPv0GeGF8,344
115
- gradientai/types/agents/api_key_update_params.py,sha256=dK14YjCCy8GThEOBykQhgAvCuYPAHxFsf0nHIrmO534,547
116
- gradientai/types/agents/api_key_update_response.py,sha256=t8QvQ1HJT2DadyMUjCpmthK8OpqAUwo-7SKmqcs1RSI,336
117
- gradientai/types/agents/api_link_knowledge_base_output.py,sha256=7CppA-k04phV0oaqBiZssJKTfWHyDybJrNGY56NBT5k,348
118
- gradientai/types/agents/api_links.py,sha256=Iq5iQwOkRYuwLcuDLk54dUfrq0f2ZVEOXSpF744gYgA,403
119
- gradientai/types/agents/api_meta.py,sha256=-KyinzQqM5GSjD7E5xm7A4UALXAvLOyVNR1SYVOUFJM,297
120
- gradientai/types/agents/child_agent_add_params.py,sha256=VmIFWrFQxJjrGVgPX-bCYAR1ESUMTKEuuGHthQOzfDo,661
121
- gradientai/types/agents/child_agent_add_response.py,sha256=cZuIFwGWdgWhHk5KrYfSVvhNXRE4m5qnmzhTK4b7ZeE,368
122
- gradientai/types/agents/child_agent_delete_response.py,sha256=uufcv13FRiTra7WcnDxWylprHJ59k9_TWiR09-NH2oI,322
123
- gradientai/types/agents/child_agent_update_params.py,sha256=UWrF4dBq8cpv3GNXg4Q0lYKIKsBchDS5nodyvcW1sGA,682
124
- gradientai/types/agents/child_agent_update_response.py,sha256=iYpJdWB1zpBhTqsnn7Mn94ABh2Yt-kJJwXwTrn-118k,443
125
- gradientai/types/agents/child_agent_view_response.py,sha256=nbUgwyIbDmm5XuGycdl4QgNMUWaTxBsnFJG_0QoEbTI,355
126
- gradientai/types/agents/function_create_params.py,sha256=AagCrtptfN15XA0WdFWvzcDTsVqjH_ztjvW3yZXxIQU,514
127
- gradientai/types/agents/function_create_response.py,sha256=_HlKLn7L6NtRQJEQLTYAZRk1XLq8AmrspjxJ7NO3FOI,340
128
- gradientai/types/agents/function_delete_response.py,sha256=mXVfs4hsYbiRijPwfEAz3xhmpsGrJbz58YF-BLt-NrY,340
129
- gradientai/types/agents/function_update_params.py,sha256=rTc1J3VwUikAk3WR3lbWe_dq8QebS39C1LKm8kkXYs0,682
130
- gradientai/types/agents/function_update_response.py,sha256=_u_a9cf7DSx6wplCKx7ZkzM4-TBWNhIXgtVZY83gCWQ,340
131
- gradientai/types/agents/knowledge_base_detach_response.py,sha256=dCFJvnfuz6otqLZ9Lae11S3ouSSM9xkYU9UWenaKPjg,350
132
- gradientai/types/agents/version_list_params.py,sha256=0_3DhUbFDRyjUnn2G4saFOvuotRXI5EFZ4n4s6qUF8o,329
133
- gradientai/types/agents/version_list_response.py,sha256=vZhI4hcTxSAdnR7W6HVGMVJ7pN3scoNFE2HEoy-tD4I,2709
134
- gradientai/types/agents/version_update_params.py,sha256=j9tOda5wXmSOHsmcxQONo2mM-hEtrYi5-19HfGU_XnI,379
135
- gradientai/types/agents/version_update_response.py,sha256=nspPIkxQskT82tcW0JyG7bBVlXq_KU6CZzodTd9jfkQ,709
136
- gradientai/types/chat/__init__.py,sha256=zdTzozOxKOf2jRrwHBHU2Rmtz4nOTwQkYQl2ZbLJZyg,403
137
- gradientai/types/chat/chat_completion_token_logprob.py,sha256=6-ipUFfsXMf5L7FDFi127NaVkDtmEooVgGBF6Ts965A,1769
138
- gradientai/types/chat/completion_create_params.py,sha256=F4Dcrt5aYC_GEWUSN2OA3Zm5ImevZ7tFuTxBH7RyooM,6635
139
- gradientai/types/chat/completion_create_response.py,sha256=5nCsU9BeXjB5HmkBNemRZHyFwegvKouSBHjzxvb4EFM,2405
140
- gradientai/types/inference/__init__.py,sha256=HiiX53VbRzJh0c3PQlGFEbqo5ikr4BPPj6uJsWmeOPM,963
141
- gradientai/types/inference/api_key_create_params.py,sha256=MOy5Bdr1wNBqCvqzyZ0FLfFY2a97q6eXCzgCR1wcLAE,263
142
- gradientai/types/inference/api_key_create_response.py,sha256=HjTGC3rpPKqYPE-D6Z9jIE8fqrmo2hTTGBrt00cMwIU,335
143
- gradientai/types/inference/api_key_delete_response.py,sha256=18JbFhk0T0qsNM8PosxQDaBwy-fzKLclG_cAbk8WqS4,335
144
- gradientai/types/inference/api_key_list_params.py,sha256=2bqdW2M_aw0ae7qY-zDgnxa96gun0V9Wzv2hwISss-8,327
145
- gradientai/types/inference/api_key_list_response.py,sha256=H0b-9av4znmQ7MnrvlVu3fe0kaGBIUrve2su1klDLrU,496
146
- gradientai/types/inference/api_key_update_params.py,sha256=Jeq5mm_HXgkh77SjYpct-vdc1UZBWAo9fUtoZSAxCpQ,385
147
- gradientai/types/inference/api_key_update_regenerate_response.py,sha256=EdejYl_Kuu3r0O-Zzu8sO7P32lQSzsVpJu-m7j1TkpI,355
148
- gradientai/types/inference/api_key_update_response.py,sha256=x77TF5sMy-k9wVEBP0h1bkp2bi1nX1oP4SpzetnF-Rc,335
149
- gradientai/types/inference/api_model_api_key_info.py,sha256=P8vLRvhdCqqkD6Jbzfa6cijmCRMeJGHw70nMEvcOKCU,477
150
- gradientai/types/inference/model.py,sha256=90sZfC9edkPIt6surNqQZFe1w9_U0ZIw-BkBVT_4wXs,533
151
- gradientai/types/inference/model_list_response.py,sha256=e1WSiLVb7UKeJ9jGv3eaAT70Z7s087VTu_1aawy5FmY,330
152
- gradientai/types/knowledge_bases/__init__.py,sha256=K6rMh3H59755Scp5BHYR5qziUtuAABXHDiauUdCxXHM,1320
153
- gradientai/types/knowledge_bases/api_file_upload_data_source.py,sha256=pwuooMktHMl3-c9_XAqisMW2euFXE_WzLW2MrH4cphY,363
154
- gradientai/types/knowledge_bases/api_file_upload_data_source_param.py,sha256=BYJsp891zGJL9NxKAQA9wj7ZI5oW8O7ktpGQTf78-Z4,349
155
- gradientai/types/knowledge_bases/api_knowledge_base_data_source.py,sha256=TaEbI8aDSIbqWWz4eH1bxsLixGf3HskPBe49dCRqRUE,1260
156
- gradientai/types/knowledge_bases/api_spaces_data_source.py,sha256=hikZqBGk2a6deuYtL5o0x2a0ShTk_-r6Mrlocw04g54,333
157
- gradientai/types/knowledge_bases/api_spaces_data_source_param.py,sha256=fHHNZiL9k5JX8NLFJSrrh11S6mHE6l1Tv_GOs5HmSvw,319
158
- gradientai/types/knowledge_bases/api_web_crawler_data_source.py,sha256=TwP9_tIh7lZyYBYA8vcUBsJ8t1njlqvRnSkbe5kBFx4,927
159
- gradientai/types/knowledge_bases/api_web_crawler_data_source_param.py,sha256=5RNeniApD7_5LobZWFhQ3iZ2RaLa2Lj4hpqXvIPAfco,884
160
- gradientai/types/knowledge_bases/aws_data_source_param.py,sha256=MXImPMnxy2B2LEof2CSGH2BRIs77HrN6lYgwdYHFx7k,345
161
- gradientai/types/knowledge_bases/data_source_create_params.py,sha256=qXoTkAJ3Mta5Lx3q8-Fd5EXwsQXhGmOw1NH2PjQJ-pY,739
162
- gradientai/types/knowledge_bases/data_source_create_response.py,sha256=Pr6z8AvrNNvgABGB9cL_-gdwBYQn8z3OYDrramZeWIY,381
163
- gradientai/types/knowledge_bases/data_source_delete_response.py,sha256=9W0vPF3zE6aoO4pKKY1FWNFhvyBSJ4UJ0bq-jIf5Rug,324
164
- gradientai/types/knowledge_bases/data_source_list_params.py,sha256=LE15JRXzJdFffHga_aS1JUnGc-gDdTbSfdV-hyywVTw,335
165
- gradientai/types/knowledge_bases/data_source_list_response.py,sha256=dk2gRIfd-mhF-r8OrbOI2J2DxLQ-SSwTkiKJ5jzqXnI,542
166
- gradientai/types/providers/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
167
- gradientai/types/providers/anthropic/__init__.py,sha256=Rc-P39qouKDD0KcLrR0xXtDercCG-01WvVGfITLxH3w,839
168
- gradientai/types/providers/anthropic/key_create_params.py,sha256=Wpo2FgKsoMDwT0DrN9QiFdxGL93QUV7PsyZjU_dZwVo,275
169
- gradientai/types/providers/anthropic/key_create_response.py,sha256=QMr7WcgcSAU4-X3OBzZ_x8z37UQKN4gVNctFjFx35ZU,344
170
- gradientai/types/providers/anthropic/key_delete_response.py,sha256=woDhj5cV-I-bl-8SahR4yIhLzXXOl4YQjuZq9JhQXow,344
171
- gradientai/types/providers/anthropic/key_list_agents_params.py,sha256=ZOwFGGQpBm0H-jceINE2yFj5SQsRi3eAYJldIIhdZG0,333
172
- gradientai/types/providers/anthropic/key_list_agents_response.py,sha256=G1YsCwvbTgCh60VMIW1rVnQ_Oc4-YMZfxIWyTsDa1JI,507
173
- gradientai/types/providers/anthropic/key_list_params.py,sha256=NIUqtMZ4wCEmsf4pSVYf52rlKg4j98VeXHdsBHvJkb0,321
174
- gradientai/types/providers/anthropic/key_list_response.py,sha256=ynKrmMkMxxB0eQFWg4vfWM0UVBysKBTBR-dC_3jzuPE,507
175
- gradientai/types/providers/anthropic/key_retrieve_response.py,sha256=kwlHSeYuNimwsfAc11EYYiONL1QEuj-nRSyYbenCdMA,348
176
- gradientai/types/providers/anthropic/key_update_params.py,sha256=Y3soYvQEpYbnofgxQoLdeZFolk-NcUSnlUg8BQ2BliU,398
177
- gradientai/types/providers/anthropic/key_update_response.py,sha256=RsO2ImbQNdJgGNDUPwnOMrE2Bq_pw4e8f_DBB01ZsPw,344
178
- gradientai/types/providers/openai/__init__.py,sha256=vTB3oppxWE1E9S4c2XzsDERHaaRUkUKGuWUsgp2PY5Y,863
179
- gradientai/types/providers/openai/key_create_params.py,sha256=Wpo2FgKsoMDwT0DrN9QiFdxGL93QUV7PsyZjU_dZwVo,275
180
- gradientai/types/providers/openai/key_create_response.py,sha256=D8eRhllf50P3LJHMDzMT2YWuymUXtV-2KgfAZdRHM08,335
181
- gradientai/types/providers/openai/key_delete_response.py,sha256=AOF_SSCaagPjxP9mEHEXuTX2G8mBYyyaVwviNC0PfTg,335
182
- gradientai/types/providers/openai/key_list_params.py,sha256=NIUqtMZ4wCEmsf4pSVYf52rlKg4j98VeXHdsBHvJkb0,321
183
- gradientai/types/providers/openai/key_list_response.py,sha256=MRJSatW-aQhlBA0gcKpbnX5Kso_BJZE9oO3BrVnEMHc,498
184
- gradientai/types/providers/openai/key_retrieve_agents_params.py,sha256=iXx-1E5feJfrtjuNIXV0SsCTMB_wA88edXunaMd0sEY,341
185
- gradientai/types/providers/openai/key_retrieve_agents_response.py,sha256=3sLjYKvtp3L51dfToRiR3fj9cDEK-6e0yVpADZhzO4s,515
186
- gradientai/types/providers/openai/key_retrieve_response.py,sha256=96ZitCFjLlTzk8UhB2Q1ekmLYF2fer_9TGZ1kzhT2Ck,339
187
- gradientai/types/providers/openai/key_update_params.py,sha256=Y3soYvQEpYbnofgxQoLdeZFolk-NcUSnlUg8BQ2BliU,398
188
- gradientai/types/providers/openai/key_update_response.py,sha256=918Y7yxffOe0DmFci54fq0-zTO_1Lc6jruSok8WsBX4,335
189
- gradientai/types/regions/__init__.py,sha256=u91FCpT0l2cMLBak4gNeSOthBXDe26ohmJP8mgr6MGc,2302
190
- gradientai/types/regions/api_evaluation_test_case.py,sha256=7uflno1wTs7QEfDi2tSYiv5laOxTtgWraRLOlHdRhMY,1111
191
- gradientai/types/regions/api_star_metric.py,sha256=zoIdToH1tDzi1rXSev8ys-VFDHOiL-PLDVk4NgM6jF8,444
192
- gradientai/types/regions/api_star_metric_param.py,sha256=21SYQ7J8rgYtw8JIDgPb2d_Xh1plzBjVPPgWuwqZYwY,430
193
- gradientai/types/regions/evaluation_dataset_create_file_upload_presigned_urls_params.py,sha256=5VmGf4WuVMmIhjFbJcVRoyOTXq-Z484Z0utiza2b4k8,555
194
- gradientai/types/regions/evaluation_dataset_create_file_upload_presigned_urls_response.py,sha256=D71yt5RvwxzY0M33uTPGcxlC8xhhf2pske-0-Uur8x8,964
195
- gradientai/types/regions/evaluation_dataset_create_params.py,sha256=_Ab7rv6id0zOWDsZynBVZH9T_OL35l39HY-hMROynp8,546
196
- gradientai/types/regions/evaluation_dataset_create_response.py,sha256=UJGh8WSeleKopfjG9MAy5uCW-l0L8vtDYt_rPm-yiTE,333
197
- gradientai/types/regions/evaluation_run_create_params.py,sha256=zIPxUmneZmi0NziqiLuQ2wYou9KtrwWKiRmY5yBnsVA,409
198
- gradientai/types/regions/evaluation_run_create_response.py,sha256=YhKW6GO9hisJSDGW1v_wAIYG45iaFCpYT2MAYAE66HE,286
199
- gradientai/types/regions/evaluation_run_retrieve_response.py,sha256=12575A9wS1NXSr4zSRTLgMfo-u_SE5mjDcTgxUa8k-A,363
200
- gradientai/types/regions/evaluation_test_case_create_params.py,sha256=MDzlgUtT_TvI3AEBi10oqqqh46GY7Hzbhzks-9NWzL8,721
201
- gradientai/types/regions/evaluation_test_case_create_response.py,sha256=6o_tJW7oECyIFtOl9C96eaHoMF_GwIGuwK772BMkcNY,319
202
- gradientai/types/regions/evaluation_test_case_list_evaluation_runs_params.py,sha256=YpIdWEwwEtBStTZl6fuD60fT7xmMXk8cj2yuWTQz-NY,371
203
- gradientai/types/regions/evaluation_test_case_list_evaluation_runs_response.py,sha256=0rO1nzO1rGMV_5pUIkbhS_h3rjPMLMH6nBJg3KOyImM,441
204
- gradientai/types/regions/evaluation_test_case_list_response.py,sha256=8BqMiIhwizpSFles_MpvcDWkYqzEFfFwY6icGzBkSfY,384
205
- gradientai/types/regions/evaluation_test_case_retrieve_response.py,sha256=zr5U956-FgFoPAUSSEvOI8CsyBFDdGG-dpC5rIfxZ60,379
206
- gradientai/types/regions/evaluation_test_case_update_params.py,sha256=S0FRlU-b1dRQlDKJFthcAmIGmjb4IwAy4zL9uQ0XKqM,809
207
- gradientai/types/regions/evaluation_test_case_update_response.py,sha256=SBsxKPG4_0T6LoL7rKj9kp0J4sHqtamRszprgD064h4,369
208
- gradientai/types/regions/evaluation_runs/__init__.py,sha256=ksej1cfeP_8Xx1O5fCCpjyS61SdLc0zUoFgWeuXqylg,529
209
- gradientai/types/regions/evaluation_runs/api_evaluation_metric_result.py,sha256=CalVWddc_GbeusCj3LpR6cqt2Rlg0SkWXEjIdx0EQlg,451
210
- gradientai/types/regions/evaluation_runs/api_evaluation_run.py,sha256=v9GeMFcbqjrcGCDyl--DdUS6BOBMJSJmDJh7ySRlJRI,1595
211
- gradientai/types/regions/evaluation_runs/api_prompt.py,sha256=7tTPcgBSbc-RhaSs307Q5MfHV_4v5aRX5nntPyetP8k,1199
212
- gradientai/types/regions/evaluation_runs/result_retrieve_prompt_response.py,sha256=sRbS-N1wTK76RFuQ7_nZzAXUg7KHAae_Hdm7rSW01Us,316
213
- gradientai/types/regions/evaluation_runs/result_retrieve_response.py,sha256=KYCiSDZy199tcGicweZ8elywirPOCtsBuTUQfU7SPII,457
214
- c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info/METADATA,sha256=130pVBC_dDmGSNGxmiTzESf_9leItYZ27IabBd44D6s,14523
215
- c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
216
- c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info/licenses/LICENSE,sha256=AzxEF8mEks6hu5V_87CXF8gLdL875WeO8FmQtEZTFok,11341
217
- c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info/RECORD,,