mapleflow 0.22.0__tar.gz → 0.23.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.22.0 → mapleflow-0.23.0}/PKG-INFO +1 -1
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/ai/post_ai_chat.py +4 -4
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_chat_body_model.py +2 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/pyproject.toml +1 -1
- {mapleflow-0.22.0 → mapleflow-0.23.0}/.gitignore +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/README.md +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/config.yml +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/__init__.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/__init__.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/ai/__init__.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/ai/post_ai_embeddings.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/ai/post_ai_images.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/ai/post_ai_speech.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/ai/post_ai_transcribe.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/images/__init__.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/images/post_images_bg_remove.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/utility/__init__.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/utility/get_currency.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/utility/get_weather.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/utility/post_translate.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/verify/__init__.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/api/verify/post_verify_face.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/client.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/errors.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/__init__.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/get_currency_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/get_currency_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/get_currency_response_404.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/get_currency_response_502.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/get_weather_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/get_weather_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/get_weather_response_404.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/get_weather_response_502.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/get_weather_units.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_chat_body.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_chat_body_messages_item.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_chat_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_chat_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_embeddings_body.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_embeddings_body_model.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_embeddings_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_embeddings_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_images_body.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_images_body_model.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_images_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_images_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_speech_body.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_speech_body_model.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_speech_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_speech_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_transcribe_body.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_transcribe_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_ai_transcribe_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_images_bg_remove_files_body.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_images_bg_remove_json_body.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_images_bg_remove_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_images_bg_remove_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_images_bg_remove_response_502.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_images_bg_remove_response_504.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_translate_body.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_translate_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_translate_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_translate_response_402.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_verify_face_body.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_verify_face_response_200.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_verify_face_response_400.py +0 -0
- {mapleflow-0.22.0 → mapleflow-0.23.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.23.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
|
|
@@ -76,7 +76,7 @@ def sync_detailed(
|
|
|
76
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
77
|
oss-120b, grok-4.1-fast, grok-3-mini, glm-5.2, gemma-4-26b, mistral-small-3.1-24b,
|
|
78
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
|
+
claude-opus-4.6, claude-opus-4.7, claude-opus-4.8, grok-3, kimi-k2.7-code
|
|
80
80
|
|
|
81
81
|
Args:
|
|
82
82
|
body (PostAiChatBody | Unset):
|
|
@@ -115,7 +115,7 @@ def sync(
|
|
|
115
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
116
|
oss-120b, grok-4.1-fast, grok-3-mini, glm-5.2, gemma-4-26b, mistral-small-3.1-24b,
|
|
117
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
|
|
118
|
+
claude-opus-4.6, claude-opus-4.7, claude-opus-4.8, grok-3, kimi-k2.7-code
|
|
119
119
|
|
|
120
120
|
Args:
|
|
121
121
|
body (PostAiChatBody | Unset):
|
|
@@ -149,7 +149,7 @@ async def asyncio_detailed(
|
|
|
149
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
150
|
oss-120b, grok-4.1-fast, grok-3-mini, glm-5.2, gemma-4-26b, mistral-small-3.1-24b,
|
|
151
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
|
|
152
|
+
claude-opus-4.6, claude-opus-4.7, claude-opus-4.8, grok-3, kimi-k2.7-code
|
|
153
153
|
|
|
154
154
|
Args:
|
|
155
155
|
body (PostAiChatBody | Unset):
|
|
@@ -186,7 +186,7 @@ async def asyncio(
|
|
|
186
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
187
|
oss-120b, grok-4.1-fast, grok-3-mini, glm-5.2, gemma-4-26b, mistral-small-3.1-24b,
|
|
188
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
|
|
189
|
+
claude-opus-4.6, claude-opus-4.7, claude-opus-4.8, grok-3, kimi-k2.7-code
|
|
190
190
|
|
|
191
191
|
Args:
|
|
192
192
|
body (PostAiChatBody | Unset):
|
|
@@ -5,6 +5,8 @@ class PostAiChatBodyModel(str, Enum):
|
|
|
5
5
|
CLAUDE_3_HAIKU = "claude-3-haiku"
|
|
6
6
|
CLAUDE_HAIKU_4_5 = "claude-haiku-4.5"
|
|
7
7
|
CLAUDE_OPUS_4_6 = "claude-opus-4.6"
|
|
8
|
+
CLAUDE_OPUS_4_7 = "claude-opus-4.7"
|
|
9
|
+
CLAUDE_OPUS_4_8 = "claude-opus-4.8"
|
|
8
10
|
CLAUDE_SONNET_4 = "claude-sonnet-4"
|
|
9
11
|
CLAUDE_SONNET_4_6 = "claude-sonnet-4.6"
|
|
10
12
|
DEEPSEEK_R1_32B = "deepseek-r1-32b"
|
|
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.22.0 → mapleflow-0.23.0}/mapleflow/models/post_images_bg_remove_response_200.py
RENAMED
|
File without changes
|
{mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_images_bg_remove_response_400.py
RENAMED
|
File without changes
|
{mapleflow-0.22.0 → mapleflow-0.23.0}/mapleflow/models/post_images_bg_remove_response_502.py
RENAMED
|
File without changes
|
{mapleflow-0.22.0 → mapleflow-0.23.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
|