mistralai 0.4.2__py3-none-any.whl → 0.5.5a50__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 (240) hide show
  1. mistralai/__init__.py +5 -0
  2. mistralai/_hooks/__init__.py +5 -0
  3. mistralai/_hooks/custom_user_agent.py +16 -0
  4. mistralai/_hooks/deprecation_warning.py +26 -0
  5. mistralai/_hooks/registration.py +17 -0
  6. mistralai/_hooks/sdkhooks.py +57 -0
  7. mistralai/_hooks/types.py +76 -0
  8. mistralai/async_client.py +5 -413
  9. mistralai/basesdk.py +216 -0
  10. mistralai/chat.py +475 -0
  11. mistralai/client.py +5 -414
  12. mistralai/embeddings.py +182 -0
  13. mistralai/files.py +600 -84
  14. mistralai/fim.py +439 -0
  15. mistralai/fine_tuning.py +855 -0
  16. mistralai/httpclient.py +78 -0
  17. mistralai/models/__init__.py +80 -0
  18. mistralai/models/archiveftmodelout.py +19 -0
  19. mistralai/models/assistantmessage.py +58 -0
  20. mistralai/models/chatcompletionchoice.py +33 -0
  21. mistralai/models/chatcompletionrequest.py +114 -0
  22. mistralai/models/chatcompletionresponse.py +27 -0
  23. mistralai/models/chatcompletionstreamrequest.py +112 -0
  24. mistralai/models/checkpointout.py +25 -0
  25. mistralai/models/completionchunk.py +27 -0
  26. mistralai/models/completionevent.py +15 -0
  27. mistralai/models/completionresponsestreamchoice.py +53 -0
  28. mistralai/models/contentchunk.py +17 -0
  29. mistralai/models/delete_model_v1_models_model_id_deleteop.py +16 -0
  30. mistralai/models/deletefileout.py +24 -0
  31. mistralai/models/deletemodelout.py +25 -0
  32. mistralai/models/deltamessage.py +52 -0
  33. mistralai/models/detailedjobout.py +96 -0
  34. mistralai/models/embeddingrequest.py +66 -0
  35. mistralai/models/embeddingresponse.py +24 -0
  36. mistralai/models/embeddingresponsedata.py +19 -0
  37. mistralai/models/eventout.py +55 -0
  38. mistralai/models/files_api_routes_delete_fileop.py +16 -0
  39. mistralai/models/files_api_routes_retrieve_fileop.py +16 -0
  40. mistralai/models/files_api_routes_upload_fileop.py +51 -0
  41. mistralai/models/fileschema.py +76 -0
  42. mistralai/models/fimcompletionrequest.py +99 -0
  43. mistralai/models/fimcompletionresponse.py +27 -0
  44. mistralai/models/fimcompletionstreamrequest.py +97 -0
  45. mistralai/models/finetuneablemodel.py +8 -0
  46. mistralai/models/ftmodelcapabilitiesout.py +21 -0
  47. mistralai/models/ftmodelout.py +70 -0
  48. mistralai/models/function.py +19 -0
  49. mistralai/models/functioncall.py +16 -0
  50. mistralai/models/githubrepositoryin.py +57 -0
  51. mistralai/models/githubrepositoryout.py +57 -0
  52. mistralai/models/httpvalidationerror.py +23 -0
  53. mistralai/models/jobin.py +78 -0
  54. mistralai/models/jobmetadataout.py +59 -0
  55. mistralai/models/jobout.py +112 -0
  56. mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py +16 -0
  57. mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py +18 -0
  58. mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py +73 -0
  59. mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py +18 -0
  60. mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +86 -0
  61. mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py +16 -0
  62. mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py +16 -0
  63. mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py +19 -0
  64. mistralai/models/jobsout.py +20 -0
  65. mistralai/models/legacyjobmetadataout.py +85 -0
  66. mistralai/models/listfilesout.py +17 -0
  67. mistralai/models/metricout.py +55 -0
  68. mistralai/models/modelcapabilities.py +21 -0
  69. mistralai/models/modelcard.py +71 -0
  70. mistralai/models/modellist.py +18 -0
  71. mistralai/models/responseformat.py +18 -0
  72. mistralai/models/retrieve_model_v1_models_model_id_getop.py +16 -0
  73. mistralai/models/retrievefileout.py +76 -0
  74. mistralai/models/sampletype.py +7 -0
  75. mistralai/models/sdkerror.py +22 -0
  76. mistralai/models/security.py +16 -0
  77. mistralai/models/source.py +7 -0
  78. mistralai/models/systemmessage.py +26 -0
  79. mistralai/models/textchunk.py +17 -0
  80. mistralai/models/tool.py +18 -0
  81. mistralai/models/toolcall.py +20 -0
  82. mistralai/models/toolmessage.py +55 -0
  83. mistralai/models/trainingfile.py +17 -0
  84. mistralai/models/trainingparameters.py +53 -0
  85. mistralai/models/trainingparametersin.py +61 -0
  86. mistralai/models/unarchiveftmodelout.py +19 -0
  87. mistralai/models/updateftmodelin.py +49 -0
  88. mistralai/models/uploadfileout.py +76 -0
  89. mistralai/models/usageinfo.py +18 -0
  90. mistralai/models/usermessage.py +26 -0
  91. mistralai/models/validationerror.py +24 -0
  92. mistralai/models/wandbintegration.py +61 -0
  93. mistralai/models/wandbintegrationout.py +57 -0
  94. mistralai/models_.py +928 -0
  95. mistralai/py.typed +1 -0
  96. mistralai/sdk.py +111 -0
  97. mistralai/sdkconfiguration.py +53 -0
  98. mistralai/types/__init__.py +21 -0
  99. mistralai/types/basemodel.py +35 -0
  100. mistralai/utils/__init__.py +82 -0
  101. mistralai/utils/annotations.py +19 -0
  102. mistralai/utils/enums.py +34 -0
  103. mistralai/utils/eventstreaming.py +179 -0
  104. mistralai/utils/forms.py +207 -0
  105. mistralai/utils/headers.py +136 -0
  106. mistralai/utils/metadata.py +118 -0
  107. mistralai/utils/queryparams.py +203 -0
  108. mistralai/utils/requestbodies.py +66 -0
  109. mistralai/utils/retries.py +216 -0
  110. mistralai/utils/security.py +182 -0
  111. mistralai/utils/serializers.py +181 -0
  112. mistralai/utils/url.py +150 -0
  113. mistralai/utils/values.py +128 -0
  114. {mistralai-0.4.2.dist-info → mistralai-0.5.5a50.dist-info}/LICENSE +1 -1
  115. mistralai-0.5.5a50.dist-info/METADATA +626 -0
  116. mistralai-0.5.5a50.dist-info/RECORD +228 -0
  117. mistralai_azure/__init__.py +5 -0
  118. mistralai_azure/_hooks/__init__.py +5 -0
  119. mistralai_azure/_hooks/custom_user_agent.py +16 -0
  120. mistralai_azure/_hooks/registration.py +15 -0
  121. mistralai_azure/_hooks/sdkhooks.py +57 -0
  122. mistralai_azure/_hooks/types.py +76 -0
  123. mistralai_azure/basesdk.py +215 -0
  124. mistralai_azure/chat.py +475 -0
  125. mistralai_azure/httpclient.py +78 -0
  126. mistralai_azure/models/__init__.py +28 -0
  127. mistralai_azure/models/assistantmessage.py +58 -0
  128. mistralai_azure/models/chatcompletionchoice.py +33 -0
  129. mistralai_azure/models/chatcompletionrequest.py +114 -0
  130. mistralai_azure/models/chatcompletionresponse.py +27 -0
  131. mistralai_azure/models/chatcompletionstreamrequest.py +112 -0
  132. mistralai_azure/models/completionchunk.py +27 -0
  133. mistralai_azure/models/completionevent.py +15 -0
  134. mistralai_azure/models/completionresponsestreamchoice.py +53 -0
  135. mistralai_azure/models/contentchunk.py +17 -0
  136. mistralai_azure/models/deltamessage.py +52 -0
  137. mistralai_azure/models/function.py +19 -0
  138. mistralai_azure/models/functioncall.py +16 -0
  139. mistralai_azure/models/httpvalidationerror.py +23 -0
  140. mistralai_azure/models/responseformat.py +18 -0
  141. mistralai_azure/models/sdkerror.py +22 -0
  142. mistralai_azure/models/security.py +16 -0
  143. mistralai_azure/models/systemmessage.py +26 -0
  144. mistralai_azure/models/textchunk.py +17 -0
  145. mistralai_azure/models/tool.py +18 -0
  146. mistralai_azure/models/toolcall.py +20 -0
  147. mistralai_azure/models/toolmessage.py +55 -0
  148. mistralai_azure/models/usageinfo.py +18 -0
  149. mistralai_azure/models/usermessage.py +26 -0
  150. mistralai_azure/models/validationerror.py +24 -0
  151. mistralai_azure/py.typed +1 -0
  152. mistralai_azure/sdk.py +102 -0
  153. mistralai_azure/sdkconfiguration.py +53 -0
  154. mistralai_azure/types/__init__.py +21 -0
  155. mistralai_azure/types/basemodel.py +35 -0
  156. mistralai_azure/utils/__init__.py +80 -0
  157. mistralai_azure/utils/annotations.py +19 -0
  158. mistralai_azure/utils/enums.py +34 -0
  159. mistralai_azure/utils/eventstreaming.py +179 -0
  160. mistralai_azure/utils/forms.py +207 -0
  161. mistralai_azure/utils/headers.py +136 -0
  162. mistralai_azure/utils/metadata.py +118 -0
  163. mistralai_azure/utils/queryparams.py +203 -0
  164. mistralai_azure/utils/requestbodies.py +66 -0
  165. mistralai_azure/utils/retries.py +216 -0
  166. mistralai_azure/utils/security.py +168 -0
  167. mistralai_azure/utils/serializers.py +181 -0
  168. mistralai_azure/utils/url.py +150 -0
  169. mistralai_azure/utils/values.py +128 -0
  170. mistralai_gcp/__init__.py +5 -0
  171. mistralai_gcp/_hooks/__init__.py +5 -0
  172. mistralai_gcp/_hooks/custom_user_agent.py +16 -0
  173. mistralai_gcp/_hooks/registration.py +15 -0
  174. mistralai_gcp/_hooks/sdkhooks.py +57 -0
  175. mistralai_gcp/_hooks/types.py +76 -0
  176. mistralai_gcp/basesdk.py +215 -0
  177. mistralai_gcp/chat.py +463 -0
  178. mistralai_gcp/fim.py +439 -0
  179. mistralai_gcp/httpclient.py +78 -0
  180. mistralai_gcp/models/__init__.py +31 -0
  181. mistralai_gcp/models/assistantmessage.py +58 -0
  182. mistralai_gcp/models/chatcompletionchoice.py +33 -0
  183. mistralai_gcp/models/chatcompletionrequest.py +110 -0
  184. mistralai_gcp/models/chatcompletionresponse.py +27 -0
  185. mistralai_gcp/models/chatcompletionstreamrequest.py +108 -0
  186. mistralai_gcp/models/completionchunk.py +27 -0
  187. mistralai_gcp/models/completionevent.py +15 -0
  188. mistralai_gcp/models/completionresponsestreamchoice.py +53 -0
  189. mistralai_gcp/models/contentchunk.py +17 -0
  190. mistralai_gcp/models/deltamessage.py +52 -0
  191. mistralai_gcp/models/fimcompletionrequest.py +99 -0
  192. mistralai_gcp/models/fimcompletionresponse.py +27 -0
  193. mistralai_gcp/models/fimcompletionstreamrequest.py +97 -0
  194. mistralai_gcp/models/function.py +19 -0
  195. mistralai_gcp/models/functioncall.py +16 -0
  196. mistralai_gcp/models/httpvalidationerror.py +23 -0
  197. mistralai_gcp/models/responseformat.py +18 -0
  198. mistralai_gcp/models/sdkerror.py +22 -0
  199. mistralai_gcp/models/security.py +16 -0
  200. mistralai_gcp/models/systemmessage.py +26 -0
  201. mistralai_gcp/models/textchunk.py +17 -0
  202. mistralai_gcp/models/tool.py +18 -0
  203. mistralai_gcp/models/toolcall.py +20 -0
  204. mistralai_gcp/models/toolmessage.py +55 -0
  205. mistralai_gcp/models/usageinfo.py +18 -0
  206. mistralai_gcp/models/usermessage.py +26 -0
  207. mistralai_gcp/models/validationerror.py +24 -0
  208. mistralai_gcp/py.typed +1 -0
  209. mistralai_gcp/sdk.py +165 -0
  210. mistralai_gcp/sdkconfiguration.py +53 -0
  211. mistralai_gcp/types/__init__.py +21 -0
  212. mistralai_gcp/types/basemodel.py +35 -0
  213. mistralai_gcp/utils/__init__.py +80 -0
  214. mistralai_gcp/utils/annotations.py +19 -0
  215. mistralai_gcp/utils/enums.py +34 -0
  216. mistralai_gcp/utils/eventstreaming.py +179 -0
  217. mistralai_gcp/utils/forms.py +207 -0
  218. mistralai_gcp/utils/headers.py +136 -0
  219. mistralai_gcp/utils/metadata.py +118 -0
  220. mistralai_gcp/utils/queryparams.py +203 -0
  221. mistralai_gcp/utils/requestbodies.py +66 -0
  222. mistralai_gcp/utils/retries.py +216 -0
  223. mistralai_gcp/utils/security.py +168 -0
  224. mistralai_gcp/utils/serializers.py +181 -0
  225. mistralai_gcp/utils/url.py +150 -0
  226. mistralai_gcp/utils/values.py +128 -0
  227. py.typed +1 -0
  228. mistralai/client_base.py +0 -211
  229. mistralai/constants.py +0 -5
  230. mistralai/exceptions.py +0 -54
  231. mistralai/jobs.py +0 -172
  232. mistralai/models/chat_completion.py +0 -93
  233. mistralai/models/common.py +0 -9
  234. mistralai/models/embeddings.py +0 -19
  235. mistralai/models/files.py +0 -23
  236. mistralai/models/jobs.py +0 -100
  237. mistralai/models/models.py +0 -39
  238. mistralai-0.4.2.dist-info/METADATA +0 -82
  239. mistralai-0.4.2.dist-info/RECORD +0 -20
  240. {mistralai-0.4.2.dist-info → mistralai-0.5.5a50.dist-info}/WHEEL +0 -0
