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.
Files changed (73) hide show
  1. {mapleflow-0.9.3 → mapleflow-0.11.0}/PKG-INFO +1 -1
  2. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_chat.py +12 -12
  3. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_body_model.py +3 -3
  4. {mapleflow-0.9.3 → mapleflow-0.11.0}/pyproject.toml +1 -1
  5. {mapleflow-0.9.3 → mapleflow-0.11.0}/.gitignore +0 -0
  6. {mapleflow-0.9.3 → mapleflow-0.11.0}/README.md +0 -0
  7. {mapleflow-0.9.3 → mapleflow-0.11.0}/config.yml +0 -0
  8. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/__init__.py +0 -0
  9. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/__init__.py +0 -0
  10. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/__init__.py +0 -0
  11. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_embeddings.py +0 -0
  12. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_images.py +0 -0
  13. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_speech.py +0 -0
  14. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/ai/post_ai_transcribe.py +0 -0
  15. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/images/__init__.py +0 -0
  16. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/images/post_images_bg_remove.py +0 -0
  17. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/utility/__init__.py +0 -0
  18. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/utility/get_currency.py +0 -0
  19. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/utility/get_weather.py +0 -0
  20. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/utility/post_translate.py +0 -0
  21. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/verify/__init__.py +0 -0
  22. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/verify/post_verify_face.py +0 -0
  23. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/api/verify/post_verify_labels.py +0 -0
  24. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/client.py +0 -0
  25. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/errors.py +0 -0
  26. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/__init__.py +0 -0
  27. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_currency_response_200.py +0 -0
  28. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_currency_response_400.py +0 -0
  29. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_currency_response_404.py +0 -0
  30. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_currency_response_502.py +0 -0
  31. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_response_200.py +0 -0
  32. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_response_400.py +0 -0
  33. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_response_404.py +0 -0
  34. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_response_502.py +0 -0
  35. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/get_weather_units.py +0 -0
  36. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_body.py +0 -0
  37. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_body_messages_item.py +0 -0
  38. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_response_200.py +0 -0
  39. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_chat_response_400.py +0 -0
  40. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_embeddings_body.py +0 -0
  41. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_embeddings_body_model.py +0 -0
  42. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_embeddings_response_200.py +0 -0
  43. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_embeddings_response_400.py +0 -0
  44. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_images_body.py +0 -0
  45. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_images_body_model.py +0 -0
  46. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_images_response_200.py +0 -0
  47. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_images_response_400.py +0 -0
  48. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_speech_body.py +0 -0
  49. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_speech_body_model.py +0 -0
  50. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_speech_response_200.py +0 -0
  51. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_speech_response_400.py +0 -0
  52. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_transcribe_body.py +0 -0
  53. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_transcribe_response_200.py +0 -0
  54. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_ai_transcribe_response_400.py +0 -0
  55. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_files_body.py +0 -0
  56. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_json_body.py +0 -0
  57. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_response_200.py +0 -0
  58. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_response_400.py +0 -0
  59. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_response_502.py +0 -0
  60. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_images_bg_remove_response_504.py +0 -0
  61. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_translate_body.py +0 -0
  62. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_translate_response_200.py +0 -0
  63. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_translate_response_400.py +0 -0
  64. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_translate_response_402.py +0 -0
  65. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_face_files_body.py +0 -0
  66. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_face_json_body.py +0 -0
  67. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_face_response_200.py +0 -0
  68. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_face_response_400.py +0 -0
  69. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_labels_files_body.py +0 -0
  70. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_labels_json_body.py +0 -0
  71. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_labels_response_200.py +0 -0
  72. {mapleflow-0.9.3 → mapleflow-0.11.0}/mapleflow/models/post_verify_labels_response_400.py +0 -0
  73. {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.9.3
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-groq` | 1 |
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-cf` | 1 |
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-groq` | 1 |
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-cf` | 1 |
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-groq` | 1 |
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-cf` | 1 |
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-groq` | 1 |
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-cf` | 1 |
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
- LLAMA_3_3_70B_CF = "llama-3.3-70b-cf"
25
- LLAMA_70B = "llama-70b"
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"
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "mapleflow"
7
- version = "0.9.3"
7
+ version = "0.11.0"
8
8
  description = "Official Python SDK for the MapleFlow API platform — auto-generated from OpenAPI spec"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes
File without changes
File without changes