adaline-api 1.0.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.
Files changed (233) hide show
  1. adaline_api/__init__.py +193 -0
  2. adaline_api/api/__init__.py +5 -0
  3. adaline_api/api/default_api.py +1221 -0
  4. adaline_api/api_client.py +804 -0
  5. adaline_api/api_response.py +21 -0
  6. adaline_api/configuration.py +582 -0
  7. adaline_api/exceptions.py +216 -0
  8. adaline_api/models/__init__.py +89 -0
  9. adaline_api/models/api_message_content.py +113 -0
  10. adaline_api/models/api_message_content_type.py +113 -0
  11. adaline_api/models/base64_hosted_image_content_value.py +99 -0
  12. adaline_api/models/base64_hosted_image_content_value_type.py +99 -0
  13. adaline_api/models/base64_hosted_pdf_content_value.py +99 -0
  14. adaline_api/models/base64_hosted_pdf_content_value_type.py +99 -0
  15. adaline_api/models/base64_image_content_value.py +105 -0
  16. adaline_api/models/base64_image_content_value_type.py +105 -0
  17. adaline_api/models/base64_media.py +118 -0
  18. adaline_api/models/base64_media_type.py +118 -0
  19. adaline_api/models/base64_pdf_content_value.py +96 -0
  20. adaline_api/models/base64_pdf_content_value_type.py +96 -0
  21. adaline_api/models/base_entity.py +96 -0
  22. adaline_api/models/config_type.py +94 -0
  23. adaline_api/models/content.py +196 -0
  24. adaline_api/models/content_type.py +196 -0
  25. adaline_api/models/create_log_span_request.py +94 -0
  26. adaline_api/models/create_log_span_request_span.py +150 -0
  27. adaline_api/models/create_log_span_request_type.py +94 -0
  28. adaline_api/models/create_log_span_response.py +88 -0
  29. adaline_api/models/create_log_span_response_type.py +88 -0
  30. adaline_api/models/create_log_trace_request.py +104 -0
  31. adaline_api/models/create_log_trace_request_span.py +146 -0
  32. adaline_api/models/create_log_trace_request_trace.py +122 -0
  33. adaline_api/models/create_log_trace_request_type.py +104 -0
  34. adaline_api/models/create_log_trace_response.py +90 -0
  35. adaline_api/models/create_log_trace_response_type.py +90 -0
  36. adaline_api/models/deployment.py +107 -0
  37. adaline_api/models/deployment_prompt.py +121 -0
  38. adaline_api/models/deployment_prompt_config.py +94 -0
  39. adaline_api/models/deployment_prompt_config_type.py +94 -0
  40. adaline_api/models/deployment_prompt_type.py +121 -0
  41. adaline_api/models/deployment_prompt_variables.py +96 -0
  42. adaline_api/models/deployment_prompt_variables_type.py +96 -0
  43. adaline_api/models/deployment_type.py +107 -0
  44. adaline_api/models/deployment_type_prompt.py +121 -0
  45. adaline_api/models/enum_value.py +166 -0
  46. adaline_api/models/enum_value_type.py +166 -0
  47. adaline_api/models/error_response.py +91 -0
  48. adaline_api/models/error_response_type.py +91 -0
  49. adaline_api/models/function.py +101 -0
  50. adaline_api/models/function_parameter.py +139 -0
  51. adaline_api/models/function_parameter_type.py +139 -0
  52. adaline_api/models/function_parameters.py +115 -0
  53. adaline_api/models/function_parameters_type.py +115 -0
  54. adaline_api/models/function_request_http.py +121 -0
  55. adaline_api/models/function_request_http_type.py +121 -0
  56. adaline_api/models/function_request_retry.py +92 -0
  57. adaline_api/models/function_request_retry_type.py +92 -0
  58. adaline_api/models/function_tool.py +106 -0
  59. adaline_api/models/function_tool_definition.py +91 -0
  60. adaline_api/models/function_tool_definition_type.py +104 -0
  61. adaline_api/models/function_tool_type.py +106 -0
  62. adaline_api/models/function_tool_type_definition.py +91 -0
  63. adaline_api/models/function_type.py +106 -0
  64. adaline_api/models/image_content.py +109 -0
  65. adaline_api/models/image_content_type.py +109 -0
  66. adaline_api/models/image_content_value.py +140 -0
  67. adaline_api/models/image_content_value_type.py +140 -0
  68. adaline_api/models/image_message_content.py +111 -0
  69. adaline_api/models/image_message_content_type.py +111 -0
  70. adaline_api/models/image_message_content_type_value.py +154 -0
  71. adaline_api/models/image_message_content_value.py +154 -0
  72. adaline_api/models/image_source.py +140 -0
  73. adaline_api/models/image_source_type.py +140 -0
  74. adaline_api/models/log_attributes_value.py +160 -0
  75. adaline_api/models/log_feedback_comment.py +98 -0
  76. adaline_api/models/log_span.py +180 -0
  77. adaline_api/models/log_span_all_of_internal_feedback.py +98 -0
  78. adaline_api/models/log_span_content.py +224 -0
  79. adaline_api/models/log_span_embeddings_content.py +101 -0
  80. adaline_api/models/log_span_event.py +96 -0
  81. adaline_api/models/log_span_function_content.py +101 -0
  82. adaline_api/models/log_span_guardrail_content.py +101 -0
  83. adaline_api/models/log_span_model_content.py +109 -0
  84. adaline_api/models/log_span_model_stream_content.py +111 -0
  85. adaline_api/models/log_span_other_content.py +101 -0
  86. adaline_api/models/log_span_parsed_content.py +101 -0
  87. adaline_api/models/log_span_retrieval_content.py +101 -0
  88. adaline_api/models/log_span_tool_content.py +101 -0
  89. adaline_api/models/log_trace.py +132 -0
  90. adaline_api/models/log_trace_attributes_inner.py +102 -0
  91. adaline_api/models/log_trace_attributes_value.py +160 -0
  92. adaline_api/models/log_trace_attributes_value_type.py +160 -0
  93. adaline_api/models/log_trace_tags_inner.py +96 -0
  94. adaline_api/models/log_trace_type.py +132 -0
  95. adaline_api/models/log_trace_type_attributes_inner.py +102 -0
  96. adaline_api/models/log_trace_type_tags_inner.py +96 -0
  97. adaline_api/models/mcp_server.py +114 -0
  98. adaline_api/models/mcp_server_tool_configuration.py +90 -0
  99. adaline_api/models/mcp_server_tool_configuration_type.py +90 -0
  100. adaline_api/models/mcp_server_type.py +114 -0
  101. adaline_api/models/message.py +98 -0
  102. adaline_api/models/message_content_inner.py +182 -0
  103. adaline_api/models/message_content_type_inner.py +182 -0
  104. adaline_api/models/message_type.py +98 -0
  105. adaline_api/models/modality_enum.py +41 -0
  106. adaline_api/models/modality_enum_type.py +41 -0
  107. adaline_api/models/pdf_content.py +106 -0
  108. adaline_api/models/pdf_content_file.py +91 -0
  109. adaline_api/models/pdf_content_type.py +106 -0
  110. adaline_api/models/pdf_content_type_file.py +91 -0
  111. adaline_api/models/pdf_content_value.py +140 -0
  112. adaline_api/models/pdf_content_value_type.py +140 -0
  113. adaline_api/models/pdf_message_content.py +108 -0
  114. adaline_api/models/pdf_message_content_file.py +91 -0
  115. adaline_api/models/pdf_message_content_type.py +108 -0
  116. adaline_api/models/pdf_message_content_type_file.py +91 -0
  117. adaline_api/models/pdf_message_content_type_value.py +154 -0
  118. adaline_api/models/pdf_message_content_value.py +154 -0
  119. adaline_api/models/prompt_variable.py +96 -0
  120. adaline_api/models/prompt_variable_value.py +210 -0
  121. adaline_api/models/reasoning_content.py +100 -0
  122. adaline_api/models/reasoning_content_type.py +100 -0
  123. adaline_api/models/reasoning_content_value.py +98 -0
  124. adaline_api/models/reasoning_content_value_type.py +98 -0
  125. adaline_api/models/reasoning_content_value_union.py +140 -0
  126. adaline_api/models/reasoning_content_value_union_type.py +140 -0
  127. adaline_api/models/reasoning_message_content.py +102 -0
  128. adaline_api/models/reasoning_message_content_type.py +102 -0
  129. adaline_api/models/reasoning_message_content_type_value.py +140 -0
  130. adaline_api/models/reasoning_message_content_value.py +140 -0
  131. adaline_api/models/reasoning_redacted_value.py +109 -0
  132. adaline_api/models/reasoning_redacted_value_type.py +109 -0
  133. adaline_api/models/reasoning_thinking_value.py +111 -0
  134. adaline_api/models/reasoning_thinking_value_type.py +111 -0
  135. adaline_api/models/reasoning_value.py +140 -0
  136. adaline_api/models/reasoning_value_type.py +140 -0
  137. adaline_api/models/redacted_reasoning_content_value.py +96 -0
  138. adaline_api/models/redacted_reasoning_content_value_type.py +96 -0
  139. adaline_api/models/response_schema.py +105 -0
  140. adaline_api/models/response_schema_property.py +135 -0
  141. adaline_api/models/response_schema_property_enum_inner.py +166 -0
  142. adaline_api/models/response_schema_property_type.py +143 -0
  143. adaline_api/models/response_schema_property_type_enum_inner.py +166 -0
  144. adaline_api/models/response_schema_property_type_type.py +143 -0
  145. adaline_api/models/response_schema_structure.py +122 -0
  146. adaline_api/models/response_schema_structure_type.py +122 -0
  147. adaline_api/models/response_schema_type.py +105 -0
  148. adaline_api/models/role_enum.py +39 -0
  149. adaline_api/models/role_enum_type.py +39 -0
  150. adaline_api/models/span_content_detailed.py +112 -0
  151. adaline_api/models/span_content_detailed_type.py +112 -0
  152. adaline_api/models/span_content_detailed_type_variables_value.py +94 -0
  153. adaline_api/models/span_content_detailed_variables_value.py +94 -0
  154. adaline_api/models/span_content_minimal.py +91 -0
  155. adaline_api/models/span_content_minimal_type.py +91 -0
  156. adaline_api/models/span_log_req_attributes.py +160 -0
  157. adaline_api/models/span_log_req_attributes_type.py +160 -0
  158. adaline_api/models/span_log_req_content.py +137 -0
  159. adaline_api/models/span_log_req_content_type.py +137 -0
  160. adaline_api/models/span_log_request.py +93 -0
  161. adaline_api/models/span_log_request_span.py +139 -0
  162. adaline_api/models/span_log_request_type.py +93 -0
  163. adaline_api/models/span_log_request_type_span.py +139 -0
  164. adaline_api/models/span_log_response.py +87 -0
  165. adaline_api/models/span_log_response_type.py +87 -0
  166. adaline_api/models/spans_request_attribute_value.py +160 -0
  167. adaline_api/models/spans_request_attribute_value_type.py +160 -0
  168. adaline_api/models/spans_request_content_value.py +143 -0
  169. adaline_api/models/spans_request_content_value_type.py +143 -0
  170. adaline_api/models/text_content.py +96 -0
  171. adaline_api/models/text_content_type.py +96 -0
  172. adaline_api/models/text_message_content.py +98 -0
  173. adaline_api/models/text_message_content_type.py +98 -0
  174. adaline_api/models/tool_call_content.py +105 -0
  175. adaline_api/models/tool_call_content_type.py +105 -0
  176. adaline_api/models/tool_call_message_content.py +107 -0
  177. adaline_api/models/tool_call_message_content_type.py +107 -0
  178. adaline_api/models/tool_response_content.py +109 -0
  179. adaline_api/models/tool_response_content_api_response.py +88 -0
  180. adaline_api/models/tool_response_content_type.py +109 -0
  181. adaline_api/models/tool_response_content_type_api_response.py +88 -0
  182. adaline_api/models/tool_response_message_content.py +111 -0
  183. adaline_api/models/tool_response_message_content_api_response.py +87 -0
  184. adaline_api/models/tool_response_message_content_type.py +111 -0
  185. adaline_api/models/tool_response_message_content_type_api_response.py +87 -0
  186. adaline_api/models/tool_type.py +113 -0
  187. adaline_api/models/trace_log_patch_request.py +137 -0
  188. adaline_api/models/trace_log_patch_request_one_of.py +97 -0
  189. adaline_api/models/trace_log_patch_request_one_of1.py +97 -0
  190. adaline_api/models/trace_log_patch_request_type.py +137 -0
  191. adaline_api/models/trace_log_patch_request_type_one_of.py +97 -0
  192. adaline_api/models/trace_log_patch_request_type_one_of1.py +97 -0
  193. adaline_api/models/trace_log_patch_response.py +87 -0
  194. adaline_api/models/trace_log_patch_response_type.py +87 -0
  195. adaline_api/models/trace_log_request.py +103 -0
  196. adaline_api/models/trace_log_request_spans_inner.py +135 -0
  197. adaline_api/models/trace_log_request_trace.py +121 -0
  198. adaline_api/models/trace_log_request_type.py +103 -0
  199. adaline_api/models/trace_log_request_type_spans_inner.py +135 -0
  200. adaline_api/models/trace_log_request_type_trace.py +121 -0
  201. adaline_api/models/trace_log_response.py +89 -0
  202. adaline_api/models/trace_log_response_type.py +89 -0
  203. adaline_api/models/trace_request_attribute_value.py +160 -0
  204. adaline_api/models/trace_request_attribute_value_type.py +160 -0
  205. adaline_api/models/update_log_trace_request.py +98 -0
  206. adaline_api/models/update_log_trace_request_attribute_item.py +140 -0
  207. adaline_api/models/update_log_trace_request_attribute_item_one_of.py +102 -0
  208. adaline_api/models/update_log_trace_request_attribute_item_one_of1.py +96 -0
  209. adaline_api/models/update_log_trace_request_attribute_item_one_of_value.py +160 -0
  210. adaline_api/models/update_log_trace_request_tag_item.py +140 -0
  211. adaline_api/models/update_log_trace_request_tag_item_one_of.py +97 -0
  212. adaline_api/models/update_log_trace_request_tag_item_one_of1.py +97 -0
  213. adaline_api/models/update_log_trace_request_trace.py +120 -0
  214. adaline_api/models/update_log_trace_request_type.py +98 -0
  215. adaline_api/models/update_log_trace_response.py +87 -0
  216. adaline_api/models/update_log_trace_response_type.py +87 -0
  217. adaline_api/models/url_image_content_value.py +96 -0
  218. adaline_api/models/url_image_content_value_type.py +96 -0
  219. adaline_api/models/url_media.py +109 -0
  220. adaline_api/models/url_media_type.py +109 -0
  221. adaline_api/models/url_pdf_content_value.py +96 -0
  222. adaline_api/models/url_pdf_content_value_type.py +96 -0
  223. adaline_api/models/variable.py +96 -0
  224. adaline_api/models/variable_type.py +96 -0
  225. adaline_api/models/variable_type_value.py +196 -0
  226. adaline_api/models/variable_value.py +196 -0
  227. adaline_api/models/variables_type.py +96 -0
  228. adaline_api/py.typed +0 -0
  229. adaline_api/rest.py +213 -0
  230. adaline_api-1.0.0.dist-info/METADATA +227 -0
  231. adaline_api-1.0.0.dist-info/RECORD +233 -0
  232. adaline_api-1.0.0.dist-info/WHEEL +5 -0
  233. adaline_api-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,196 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Adaline API
