mapleflow 0.9.3__tar.gz → 0.11.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.9.3 → mapleflow-0.11.0}/PKG-INFO +1 -1
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_chat.py +12 -12
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_body_model.py +3 -3
- {mapleflow-0.9.3 → mapleflow-0.11.0}/pyproject.toml +1 -1
- {mapleflow-0.9.3 → mapleflow-0.11.0}/.gitignore +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/README.md +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/config.yml +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/__init__.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/__init__.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/__init__.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_embeddings.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_images.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_speech.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_transcribe.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/images/__init__.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/images/post_images_bg_remove.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/utility/__init__.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/utility/get_currency.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/utility/get_weather.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/utility/post_translate.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/verify/__init__.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/verify/post_verify_face.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/verify/post_verify_labels.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/client.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/errors.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/__init__.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_currency_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_currency_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_currency_response_404.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_currency_response_502.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_response_404.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_response_502.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_units.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_body_messages_item.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_embeddings_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_embeddings_body_model.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_embeddings_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_embeddings_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_images_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_images_body_model.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_images_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_images_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_speech_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_speech_body_model.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_speech_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_speech_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_transcribe_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_transcribe_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_transcribe_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_files_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_json_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_response_502.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_response_504.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_translate_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_translate_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_translate_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_translate_response_402.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_face_files_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_face_json_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_face_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_face_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_labels_files_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_labels_json_body.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_labels_response_200.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_labels_response_400.py +0 -0
- {mapleflow-0.9.3 → mapleflow-0.11.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.11.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
|
|
@@ -75,7 +75,7 @@ def sync_detailed(
|
|
|
75
75
|
| `llama-3.2-1b` | 1 |
|
|
76
76
|
| `llama-3.2-3b` | 1 |
|
|
77
77
|
| `llama-3.1-8b` | 1 |
|
|
78
|
-
| `llama-
|
|
78
|
+
| `llama-3.1-8b@workers-ai` | 1 |
|
|
79
79
|
| `gemini-flash-lite` | 1 |
|
|
80
80
|
| `gpt-oss-20b` | 1 |
|
|
81
81
|
| `phi-2` | 1 |
|
|
@@ -86,8 +86,8 @@ def sync_detailed(
|
|
|
86
86
|
| `gpt-4.1-mini` | 1 |
|
|
87
87
|
| `gpt-4o-mini` | 1 |
|
|
88
88
|
| `gemini-flash` | 1 |
|
|
89
|
-
| `llama-70b` | 1 |
|
|
90
|
-
| `llama-3.3-70b-
|
|
89
|
+
| `llama-3.3-70b` | 1 |
|
|
90
|
+
| `llama-3.3-70b@workers-ai` | 1 |
|
|
91
91
|
| `deepseek-r1-32b` | 1 |
|
|
92
92
|
| `claude-haiku` | 1 |
|
|
93
93
|
| `gpt-oss-120b` | 1 |
|
|
@@ -135,7 +135,7 @@ def sync(
|
|
|
135
135
|
| `llama-3.2-1b` | 1 |
|
|
136
136
|
| `llama-3.2-3b` | 1 |
|
|
137
137
|
| `llama-3.1-8b` | 1 |
|
|
138
|
-
| `llama-
|
|
138
|
+
| `llama-3.1-8b@workers-ai` | 1 |
|
|
139
139
|
| `gemini-flash-lite` | 1 |
|
|
140
140
|
| `gpt-oss-20b` | 1 |
|
|
141
141
|
| `phi-2` | 1 |
|
|
@@ -146,8 +146,8 @@ def sync(
|
|
|
146
146
|
| `gpt-4.1-mini` | 1 |
|
|
147
147
|
| `gpt-4o-mini` | 1 |
|
|
148
148
|
| `gemini-flash` | 1 |
|
|
149
|
-
| `llama-70b` | 1 |
|
|
150
|
-
| `llama-3.3-70b-
|
|
149
|
+
| `llama-3.3-70b` | 1 |
|
|
150
|
+
| `llama-3.3-70b@workers-ai` | 1 |
|
|
151
151
|
| `deepseek-r1-32b` | 1 |
|
|
152
152
|
| `claude-haiku` | 1 |
|
|
153
153
|
| `gpt-oss-120b` | 1 |
|
|
@@ -190,7 +190,7 @@ async def asyncio_detailed(
|
|
|
190
190
|
| `llama-3.2-1b` | 1 |
|
|
191
191
|
| `llama-3.2-3b` | 1 |
|
|
192
192
|
| `llama-3.1-8b` | 1 |
|
|
193
|
-
| `llama-
|
|
193
|
+
| `llama-3.1-8b@workers-ai` | 1 |
|
|
194
194
|
| `gemini-flash-lite` | 1 |
|
|
195
195
|
| `gpt-oss-20b` | 1 |
|
|
196
196
|
| `phi-2` | 1 |
|
|
@@ -201,8 +201,8 @@ async def asyncio_detailed(
|
|
|
201
201
|
| `gpt-4.1-mini` | 1 |
|
|
202
202
|
| `gpt-4o-mini` | 1 |
|
|
203
203
|
| `gemini-flash` | 1 |
|
|
204
|
-
| `llama-70b` | 1 |
|
|
205
|
-
| `llama-3.3-70b-
|
|
204
|
+
| `llama-3.3-70b` | 1 |
|
|
205
|
+
| `llama-3.3-70b@workers-ai` | 1 |
|
|
206
206
|
| `deepseek-r1-32b` | 1 |
|
|
207
207
|
| `claude-haiku` | 1 |
|
|
208
208
|
| `gpt-oss-120b` | 1 |
|
|
@@ -248,7 +248,7 @@ async def asyncio(
|
|
|
248
248
|
| `llama-3.2-1b` | 1 |
|
|
249
249
|
| `llama-3.2-3b` | 1 |
|
|
250
250
|
| `llama-3.1-8b` | 1 |
|
|
251
|
-
| `llama-
|
|
251
|
+
| `llama-3.1-8b@workers-ai` | 1 |
|
|
252
252
|
| `gemini-flash-lite` | 1 |
|
|
253
253
|
| `gpt-oss-20b` | 1 |
|
|
254
254
|
| `phi-2` | 1 |
|
|
@@ -259,8 +259,8 @@ async def asyncio(
|
|
|
259
259
|
| `gpt-4.1-mini` | 1 |
|
|
260
260
|
| `gpt-4o-mini` | 1 |
|
|
261
261
|
| `gemini-flash` | 1 |
|
|
262
|
-
| `llama-70b` | 1 |
|
|
263
|
-
| `llama-3.3-70b-
|
|
262
|
+
| `llama-3.3-70b` | 1 |
|
|
263
|
+
| `llama-3.3-70b@workers-ai` | 1 |
|
|
264
264
|
| `deepseek-r1-32b` | 1 |
|
|
265
265
|
| `claude-haiku` | 1 |
|
|
266
266
|
| `gpt-oss-120b` | 1 |
|
|
@@ -19,11 +19,11 @@ class PostAiChatBodyModel(str, Enum):
|
|
|
19
19
|
GROK_3_MINI = "grok-3-mini"
|
|
20
20
|
GROK_FAST = "grok-fast"
|
|
21
21
|
LLAMA_3_1_8B = "llama-3.1-8b"
|
|
22
|
+
LLAMA_3_1_8BWORKERS_AI = "llama-3.1-8b@workers-ai"
|
|
22
23
|
LLAMA_3_2_1B = "llama-3.2-1b"
|
|
23
24
|
LLAMA_3_2_3B = "llama-3.2-3b"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
LLAMA_GROQ = "llama-groq"
|
|
25
|
+
LLAMA_3_3_70B = "llama-3.3-70b"
|
|
26
|
+
LLAMA_3_3_70BWORKERS_AI = "llama-3.3-70b@workers-ai"
|
|
27
27
|
MISTRAL_7B = "mistral-7b"
|
|
28
28
|
O3_MINI = "o3-mini"
|
|
29
29
|
O4_MINI = "o4-mini"
|
|
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
|
|
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
|