mapleflow 0.20.2__tar.gz → 0.22.0__tar.gz
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.
- {mapleflow-0.20.2 → mapleflow-0.22.0}/PKG-INFO +1 -1
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/ai/post_ai_chat.py +20 -16
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_chat_body_model.py +6 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/pyproject.toml +1 -1
- {mapleflow-0.20.2 → mapleflow-0.22.0}/.gitignore +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/README.md +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/config.yml +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/__init__.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/__init__.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/ai/__init__.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/ai/post_ai_embeddings.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/ai/post_ai_images.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/ai/post_ai_speech.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/ai/post_ai_transcribe.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/images/__init__.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/images/post_images_bg_remove.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/utility/__init__.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/utility/get_currency.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/utility/get_weather.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/utility/post_translate.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/verify/__init__.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/api/verify/post_verify_face.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/client.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/errors.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/__init__.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/get_currency_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/get_currency_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/get_currency_response_404.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/get_currency_response_502.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/get_weather_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/get_weather_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/get_weather_response_404.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/get_weather_response_502.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/get_weather_units.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_chat_body.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_chat_body_messages_item.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_chat_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_chat_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_embeddings_body.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_embeddings_body_model.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_embeddings_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_embeddings_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_images_body.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_images_body_model.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_images_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_images_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_speech_body.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_speech_body_model.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_speech_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_speech_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_transcribe_body.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_transcribe_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_ai_transcribe_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_files_body.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_json_body.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_response_502.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_response_504.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_translate_body.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_translate_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_translate_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_translate_response_402.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_verify_face_body.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_verify_face_response_200.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_verify_face_response_400.py +0 -0
- {mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mapleflow
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.22.0
|
|
4
4
|
Summary: Official Python SDK for the MapleFlow API platform — auto-generated from OpenAPI spec
|
|
5
5
|
Project-URL: Homepage, https://mapleflow.io
|
|
6
6
|
Project-URL: Repository, https://github.com/mapleflow/sdk-python
|
|
@@ -72,10 +72,11 @@ def sync_detailed(
|
|
|
72
72
|
(as low as 0.01 per call). Unused credits are automatically refunded.
|
|
73
73
|
|
|
74
74
|
Available models: llama-3.2-1b, llama-3.2-3b, llama-3.1-8b, gemini-2.5-flash-lite, gemini-2.0-flash,
|
|
75
|
-
gpt-oss-20b, phi-2, mistral-7b, claude-3-haiku,
|
|
76
|
-
gemini-2.5-flash, llama-3.3-70b, deepseek-r1-32b, claude-haiku-4.5, gpt-
|
|
77
|
-
|
|
78
|
-
claude-
|
|
75
|
+
gpt-oss-20b, phi-2, mistral-7b, claude-3-haiku, glm-4.7-flash, qwen3-30b, gpt-4.1-nano,
|
|
76
|
+
gpt-4.1-mini, gpt-4o-mini, gemini-2.5-flash, llama-3.3-70b, deepseek-r1-32b, claude-haiku-4.5, gpt-
|
|
77
|
+
oss-120b, grok-4.1-fast, grok-3-mini, glm-5.2, gemma-4-26b, mistral-small-3.1-24b,
|
|
78
|
+
qwen2.5-coder-32b, gpt-4.1, gpt-4o, o4-mini, o3-mini, o3, claude-sonnet-4, claude-sonnet-4.6,
|
|
79
|
+
claude-opus-4.6, grok-3, kimi-k2.7-code
|
|
79
80
|
|
|
80
81
|
Args:
|
|
81
82
|
body (PostAiChatBody | Unset):
|
|
@@ -110,10 +111,11 @@ def sync(
|
|
|
110
111
|
(as low as 0.01 per call). Unused credits are automatically refunded.
|
|
111
112
|
|
|
112
113
|
Available models: llama-3.2-1b, llama-3.2-3b, llama-3.1-8b, gemini-2.5-flash-lite, gemini-2.0-flash,
|
|
113
|
-
gpt-oss-20b, phi-2, mistral-7b, claude-3-haiku,
|
|
114
|
-
gemini-2.5-flash, llama-3.3-70b, deepseek-r1-32b, claude-haiku-4.5, gpt-
|
|
115
|
-
|
|
116
|
-
claude-
|
|
114
|
+
gpt-oss-20b, phi-2, mistral-7b, claude-3-haiku, glm-4.7-flash, qwen3-30b, gpt-4.1-nano,
|
|
115
|
+
gpt-4.1-mini, gpt-4o-mini, gemini-2.5-flash, llama-3.3-70b, deepseek-r1-32b, claude-haiku-4.5, gpt-
|
|
116
|
+
oss-120b, grok-4.1-fast, grok-3-mini, glm-5.2, gemma-4-26b, mistral-small-3.1-24b,
|
|
117
|
+
qwen2.5-coder-32b, gpt-4.1, gpt-4o, o4-mini, o3-mini, o3, claude-sonnet-4, claude-sonnet-4.6,
|
|
118
|
+
claude-opus-4.6, grok-3, kimi-k2.7-code
|
|
117
119
|
|
|
118
120
|
Args:
|
|
119
121
|
body (PostAiChatBody | Unset):
|
|
@@ -143,10 +145,11 @@ async def asyncio_detailed(
|
|
|
143
145
|
(as low as 0.01 per call). Unused credits are automatically refunded.
|
|
144
146
|
|
|
145
147
|
Available models: llama-3.2-1b, llama-3.2-3b, llama-3.1-8b, gemini-2.5-flash-lite, gemini-2.0-flash,
|
|
146
|
-
gpt-oss-20b, phi-2, mistral-7b, claude-3-haiku,
|
|
147
|
-
gemini-2.5-flash, llama-3.3-70b, deepseek-r1-32b, claude-haiku-4.5, gpt-
|
|
148
|
-
|
|
149
|
-
claude-
|
|
148
|
+
gpt-oss-20b, phi-2, mistral-7b, claude-3-haiku, glm-4.7-flash, qwen3-30b, gpt-4.1-nano,
|
|
149
|
+
gpt-4.1-mini, gpt-4o-mini, gemini-2.5-flash, llama-3.3-70b, deepseek-r1-32b, claude-haiku-4.5, gpt-
|
|
150
|
+
oss-120b, grok-4.1-fast, grok-3-mini, glm-5.2, gemma-4-26b, mistral-small-3.1-24b,
|
|
151
|
+
qwen2.5-coder-32b, gpt-4.1, gpt-4o, o4-mini, o3-mini, o3, claude-sonnet-4, claude-sonnet-4.6,
|
|
152
|
+
claude-opus-4.6, grok-3, kimi-k2.7-code
|
|
150
153
|
|
|
151
154
|
Args:
|
|
152
155
|
body (PostAiChatBody | Unset):
|
|
@@ -179,10 +182,11 @@ async def asyncio(
|
|
|
179
182
|
(as low as 0.01 per call). Unused credits are automatically refunded.
|
|
180
183
|
|
|
181
184
|
Available models: llama-3.2-1b, llama-3.2-3b, llama-3.1-8b, gemini-2.5-flash-lite, gemini-2.0-flash,
|
|
182
|
-
gpt-oss-20b, phi-2, mistral-7b, claude-3-haiku,
|
|
183
|
-
gemini-2.5-flash, llama-3.3-70b, deepseek-r1-32b, claude-haiku-4.5, gpt-
|
|
184
|
-
|
|
185
|
-
claude-
|
|
185
|
+
gpt-oss-20b, phi-2, mistral-7b, claude-3-haiku, glm-4.7-flash, qwen3-30b, gpt-4.1-nano,
|
|
186
|
+
gpt-4.1-mini, gpt-4o-mini, gemini-2.5-flash, llama-3.3-70b, deepseek-r1-32b, claude-haiku-4.5, gpt-
|
|
187
|
+
oss-120b, grok-4.1-fast, grok-3-mini, glm-5.2, gemma-4-26b, mistral-small-3.1-24b,
|
|
188
|
+
qwen2.5-coder-32b, gpt-4.1, gpt-4o, o4-mini, o3-mini, o3, claude-sonnet-4, claude-sonnet-4.6,
|
|
189
|
+
claude-opus-4.6, grok-3, kimi-k2.7-code
|
|
186
190
|
|
|
187
191
|
Args:
|
|
188
192
|
body (PostAiChatBody | Unset):
|
|
@@ -11,6 +11,8 @@ class PostAiChatBodyModel(str, Enum):
|
|
|
11
11
|
GEMINI_2_0_FLASH = "gemini-2.0-flash"
|
|
12
12
|
GEMINI_2_5_FLASH = "gemini-2.5-flash"
|
|
13
13
|
GEMINI_2_5_FLASH_LITE = "gemini-2.5-flash-lite"
|
|
14
|
+
GEMMA_4_26B = "gemma-4-26b"
|
|
15
|
+
GLM_4_7_FLASH = "glm-4.7-flash"
|
|
14
16
|
GLM_5_2 = "glm-5.2"
|
|
15
17
|
GPT_4O = "gpt-4o"
|
|
16
18
|
GPT_4O_MINI = "gpt-4o-mini"
|
|
@@ -22,6 +24,7 @@ class PostAiChatBodyModel(str, Enum):
|
|
|
22
24
|
GROK_3 = "grok-3"
|
|
23
25
|
GROK_3_MINI = "grok-3-mini"
|
|
24
26
|
GROK_4_1_FAST = "grok-4.1-fast"
|
|
27
|
+
KIMI_K2_7_CODE = "kimi-k2.7-code"
|
|
25
28
|
LLAMA_3_1_8B = "llama-3.1-8b"
|
|
26
29
|
LLAMA_3_1_8BWORKERS_AI = "llama-3.1-8b@workers-ai"
|
|
27
30
|
LLAMA_3_2_1B = "llama-3.2-1b"
|
|
@@ -29,10 +32,13 @@ class PostAiChatBodyModel(str, Enum):
|
|
|
29
32
|
LLAMA_3_3_70B = "llama-3.3-70b"
|
|
30
33
|
LLAMA_3_3_70BWORKERS_AI = "llama-3.3-70b@workers-ai"
|
|
31
34
|
MISTRAL_7B = "mistral-7b"
|
|
35
|
+
MISTRAL_SMALL_3_1_24B = "mistral-small-3.1-24b"
|
|
32
36
|
O3 = "o3"
|
|
33
37
|
O3_MINI = "o3-mini"
|
|
34
38
|
O4_MINI = "o4-mini"
|
|
35
39
|
PHI_2 = "phi-2"
|
|
40
|
+
QWEN2_5_CODER_32B = "qwen2.5-coder-32b"
|
|
41
|
+
QWEN3_30B = "qwen3-30b"
|
|
36
42
|
|
|
37
43
|
def __str__(self) -> str:
|
|
38
44
|
return str(self.value)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_response_200.py
RENAMED
|
File without changes
|
{mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_response_400.py
RENAMED
|
File without changes
|
{mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_response_502.py
RENAMED
|
File without changes
|
{mapleflow-0.20.2 → mapleflow-0.22.0}/mapleflow/models/post_images_bg_remove_response_504.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|