@@ -0,0 +1,168 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ import base64
4
+ from typing import (
5
+ Any,
6
+ Dict,
7
+ List,
8
+ Tuple,
9
+ )
10
+ from pydantic import BaseModel
11
+ from pydantic.fields import FieldInfo
12
+
13
+ from .metadata import (
14
+ SecurityMetadata,
15
+ find_field_metadata,
16
+ )
17
+
18
+
19
+
20
+ def get_security(security: Any) -> Tuple[Dict[str, str], Dict[str, List[str]]]:
21
+ headers: Dict[str, str] = {}
22
+ query_params: Dict[str, List[str]] = {}
23
+
24
+ if security is None:
25
+ return headers, query_params
26
+
27
+ if not isinstance(security, BaseModel):
28
+ raise TypeError("security must be a pydantic model")
29
+
30
+ sec_fields: Dict[str, FieldInfo] = security.__class__.model_fields
31
+ for name in sec_fields:
32
+ sec_field = sec_fields[name]
33
+
34
+ value = getattr(security, name)
35
+ if value is None:
36
+ continue
37
+
38
+ metadata = find_field_metadata(sec_field, SecurityMetadata)
39
+ if metadata is None:
40
+ continue
41
+ if metadata.option:
42
+ _parse_security_option(headers, query_params, value)
43
+ return headers, query_params
44
+ if metadata.scheme:
45
+ # Special case for basic auth which could be a flattened model
46
+ if metadata.sub_type == "basic" and not isinstance(value, BaseModel):
47
+ _parse_security_scheme(headers, query_params, metadata, name, security)
48
+ else:
49
+ _parse_security_scheme(headers, query_params, metadata, name, value)
50
+
51
+ return headers, query_params
52
+
53
+
54
+ def _parse_security_option(
55
+ headers: Dict[str, str], query_params: Dict[str, List[str]], option: Any
56
+ ):
57
+ if not isinstance(option, BaseModel):
58
+ raise TypeError("security option must be a pydantic model")
59
+
60
+ opt_fields: Dict[str, FieldInfo] = option.__class__.model_fields
61
+ for name in opt_fields:
62
+ opt_field = opt_fields[name]
63
+
64
+ metadata = find_field_metadata(opt_field, SecurityMetadata)
65
+ if metadata is None or not metadata.scheme:
66
+ continue
67
+ _parse_security_scheme(
68
+ headers, query_params, metadata, name, getattr(option, name)
69
+ )
70
+
71
+
72
+ def _parse_security_scheme(
73
+ headers: Dict[str, str],
74
+ query_params: Dict[str, List[str]],
75
+ scheme_metadata: SecurityMetadata,
76
+ field_name: str,
77
+ scheme: Any,
78
+ ):
79
+ scheme_type = scheme_metadata.scheme_type
80
+ sub_type = scheme_metadata.sub_type
81
+
82
+ if isinstance(scheme, BaseModel):
83
+ if scheme_type == "http" and sub_type == "basic":
84
+ _parse_basic_auth_scheme(headers, scheme)
85
+ return
86
+
87
+ scheme_fields: Dict[str, FieldInfo] = scheme.__class__.model_fields
88
+ for name in scheme_fields:
89
+ scheme_field = scheme_fields[name]
90
+
91
+ metadata = find_field_metadata(scheme_field, SecurityMetadata)
92
+ if metadata is None or metadata.field_name is None:
93
+ continue
94
+
95
+ value = getattr(scheme, name)
96
+
97
+ _parse_security_scheme_value(
98
+ headers, query_params, scheme_metadata, metadata, name, value
99
+ )
100
+ else:
101
+ _parse_security_scheme_value(
102
+ headers, query_params, scheme_metadata, scheme_metadata, field_name, scheme
103
+ )
104
+
105
+
106
+ def _parse_security_scheme_value(
107
+ headers: Dict[str, str],
108
+ query_params: Dict[str, List[str]],
109
+ scheme_metadata: SecurityMetadata,
110
+ security_metadata: SecurityMetadata,
111
+ field_name: str,
112
+ value: Any,
113
+ ):
114
+ scheme_type = scheme_metadata.scheme_type
115
+ sub_type = scheme_metadata.sub_type
116
+
117
+ header_name = security_metadata.get_field_name(field_name)
118
+
119
+ if scheme_type == "apiKey":
120
+ if sub_type == "header":
121
+ headers[header_name] = value
122
+ elif sub_type == "query":
123
+ query_params[header_name] = [value]
124
+ else:
125
+ raise ValueError("sub type {sub_type} not supported")
126
+ elif scheme_type == "openIdConnect":
127
+ headers[header_name] = _apply_bearer(value)
128
+ elif scheme_type == "oauth2":
129
+ if sub_type != "client_credentials":
130
+ headers[header_name] = _apply_bearer(value)
131
+ elif scheme_type == "http":
132
+ if sub_type == "bearer":
133
+ headers[header_name] = _apply_bearer(value)
134
+ else:
135
+ raise ValueError("sub type {sub_type} not supported")
136
+ else:
137
+ raise ValueError("scheme type {scheme_type} not supported")
138
+
139
+
140
+ def _apply_bearer(token: str) -> str:
141
+ return token.lower().startswith("bearer ") and token or f"Bearer {token}"
142
+
143
+
144
+ def _parse_basic_auth_scheme(headers: Dict[str, str], scheme: Any):
145
+ username = ""
146
+ password = ""
147
+
148
+ if not isinstance(scheme, BaseModel):
149
+ raise TypeError("basic auth scheme must be a pydantic model")
150
+
151
+ scheme_fields: Dict[str, FieldInfo] = scheme.__class__.model_fields
152
+ for name in scheme_fields:
153
+ scheme_field = scheme_fields[name]
154
+
155
+ metadata = find_field_metadata(scheme_field, SecurityMetadata)
156
+ if metadata is None or metadata.field_name is None:
157
+ continue
158
+
159
+ field_name = metadata.field_name
160
+ value = getattr(scheme, name)
161
+
162
+ if field_name == "username":
163
+ username = value
164
+ if field_name == "password":
165
+ password = value
166
+
167
+ data = f"{username}:{password}".encode()
168
+ headers["Authorization"] = f"Basic {base64.b64encode(data).decode()}"
@@ -0,0 +1,181 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from decimal import Decimal
4
+ import json
5
+ from typing import Any, Dict, List, Union, get_args
6
+ import httpx
7
+ from typing_extensions import get_origin
8
+ from pydantic import ConfigDict, create_model
9
+ from pydantic_core import from_json
10
+ from typing_inspect import is_optional_type
11
+
12
+ from ..types.basemodel import BaseModel, Nullable, OptionalNullable
13
+
14
+
15
+ def serialize_decimal(as_str: bool):
16
+ def serialize(d):
17
+ if is_optional_type(type(d)) and d is None:
18
+ return None
19
+
20
+ if not isinstance(d, Decimal):
21
+ raise ValueError("Expected Decimal object")
22
+
23
+ return str(d) if as_str else float(d)
24
+
25
+ return serialize
26
+
27
+
28
+ def validate_decimal(d):
29
+ if d is None:
30
+ return None
31
+
32
+ if isinstance(d, Decimal):
33
+ return d
34
+
35
+ if not isinstance(d, (str, int, float)):
36
+ raise ValueError("Expected string, int or float")
37
+
38
+ return Decimal(str(d))
39
+
40
+
41
+ def serialize_float(as_str: bool):
42
+ def serialize(f):
43
+ if is_optional_type(type(f)) and f is None:
44
+ return None
45
+
46
+ if not isinstance(f, float):
47
+ raise ValueError("Expected float")
48
+
49
+ return str(f) if as_str else f
50
+
51
+ return serialize
52
+
53
+
54
+ def validate_float(f):
55
+ if f is None:
56
+ return None
57
+
58
+ if isinstance(f, float):
59
+ return f
60
+
61
+ if not isinstance(f, str):
62
+ raise ValueError("Expected string")
63
+
64
+ return float(f)
65
+
66
+
67
+ def serialize_int(as_str: bool):
68
+ def serialize(b):
69
+ if is_optional_type(type(b)) and b is None:
70
+ return None
71
+
72
+ if not isinstance(b, int):
73
+ raise ValueError("Expected int")
74
+
75
+ return str(b) if as_str else b
76
+
77
+ return serialize
78
+
79
+
80
+ def validate_int(b):
81
+ if b is None:
82
+ return None
83
+
84
+ if isinstance(b, int):
85
+ return b
86
+
87
+ if not isinstance(b, str):
88
+ raise ValueError("Expected string")
89
+
90
+ return int(b)
91
+
92
+
93
+ def validate_open_enum(is_int: bool):
94
+ def validate(e):
95
+ if e is None:
96
+ return None
97
+
98
+ if is_int:
99
+ if not isinstance(e, int):
100
+ raise ValueError("Expected int")
101
+ else:
102
+ if not isinstance(e, str):
103
+ raise ValueError("Expected string")
104
+
105
+ return e
106
+
107
+ return validate
108
+
109
+
110
+ def unmarshal_json(raw, typ: Any) -> Any:
111
+ return unmarshal(from_json(raw), typ)
112
+
113
+
114
+ def unmarshal(val, typ: Any) -> Any:
115
+ unmarshaller = create_model(
116
+ "Unmarshaller",
117
+ body=(typ, ...),
118
+ __config__=ConfigDict(populate_by_name=True, arbitrary_types_allowed=True),
119
+ )
120
+
121
+ m = unmarshaller(body=val)
122
+
123
+ # pyright: ignore[reportAttributeAccessIssue]
124
+ return m.body # type: ignore
125
+
126
+
127
+ def marshal_json(val, typ):
128
+ if is_nullable(typ) and val is None:
129
+ return "null"
130
+
131
+ marshaller = create_model(
132
+ "Marshaller",
133
+ body=(typ, ...),
134
+ __config__=ConfigDict(populate_by_name=True, arbitrary_types_allowed=True),
135
+ )
136
+
137
+ m = marshaller(body=val)
138
+
139
+ d = m.model_dump(by_alias=True, mode="json", exclude_none=True)
140
+
141
+ if len(d) == 0:
142
+ return ""
143
+
144
+ return json.dumps(d[next(iter(d))], separators=(",", ":"), sort_keys=True)
145
+
146
+
147
+ def is_nullable(field):
148
+ origin = get_origin(field)
149
+ if origin is Nullable or origin is OptionalNullable:
150
+ return True
151
+
152
+ if not origin is Union or type(None) not in get_args(field):
153
+ return False
154
+
155
+ for arg in get_args(field):
156
+ if get_origin(arg) is Nullable or get_origin(arg) is OptionalNullable:
157
+ return True
158
+
159
+ return False
160
+
161
+
162
+ def stream_to_text(stream: httpx.Response) -> str:
163
+ return "".join(stream.iter_text())
164
+
165
+
166
+ def get_pydantic_model(data: Any, typ: Any) -> Any:
167
+ if not _contains_pydantic_model(data):
168
+ return unmarshal(data, typ)
169
+
170
+ return data
171
+
172
+
173
+ def _contains_pydantic_model(data: Any) -> bool:
174
+ if isinstance(data, BaseModel):
175
+ return True
176
+ if isinstance(data, List):
177
+ return any(_contains_pydantic_model(item) for item in data)
178
+ if isinstance(data, Dict):
179
+ return any(_contains_pydantic_model(value) for value in data.values())
180
+
181
+ return False
@@ -0,0 +1,150 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from decimal import Decimal
4
+ from typing import (
5
+ Any,
6
+ Dict,
7
+ get_type_hints,
8
+ List,
9
+ Optional,
10
+ Union,
11
+ get_args,
12
+ get_origin,
13
+ )
14
+ from pydantic import BaseModel
15
+ from pydantic.fields import FieldInfo
16
+
17
+ from .metadata import (
18
+ PathParamMetadata,
19
+ find_field_metadata,
20
+ )
21
+ from .values import _get_serialized_params, _populate_from_globals, _val_to_string
22
+
23
+
24
+ def generate_url(
25
+ server_url: str,
26
+ path: str,
27
+ path_params: Any,
28
+ gbls: Optional[Any] = None,
29
+ ) -> str:
30
+ path_param_values: Dict[str, str] = {}
31
+
32
+ globals_already_populated = _populate_path_params(
33
+ path_params, gbls, path_param_values, []
34
+ )
35
+ if gbls is not None:
36
+ _populate_path_params(gbls, None, path_param_values, globals_already_populated)
37
+
38
+ for key, value in path_param_values.items():
39
+ path = path.replace("{" + key + "}", value, 1)
40
+
41
+ return remove_suffix(server_url, "/") + path
42
+
43
+
44
+ def _populate_path_params(
45
+ path_params: Any,
46
+ gbls: Any,
47
+ path_param_values: Dict[str, str],
48
+ skip_fields: List[str],
49
+ ) -> List[str]:
50
+ globals_already_populated: List[str] = []
51
+
52
+ if not isinstance(path_params, BaseModel):
53
+ return globals_already_populated
54
+
55
+ path_param_fields: Dict[str, FieldInfo] = path_params.__class__.model_fields
56
+ path_param_field_types = get_type_hints(path_params.__class__)
57
+ for name in path_param_fields:
58
+ if name in skip_fields:
59
+ continue
60
+
61
+ field = path_param_fields[name]
62
+
63
+ param_metadata = find_field_metadata(field, PathParamMetadata)
64
+ if param_metadata is None:
65
+ continue
66
+
67
+ param = getattr(path_params, name) if path_params is not None else None
68
+ param, global_found = _populate_from_globals(
69
+ name, param, PathParamMetadata, gbls
70
+ )
71
+ if global_found:
72
+ globals_already_populated.append(name)
73
+
74
+ if param is None:
75
+ continue
76
+
77
+ f_name = field.alias if field.alias is not None else name
78
+ serialization = param_metadata.serialization
79
+ if serialization is not None:
80
+ serialized_params = _get_serialized_params(
81
+ param_metadata, f_name, param, path_param_field_types[name]
82
+ )
83
+ for key, value in serialized_params.items():
84
+ path_param_values[key] = value
85
+ else:
86
+ pp_vals: List[str] = []
87
+ if param_metadata.style == "simple":
88
+ if isinstance(param, List):
89
+ for pp_val in param:
90
+ if pp_val is None:
91
+ continue
92
+ pp_vals.append(_val_to_string(pp_val))
93
+ path_param_values[f_name] = ",".join(pp_vals)
94
+ elif isinstance(param, Dict):
95
+ for pp_key in param:
96
+ if param[pp_key] is None:
97
+ continue
98
+ if param_metadata.explode:
99
+ pp_vals.append(f"{pp_key}={_val_to_string(param[pp_key])}")
100
+ else:
101
+ pp_vals.append(f"{pp_key},{_val_to_string(param[pp_key])}")
102
+ path_param_values[f_name] = ",".join(pp_vals)
103
+ elif not isinstance(param, (str, int, float, complex, bool, Decimal)):
104
+ param_fields: Dict[str, FieldInfo] = param.__class__.model_fields
105
+ for name in param_fields:
106
+ param_field = param_fields[name]
107
+
108
+ param_value_metadata = find_field_metadata(
109
+ param_field, PathParamMetadata
110
+ )
111
+ if param_value_metadata is None:
112
+ continue
113
+
114
+ param_name = (
115
+ param_field.alias if param_field.alias is not None else name
116
+ )
117
+
118
+ param_field_val = getattr(param, name)
119
+ if param_field_val is None:
120
+ continue
121
+ if param_metadata.explode:
122
+ pp_vals.append(
123
+ f"{param_name}={_val_to_string(param_field_val)}"
124
+ )
125
+ else:
126
+ pp_vals.append(
127
+ f"{param_name},{_val_to_string(param_field_val)}"
128
+ )
129
+ path_param_values[f_name] = ",".join(pp_vals)
130
+ else:
131
+ path_param_values[f_name] = _val_to_string(param)
132
+
133
+ return globals_already_populated
134
+
135
+
136
+ def is_optional(field):
137
+ return get_origin(field) is Union and type(None) in get_args(field)
138
+
139
+
140
+ def template_url(url_with_params: str, params: Dict[str, str]) -> str:
141
+ for key, value in params.items():
142
+ url_with_params = url_with_params.replace("{" + key + "}", value)
143
+
144
+ return url_with_params
145
+
146
+
147
+ def remove_suffix(input_string, suffix):
148
+ if suffix and input_string.endswith(suffix):
149
+ return input_string[: -len(suffix)]
150
+ return input_string
@@ -0,0 +1,128 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from datetime import datetime
4
+ from enum import Enum
5
+ from email.message import Message
6
+ import os
7
+ from typing import Any, Callable, Dict, List, Optional, Tuple, TypeVar, Union
8
+
9
+ from httpx import Response
10
+ from pydantic import BaseModel
11
+ from pydantic.fields import FieldInfo
12
+
13
+ from .serializers import marshal_json
14
+
15
+ from .metadata import ParamMetadata, find_field_metadata
16
+
17
+
18
+ def match_content_type(content_type: str, pattern: str) -> bool:
19
+ if pattern in (content_type, "*", "*/*"):
20
+ return True
21
+
22
+ msg = Message()
23
+ msg["content-type"] = content_type
24
+ media_type = msg.get_content_type()
25
+
26
+ if media_type == pattern:
27
+ return True
28
+
29
+ parts = media_type.split("/")
30
+ if len(parts) == 2:
31
+ if pattern in (f"{parts[0]}/*", f"*/{parts[1]}"):
32
+ return True
33
+
34
+ return False
35
+
36
+
37
+ def match_status_codes(status_codes: List[str], status_code: int) -> bool:
38
+ if "default" in status_codes:
39
+ return True
40
+
41
+ for code in status_codes:
42
+ if code == str(status_code):
43
+ return True
44
+
45
+ if code.endswith("XX") and code.startswith(str(status_code)[:1]):
46
+ return True
47
+ return False
48
+
49
+
50
+ T = TypeVar("T")
51
+
52
+
53
+ def get_global_from_env(
54
+ value: Optional[T], env_key: str, type_cast: Callable[[str], T]
55
+ ) -> Optional[T]:
56
+ if value is not None:
57
+ return value
58
+ env_value = os.getenv(env_key)
59
+ if env_value is not None:
60
+ try:
61
+ return type_cast(env_value)
62
+ except ValueError:
63
+ pass
64
+ return None
65
+
66
+
67
+ def match_response(
68
+ response: Response, code: Union[str, List[str]], content_type: str
69
+ ) -> bool:
70
+ codes = code if isinstance(code, list) else [code]
71
+ return match_status_codes(codes, response.status_code) and match_content_type(
72
+ response.headers.get("content-type", "application/octet-stream"), content_type
73
+ )
74
+
75
+
76
+ def _populate_from_globals(
77
+ param_name: str, value: Any, param_metadata_type: type, gbls: Any
78
+ ) -> Tuple[Any, bool]:
79
+ if gbls is None:
80
+ return value, False
81
+
82
+ if not isinstance(gbls, BaseModel):
83
+ raise TypeError("globals must be a pydantic model")
84
+
85
+ global_fields: Dict[str, FieldInfo] = gbls.__class__.model_fields
86
+ found = False
87
+ for name in global_fields:
88
+ field = global_fields[name]
89
+ if name is not param_name:
90
+ continue
91
+
92
+ found = True
93
+
94
+ if value is not None:
95
+ return value, True
96
+
97
+ global_value = getattr(gbls, name)
98
+
99
+ param_metadata = find_field_metadata(field, param_metadata_type)
100
+ if param_metadata is None:
101
+ return value, True
102
+
103
+ return global_value, True
104
+
105
+ return value, found
106
+
107
+
108
+ def _val_to_string(val) -> str:
109
+ if isinstance(val, bool):
110
+ return str(val).lower()
111
+ if isinstance(val, datetime):
112
+ return str(val.isoformat().replace("+00:00", "Z"))
113
+ if isinstance(val, Enum):
114
+ return str(val.value)
115
+
116
+ return str(val)
117
+
118
+
119
+ def _get_serialized_params(
120
+ metadata: ParamMetadata, field_name: str, obj: Any, typ: type
121
+ ) -> Dict[str, str]:
122
+ params: Dict[str, str] = {}
123
+
124
+ serialization = metadata.serialization
125
+ if serialization == "json":
126
+ params[field_name] = marshal_json(obj, typ)
127
+
128
+ return params
py.typed ADDED
@@ -0,0 +1 @@
1
+ # Marker file for PEP 561. The package enables type hints.