5
+
6
+ API for managing Adaline deployments, logs, and core type definitions.
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import json
17
+ import pprint
18
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, ValidationError, field_validator
19
+ from typing import Any, List, Optional
20
+ from adaline_api.models.image_content_type import ImageContentType
21
+ from adaline_api.models.pdf_content_type import PdfContentType
22
+ from adaline_api.models.reasoning_content_type import ReasoningContentType
23
+ from adaline_api.models.text_content_type import TextContentType
24
+ from adaline_api.models.tool_call_content_type import ToolCallContentType
25
+ from adaline_api.models.tool_response_content_type import ToolResponseContentType
26
+ from pydantic import StrictStr, Field
27
+ from typing import Union, List, Set, Optional, Dict
28
+ from typing_extensions import Literal, Self
29
+
30
+ VARIABLETYPEVALUE_ONE_OF_SCHEMAS = ["ImageContentType", "PdfContentType", "ReasoningContentType", "TextContentType", "ToolCallContentType", "ToolResponseContentType"]
31
+
32
+ class VariableTypeValue(BaseModel):
33
+ """
34
+ VariableTypeValue
35
+ """
36
+ # data type: TextContentType
37
+ oneof_schema_1_validator: Optional[TextContentType] = None
38
+ # data type: ImageContentType
39
+ oneof_schema_2_validator: Optional[ImageContentType] = None
40
+ # data type: PdfContentType
41
+ oneof_schema_3_validator: Optional[PdfContentType] = None
42
+ # data type: ReasoningContentType
43
+ oneof_schema_4_validator: Optional[ReasoningContentType] = None
44
+ # data type: ToolCallContentType
45
+ oneof_schema_5_validator: Optional[ToolCallContentType] = None
46
+ # data type: ToolResponseContentType
47
+ oneof_schema_6_validator: Optional[ToolResponseContentType] = None
48
+ actual_instance: Optional[Union[ImageContentType, PdfContentType, ReasoningContentType, TextContentType, ToolCallContentType, ToolResponseContentType]] = None
49
+ one_of_schemas: Set[str] = { "ImageContentType", "PdfContentType", "ReasoningContentType", "TextContentType", "ToolCallContentType", "ToolResponseContentType" }
50
+
51
+ model_config = ConfigDict(
52
+ validate_assignment=True,
53
+ protected_namespaces=(),
54
+ )
55
+
56
+
57
+ discriminator_value_class_map: Dict[str, str] = {
58
+ }
59
+
60
+ def __init__(self, *args, **kwargs) -> None:
61
+ if args:
62
+ if len(args) > 1:
63
+ raise ValueError("If a position argument is used, only 1 is allowed to set `actual_instance`")
64
+ if kwargs:
65
+ raise ValueError("If a position argument is used, keyword arguments cannot be used.")
66
+ super().__init__(actual_instance=args[0])
67
+ else:
68
+ super().__init__(**kwargs)
69
+
70
+ @field_validator('actual_instance')
71
+ def actual_instance_must_validate_oneof(cls, v):
72
+ instance = VariableTypeValue.model_construct()
73
+ error_messages = []
74
+ match = 0
75
+ # validate data type: TextContentType
76
+ if not isinstance(v, TextContentType):
77
+ error_messages.append(f"Error! Input type `{type(v)}` is not `TextContentType`")
78
+ else:
79
+ match += 1
80
+ # validate data type: ImageContentType
81
+ if not isinstance(v, ImageContentType):
82
+ error_messages.append(f"Error! Input type `{type(v)}` is not `ImageContentType`")
83
+ else:
84
+ match += 1
85
+ # validate data type: PdfContentType
86
+ if not isinstance(v, PdfContentType):
87
+ error_messages.append(f"Error! Input type `{type(v)}` is not `PdfContentType`")
88
+ else:
89
+ match += 1
90
+ # validate data type: ReasoningContentType
91
+ if not isinstance(v, ReasoningContentType):
92
+ error_messages.append(f"Error! Input type `{type(v)}` is not `ReasoningContentType`")
93
+ else:
94
+ match += 1
95
+ # validate data type: ToolCallContentType
96
+ if not isinstance(v, ToolCallContentType):
97
+ error_messages.append(f"Error! Input type `{type(v)}` is not `ToolCallContentType`")
98
+ else:
99
+ match += 1
100
+ # validate data type: ToolResponseContentType
101
+ if not isinstance(v, ToolResponseContentType):
102
+ error_messages.append(f"Error! Input type `{type(v)}` is not `ToolResponseContentType`")
103
+ else:
104
+ match += 1
105
+ if match > 1:
106
+ # more than 1 match
107
+ raise ValueError("Multiple matches found when setting `actual_instance` in VariableTypeValue with oneOf schemas: ImageContentType, PdfContentType, ReasoningContentType, TextContentType, ToolCallContentType, ToolResponseContentType. Details: " + ", ".join(error_messages))
108
+ elif match == 0:
109
+ # no match
110
+ raise ValueError("No match found when setting `actual_instance` in VariableTypeValue with oneOf schemas: ImageContentType, PdfContentType, ReasoningContentType, TextContentType, ToolCallContentType, ToolResponseContentType. Details: " + ", ".join(error_messages))
111
+ else:
112
+ return v
113
+
114
+ @classmethod
115
+ def from_dict(cls, obj: Union[str, Dict[str, Any]]) -> Self:
116
+ return cls.from_json(json.dumps(obj))
117
+
118
+ @classmethod
119
+ def from_json(cls, json_str: str) -> Self:
120
+ """Returns the object represented by the json string"""
121
+ instance = cls.model_construct()
122
+ error_messages = []
123
+ match = 0
124
+
125
+ # deserialize data into TextContentType
126
+ try:
127
+ instance.actual_instance = TextContentType.from_json(json_str)
128
+ match += 1
129
+ except (ValidationError, ValueError) as e:
130
+ error_messages.append(str(e))
131
+ # deserialize data into ImageContentType
132
+ try:
133
+ instance.actual_instance = ImageContentType.from_json(json_str)
134
+ match += 1
135
+ except (ValidationError, ValueError) as e:
136
+ error_messages.append(str(e))
137
+ # deserialize data into PdfContentType
138
+ try:
139
+ instance.actual_instance = PdfContentType.from_json(json_str)
140
+ match += 1
141
+ except (ValidationError, ValueError) as e:
142
+ error_messages.append(str(e))
143
+ # deserialize data into ReasoningContentType
144
+ try:
145
+ instance.actual_instance = ReasoningContentType.from_json(json_str)
146
+ match += 1
147
+ except (ValidationError, ValueError) as e:
148
+ error_messages.append(str(e))
149
+ # deserialize data into ToolCallContentType
150
+ try:
151
+ instance.actual_instance = ToolCallContentType.from_json(json_str)
152
+ match += 1
153
+ except (ValidationError, ValueError) as e:
154
+ error_messages.append(str(e))
155
+ # deserialize data into ToolResponseContentType
156
+ try:
157
+ instance.actual_instance = ToolResponseContentType.from_json(json_str)
158
+ match += 1
159
+ except (ValidationError, ValueError) as e:
160
+ error_messages.append(str(e))
161
+
162
+ if match > 1:
163
+ # more than 1 match
164
+ raise ValueError("Multiple matches found when deserializing the JSON string into VariableTypeValue with oneOf schemas: ImageContentType, PdfContentType, ReasoningContentType, TextContentType, ToolCallContentType, ToolResponseContentType. Details: " + ", ".join(error_messages))
165
+ elif match == 0:
166
+ # no match
167
+ raise ValueError("No match found when deserializing the JSON string into VariableTypeValue with oneOf schemas: ImageContentType, PdfContentType, ReasoningContentType, TextContentType, ToolCallContentType, ToolResponseContentType. Details: " + ", ".join(error_messages))
168
+ else:
169
+ return instance
170
+
171
+ def to_json(self) -> str:
172
+ """Returns the JSON representation of the actual instance"""
173
+ if self.actual_instance is None:
174
+ return "null"
175
+
176
+ if hasattr(self.actual_instance, "to_json") and callable(self.actual_instance.to_json):
177
+ return self.actual_instance.to_json()
178
+ else:
179
+ return json.dumps(self.actual_instance)
180
+
181
+ def to_dict(self) -> Optional[Union[Dict[str, Any], ImageContentType, PdfContentType, ReasoningContentType, TextContentType, ToolCallContentType, ToolResponseContentType]]:
182
+ """Returns the dict representation of the actual instance"""
183
+ if self.actual_instance is None:
184
+ return None
185
+
186
+ if hasattr(self.actual_instance, "to_dict") and callable(self.actual_instance.to_dict):
187
+ return self.actual_instance.to_dict()
188
+ else:
189
+ # primitive type
190
+ return self.actual_instance
191
+
192
+ def to_str(self) -> str:
193
+ """Returns the string representation of the actual instance"""
194
+ return pprint.pformat(self.model_dump())
195
+
196
+
@@ -0,0 +1,196 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Adaline API
5
+
6
+ API for managing Adaline deployments, logs, and core type definitions.
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import json
17
+ import pprint
18
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, ValidationError, field_validator
19
+ from typing import Any, List, Optional
20
+ from adaline_api.models.image_content import ImageContent
21
+ from adaline_api.models.pdf_content import PdfContent
22
+ from adaline_api.models.reasoning_content import ReasoningContent
23
+ from adaline_api.models.text_content import TextContent
24
+ from adaline_api.models.tool_call_content import ToolCallContent
25
+ from adaline_api.models.tool_response_content import ToolResponseContent
26
+ from pydantic import StrictStr, Field
27
+ from typing import Union, List, Set, Optional, Dict
28
+ from typing_extensions import Literal, Self
29
+
30
+ VARIABLEVALUE_ONE_OF_SCHEMAS = ["ImageContent", "PdfContent", "ReasoningContent", "TextContent", "ToolCallContent", "ToolResponseContent"]
31
+
32
+ class VariableValue(BaseModel):
33
+ """
34
+ VariableValue
35
+ """
36
+ # data type: TextContent
37
+ oneof_schema_1_validator: Optional[TextContent] = None
38
+ # data type: ImageContent
39
+ oneof_schema_2_validator: Optional[ImageContent] = None
40
+ # data type: PdfContent
41
+ oneof_schema_3_validator: Optional[PdfContent] = None
42
+ # data type: ReasoningContent
43
+ oneof_schema_4_validator: Optional[ReasoningContent] = None
44
+ # data type: ToolCallContent
45
+ oneof_schema_5_validator: Optional[ToolCallContent] = None
46
+ # data type: ToolResponseContent
47
+ oneof_schema_6_validator: Optional[ToolResponseContent] = None
48
+ actual_instance: Optional[Union[ImageContent, PdfContent, ReasoningContent, TextContent, ToolCallContent, ToolResponseContent]] = None
49
+ one_of_schemas: Set[str] = { "ImageContent", "PdfContent", "ReasoningContent", "TextContent", "ToolCallContent", "ToolResponseContent" }
50
+
51
+ model_config = ConfigDict(
52
+ validate_assignment=True,
53
+ protected_namespaces=(),
54
+ )
55
+
56
+
57
+ discriminator_value_class_map: Dict[str, str] = {
58
+ }
59
+
60
+ def __init__(self, *args, **kwargs) -> None:
61
+ if args:
62
+ if len(args) > 1:
63
+ raise ValueError("If a position argument is used, only 1 is allowed to set `actual_instance`")
64
+ if kwargs:
65
+ raise ValueError("If a position argument is used, keyword arguments cannot be used.")
66
+ super().__init__(actual_instance=args[0])
67
+ else:
68
+ super().__init__(**kwargs)
69
+
70
+ @field_validator('actual_instance')
71
+ def actual_instance_must_validate_oneof(cls, v):
72
+ instance = VariableValue.model_construct()
73
+ error_messages = []
74
+ match = 0
75
+ # validate data type: TextContent
76
+ if not isinstance(v, TextContent):
77
+ error_messages.append(f"Error! Input type `{type(v)}` is not `TextContent`")
78
+ else:
79
+ match += 1
80
+ # validate data type: ImageContent
81
+ if not isinstance(v, ImageContent):
82
+ error_messages.append(f"Error! Input type `{type(v)}` is not `ImageContent`")
83
+ else:
84
+ match += 1
85
+ # validate data type: PdfContent
86
+ if not isinstance(v, PdfContent):
87
+ error_messages.append(f"Error! Input type `{type(v)}` is not `PdfContent`")
88
+ else:
89
+ match += 1
90
+ # validate data type: ReasoningContent
91
+ if not isinstance(v, ReasoningContent):
92
+ error_messages.append(f"Error! Input type `{type(v)}` is not `ReasoningContent`")
93
+ else:
94
+ match += 1
95
+ # validate data type: ToolCallContent
96
+ if not isinstance(v, ToolCallContent):
97
+ error_messages.append(f"Error! Input type `{type(v)}` is not `ToolCallContent`")
98
+ else:
99
+ match += 1
100
+ # validate data type: ToolResponseContent
101
+ if not isinstance(v, ToolResponseContent):
102
+ error_messages.append(f"Error! Input type `{type(v)}` is not `ToolResponseContent`")
103
+ else:
104
+ match += 1
105
+ if match > 1:
106
+ # more than 1 match
107
+ raise ValueError("Multiple matches found when setting `actual_instance` in VariableValue with oneOf schemas: ImageContent, PdfContent, ReasoningContent, TextContent, ToolCallContent, ToolResponseContent. Details: " + ", ".join(error_messages))
108
+ elif match == 0:
109
+ # no match
110
+ raise ValueError("No match found when setting `actual_instance` in VariableValue with oneOf schemas: ImageContent, PdfContent, ReasoningContent, TextContent, ToolCallContent, ToolResponseContent. Details: " + ", ".join(error_messages))
111
+ else:
112
+ return v
113
+
114
+ @classmethod
115
+ def from_dict(cls, obj: Union[str, Dict[str, Any]]) -> Self:
116
+ return cls.from_json(json.dumps(obj))
117
+
118
+ @classmethod
119
+ def from_json(cls, json_str: str) -> Self:
120
+ """Returns the object represented by the json string"""
121
+ instance = cls.model_construct()
122
+ error_messages = []
123
+ match = 0
124
+
125
+ # deserialize data into TextContent
126
+ try:
127
+ instance.actual_instance = TextContent.from_json(json_str)
128
+ match += 1
129
+ except (ValidationError, ValueError) as e:
130
+ error_messages.append(str(e))
131
+ # deserialize data into ImageContent
132
+ try:
133
+ instance.actual_instance = ImageContent.from_json(json_str)
134
+ match += 1
135
+ except (ValidationError, ValueError) as e:
136
+ error_messages.append(str(e))
137
+ # deserialize data into PdfContent
138
+ try:
139
+ instance.actual_instance = PdfContent.from_json(json_str)
140
+ match += 1
141
+ except (ValidationError, ValueError) as e:
142
+ error_messages.append(str(e))
143
+ # deserialize data into ReasoningContent
144
+ try:
145
+ instance.actual_instance = ReasoningContent.from_json(json_str)
146
+ match += 1
147
+ except (ValidationError, ValueError) as e:
148
+ error_messages.append(str(e))
149
+ # deserialize data into ToolCallContent
150
+ try:
151
+ instance.actual_instance = ToolCallContent.from_json(json_str)
152
+ match += 1
153
+ except (ValidationError, ValueError) as e:
154
+ error_messages.append(str(e))
155
+ # deserialize data into ToolResponseContent
156
+ try:
157
+ instance.actual_instance = ToolResponseContent.from_json(json_str)
158
+ match += 1
159
+ except (ValidationError, ValueError) as e:
160
+ error_messages.append(str(e))
161
+
162
+ if match > 1:
163
+ # more than 1 match
164
+ raise ValueError("Multiple matches found when deserializing the JSON string into VariableValue with oneOf schemas: ImageContent, PdfContent, ReasoningContent, TextContent, ToolCallContent, ToolResponseContent. Details: " + ", ".join(error_messages))
165
+ elif match == 0:
166
+ # no match
167
+ raise ValueError("No match found when deserializing the JSON string into VariableValue with oneOf schemas: ImageContent, PdfContent, ReasoningContent, TextContent, ToolCallContent, ToolResponseContent. Details: " + ", ".join(error_messages))
168
+ else:
169
+ return instance
170
+
171
+ def to_json(self) -> str:
172
+ """Returns the JSON representation of the actual instance"""
173
+ if self.actual_instance is None:
174
+ return "null"
175
+
176
+ if hasattr(self.actual_instance, "to_json") and callable(self.actual_instance.to_json):
177
+ return self.actual_instance.to_json()
178
+ else:
179
+ return json.dumps(self.actual_instance)
180
+
181
+ def to_dict(self) -> Optional[Union[Dict[str, Any], ImageContent, PdfContent, ReasoningContent, TextContent, ToolCallContent, ToolResponseContent]]:
182
+ """Returns the dict representation of the actual instance"""
183
+ if self.actual_instance is None:
184
+ return None
185
+
186
+ if hasattr(self.actual_instance, "to_dict") and callable(self.actual_instance.to_dict):
187
+ return self.actual_instance.to_dict()
188
+ else:
189
+ # primitive type
190
+ return self.actual_instance
191
+
192
+ def to_str(self) -> str:
193
+ """Returns the string representation of the actual instance"""
194
+ return pprint.pformat(self.model_dump())
195
+
196
+
@@ -0,0 +1,96 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Adaline API
5
+
6
+ API for managing Adaline deployments, logs, and core type definitions.
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, StrictStr, field_validator
21
+ from typing import Any, ClassVar, Dict, List
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class VariablesType(BaseModel):
26
+ """
27
+ VariablesType
28
+ """ # noqa: E501
29
+ name: StrictStr
30
+ modality: StrictStr
31
+ __properties: ClassVar[List[str]] = ["name", "modality"]
32
+
33
+ @field_validator('modality')
34
+ def modality_validate_enum(cls, value):
35
+ """Validates the enum"""
36
+ if value not in set(['text', 'image']):
37
+ raise ValueError("must be one of enum values ('text', 'image')")
38
+ return value
39
+
40
+ model_config = ConfigDict(
41
+ populate_by_name=True,
42
+ validate_assignment=True,
43
+ protected_namespaces=(),
44
+ )
45
+
46
+
47
+ def to_str(self) -> str:
48
+ """Returns the string representation of the model using alias"""
49
+ return pprint.pformat(self.model_dump(by_alias=True))
50
+
51
+ def to_json(self) -> str:
52
+ """Returns the JSON representation of the model using alias"""
53
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
54
+ return json.dumps(self.to_dict())
55
+
56
+ @classmethod
57
+ def from_json(cls, json_str: str) -> Optional[Self]:
58
+ """Create an instance of VariablesType from a JSON string"""
59
+ return cls.from_dict(json.loads(json_str))
60
+
61
+ def to_dict(self) -> Dict[str, Any]:
62
+ """Return the dictionary representation of the model using alias.
63
+
64
+ This has the following differences from calling pydantic's
65
+ `self.model_dump(by_alias=True)`:
66
+
67
+ * `None` is only added to the output dict for nullable fields that
68
+ were set at model initialization. Other fields with value `None`
69
+ are ignored.
70
+ """
71
+ excluded_fields: Set[str] = set([
72
+ ])
73
+
74
+ _dict = self.model_dump(
75
+ by_alias=True,
76
+ exclude=excluded_fields,
77
+ exclude_none=True,
78
+ )
79
+ return _dict
80
+
81
+ @classmethod
82
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
83
+ """Create an instance of VariablesType from a dict"""
84
+ if obj is None:
85
+ return None
86
+
87
+ if not isinstance(obj, dict):
88
+ return cls.model_validate(obj)
89
+
90
+ _obj = cls.model_validate({
91
+ "name": obj.get("name"),
92
+ "modality": obj.get("modality")
93
+ })
94
+ return _obj
95
+
96
+
adaline_api/py.typed ADDED
File without changes