mirascope 1.18.2__tar.gz → 1.18.4__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 (3718) hide show
  1. mirascope-1.18.4/.github/workflows/lint.yml +49 -0
  2. mirascope-1.18.4/.gitignore +173 -0
  3. mirascope-1.18.4/.pre-commit-config.yaml +28 -0
  4. mirascope-1.18.4/PKG-INFO +166 -0
  5. mirascope-1.18.4/README.md +66 -0
  6. mirascope-1.18.4/docs/WELCOME.md +188 -0
  7. mirascope-1.18.4/docs/WHY.md +245 -0
  8. mirascope-1.18.4/docs/blog/posts/langchain-structured-output.md +480 -0
  9. mirascope-1.18.4/docs/generate_provider_examples.py +148 -0
  10. mirascope-1.18.4/docs/hooks.py +96 -0
  11. mirascope-1.18.4/docs/learn/agents.md +177 -0
  12. mirascope-1.18.4/docs/learn/calls.md +522 -0
  13. mirascope-1.18.4/docs/learn/evals.md +123 -0
  14. mirascope-1.18.4/docs/learn/json_mode.md +98 -0
  15. mirascope-1.18.4/docs/learn/output_parsers.md +100 -0
  16. mirascope-1.18.4/docs/learn/prompts.md +347 -0
  17. mirascope-1.18.4/docs/learn/provider_specific_features/anthropic.md +51 -0
  18. mirascope-1.18.4/docs/learn/response_models.md +292 -0
  19. mirascope-1.18.4/docs/learn/tools.md +548 -0
  20. mirascope-1.18.4/docs/plugins/griffe_doclinks.py +158 -0
  21. mirascope-1.18.4/docs/tutorials/prompt_engineering/text_based/thread_of_thought.ipynb +175 -0
  22. mirascope-1.18.4/examples/learn/agents/human_in_the_loop/base_message_param.py +50 -0
  23. mirascope-1.18.4/examples/learn/agents/human_in_the_loop/messages.py +50 -0
  24. mirascope-1.18.4/examples/learn/agents/human_in_the_loop/shorthand.py +50 -0
  25. mirascope-1.18.4/examples/learn/agents/human_in_the_loop/string_template.py +58 -0
  26. mirascope-1.18.4/examples/learn/agents/state_management/base_message_param.py +30 -0
  27. mirascope-1.18.4/examples/learn/agents/state_management/messages.py +30 -0
  28. mirascope-1.18.4/examples/learn/agents/state_management/provider_agnostic/base_message_param.py +34 -0
  29. mirascope-1.18.4/examples/learn/agents/state_management/provider_agnostic/messages.py +34 -0
  30. mirascope-1.18.4/examples/learn/agents/state_management/provider_agnostic/shorthand.py +34 -0
  31. mirascope-1.18.4/examples/learn/agents/state_management/provider_agnostic/string_template.py +36 -0
  32. mirascope-1.18.4/examples/learn/agents/state_management/shorthand.py +30 -0
  33. mirascope-1.18.4/examples/learn/agents/state_management/string_template.py +32 -0
  34. mirascope-1.18.4/examples/learn/agents/streaming/base_message_param.py +58 -0
  35. mirascope-1.18.4/examples/learn/agents/streaming/messages.py +58 -0
  36. mirascope-1.18.4/examples/learn/agents/streaming/shorthand.py +58 -0
  37. mirascope-1.18.4/examples/learn/agents/streaming/string_template.py +66 -0
  38. mirascope-1.18.4/examples/learn/agents/tools/base_message_param.py +57 -0
  39. mirascope-1.18.4/examples/learn/agents/tools/messages.py +57 -0
  40. mirascope-1.18.4/examples/learn/agents/tools/shorthand.py +57 -0
  41. mirascope-1.18.4/examples/learn/agents/tools/string_template.py +65 -0
  42. mirascope-1.18.4/examples/learn/calls/basic_usage/official_sdk/anthropic_sdk.py +17 -0
  43. mirascope-1.18.4/examples/learn/calls/basic_usage/official_sdk/bedrock_sdk.py +22 -0
  44. mirascope-1.18.4/examples/learn/calls/basic_usage/official_sdk/google_sdk.py +15 -0
  45. mirascope-1.18.4/examples/learn/evals/llm/base_message_param.py +54 -0
  46. mirascope-1.18.4/examples/learn/evals/llm/messages.py +51 -0
  47. mirascope-1.18.4/examples/learn/evals/llm/shorthand.py +49 -0
  48. mirascope-1.18.4/examples/learn/evals/llm/string_template.py +47 -0
  49. mirascope-1.18.4/examples/learn/evals/panel/base_message_param.py +60 -0
  50. mirascope-1.18.4/examples/learn/evals/panel/messages.py +57 -0
  51. mirascope-1.18.4/examples/learn/evals/panel/shorthand.py +55 -0
  52. mirascope-1.18.4/examples/learn/evals/panel/string_template.py +52 -0
  53. mirascope-1.18.4/examples/learn/json_mode/basic_usage/base_message_param.py +17 -0
  54. mirascope-1.18.4/examples/learn/json_mode/basic_usage/messages.py +13 -0
  55. mirascope-1.18.4/examples/learn/json_mode/basic_usage/shorthand.py +13 -0
  56. mirascope-1.18.4/examples/learn/json_mode/basic_usage/string_template.py +13 -0
  57. mirascope-1.18.4/examples/learn/json_mode/error_handling/base_message_param.py +19 -0
  58. mirascope-1.18.4/examples/learn/json_mode/error_handling/messages.py +15 -0
  59. mirascope-1.18.4/examples/learn/json_mode/error_handling/shorthand.py +15 -0
  60. mirascope-1.18.4/examples/learn/json_mode/error_handling/string_template.py +15 -0
  61. mirascope-1.18.4/examples/learn/output_parsers/additional_examples/json_mode.py +23 -0
  62. mirascope-1.18.4/examples/learn/output_parsers/additional_examples/regex.py +28 -0
  63. mirascope-1.18.4/examples/learn/output_parsers/additional_examples/xml.py +55 -0
  64. mirascope-1.18.4/examples/learn/output_parsers/basic_usage/base_message_param.py +20 -0
  65. mirascope-1.18.4/examples/learn/output_parsers/basic_usage/messages.py +15 -0
  66. mirascope-1.18.4/examples/learn/output_parsers/basic_usage/shorthand.py +15 -0
  67. mirascope-1.18.4/examples/learn/output_parsers/basic_usage/string_template.py +15 -0
  68. mirascope-1.18.4/examples/learn/prompts/chat_history/base_message_param.py +23 -0
  69. mirascope-1.18.4/examples/learn/prompts/chat_history/messages.py +19 -0
  70. mirascope-1.18.4/examples/learn/prompts/chat_history/shorthand.py +19 -0
  71. mirascope-1.18.4/examples/learn/prompts/chat_history/string_template.py +24 -0
  72. mirascope-1.18.4/examples/learn/prompts/computed_fields/base_message_param.py +21 -0
  73. mirascope-1.18.4/examples/learn/prompts/computed_fields/messages.py +18 -0
  74. mirascope-1.18.4/examples/learn/prompts/computed_fields/shorthand.py +18 -0
  75. mirascope-1.18.4/examples/learn/prompts/computed_fields/string_template.py +13 -0
  76. mirascope-1.18.4/examples/learn/prompts/format_specifiers/float_format/base_message_param.py +14 -0
  77. mirascope-1.18.4/examples/learn/prompts/format_specifiers/float_format/messages.py +10 -0
  78. mirascope-1.18.4/examples/learn/prompts/format_specifiers/float_format/shorthand.py +10 -0
  79. mirascope-1.18.4/examples/learn/prompts/format_specifiers/float_format/string_template.py +9 -0
  80. mirascope-1.18.4/examples/learn/prompts/format_specifiers/lists.py +36 -0
  81. mirascope-1.18.4/examples/learn/prompts/format_specifiers/parts.py +32 -0
  82. mirascope-1.18.4/examples/learn/prompts/format_specifiers/texts.py +32 -0
  83. mirascope-1.18.4/examples/learn/prompts/multi_line/base_message_param.py +22 -0
  84. mirascope-1.18.4/examples/learn/prompts/multi_line/messages.py +19 -0
  85. mirascope-1.18.4/examples/learn/prompts/multi_line/shorthand.py +17 -0
  86. mirascope-1.18.4/examples/learn/prompts/multi_line/string_template.py +14 -0
  87. mirascope-1.18.4/examples/learn/prompts/multi_modal/audio/pydub/base_message_param.py +31 -0
  88. mirascope-1.18.4/examples/learn/prompts/multi_modal/audio/pydub/messages.py +23 -0
  89. mirascope-1.18.4/examples/learn/prompts/multi_modal/audio/pydub/shorthand.py +21 -0
  90. mirascope-1.18.4/examples/learn/prompts/multi_modal/audio/pydub/string_template.py +18 -0
  91. mirascope-1.18.4/examples/learn/prompts/multi_modal/audio/wave/base_message_param.py +31 -0
  92. mirascope-1.18.4/examples/learn/prompts/multi_modal/audio/wave/messages.py +24 -0
  93. mirascope-1.18.4/examples/learn/prompts/multi_modal/audio/wave/shorthand.py +22 -0
  94. mirascope-1.18.4/examples/learn/prompts/multi_modal/audio/wave/string_template.py +18 -0
  95. mirascope-1.18.4/examples/learn/prompts/multi_modal/document/base_message_param.py +31 -0
  96. mirascope-1.18.4/examples/learn/prompts/multi_modal/document/messages.py +29 -0
  97. mirascope-1.18.4/examples/learn/prompts/multi_modal/document/shorthand.py +29 -0
  98. mirascope-1.18.4/examples/learn/prompts/multi_modal/document/string_template.py +20 -0
  99. mirascope-1.18.4/examples/learn/prompts/multi_modal/image/base_message_param.py +32 -0
  100. mirascope-1.18.4/examples/learn/prompts/multi_modal/image/messages.py +23 -0
  101. mirascope-1.18.4/examples/learn/prompts/multi_modal/image/shorthand.py +21 -0
  102. mirascope-1.18.4/examples/learn/prompts/multi_modal/image/string_template.py +20 -0
  103. mirascope-1.18.4/examples/learn/prompts/multiple_messages/base_message_param.py +16 -0
  104. mirascope-1.18.4/examples/learn/prompts/multiple_messages/messages.py +16 -0
  105. mirascope-1.18.4/examples/learn/prompts/multiple_messages/shorthand.py +16 -0
  106. mirascope-1.18.4/examples/learn/prompts/multiple_messages/string_template.py +17 -0
  107. mirascope-1.18.4/examples/learn/prompts/object_attribute_access/base_message_param.py +22 -0
  108. mirascope-1.18.4/examples/learn/prompts/object_attribute_access/messages.py +19 -0
  109. mirascope-1.18.4/examples/learn/prompts/object_attribute_access/shorthand.py +17 -0
  110. mirascope-1.18.4/examples/learn/prompts/object_attribute_access/string_template.py +16 -0
  111. mirascope-1.18.4/examples/learn/prompts/single_user_message/base_message_param.py +10 -0
  112. mirascope-1.18.4/examples/learn/prompts/single_user_message/messages.py +10 -0
  113. mirascope-1.18.4/examples/learn/prompts/single_user_message/shorthand.py +10 -0
  114. mirascope-1.18.4/examples/learn/prompts/single_user_message/string_template.py +9 -0
  115. mirascope-1.18.4/examples/learn/provider_specific_features/anthropic/caching/messages/base_message_param.py +35 -0
  116. mirascope-1.18.4/examples/learn/provider_specific_features/anthropic/caching/messages/messages.py +31 -0
  117. mirascope-1.18.4/examples/learn/provider_specific_features/anthropic/caching/messages/shorthand.py +31 -0
  118. mirascope-1.18.4/examples/learn/provider_specific_features/anthropic/caching/messages/string_template.py +28 -0
  119. mirascope-1.18.4/examples/learn/response_models/basic_usage/base_message_param.py +25 -0
  120. mirascope-1.18.4/examples/learn/response_models/basic_usage/messages.py +25 -0
  121. mirascope-1.18.4/examples/learn/response_models/basic_usage/official_sdk/anthropic_sdk.py +43 -0
  122. mirascope-1.18.4/examples/learn/response_models/basic_usage/official_sdk/bedrock_sdk.py +53 -0
  123. mirascope-1.18.4/examples/learn/response_models/basic_usage/official_sdk/google_sdk.py +65 -0
  124. mirascope-1.18.4/examples/learn/response_models/basic_usage/shorthand.py +25 -0
  125. mirascope-1.18.4/examples/learn/response_models/basic_usage/string_template.py +25 -0
  126. mirascope-1.18.4/examples/learn/response_models/builtin_types/base_message_param.py +16 -0
  127. mirascope-1.18.4/examples/learn/response_models/builtin_types/messages.py +16 -0
  128. mirascope-1.18.4/examples/learn/response_models/builtin_types/shorthand.py +16 -0
  129. mirascope-1.18.4/examples/learn/response_models/builtin_types/string_template.py +16 -0
  130. mirascope-1.18.4/examples/learn/response_models/few_shot_examples/base_message_param.py +30 -0
  131. mirascope-1.18.4/examples/learn/response_models/few_shot_examples/google/base_message_param.py +30 -0
  132. mirascope-1.18.4/examples/learn/response_models/few_shot_examples/google/messages.py +27 -0
  133. mirascope-1.18.4/examples/learn/response_models/few_shot_examples/google/shorthand.py +25 -0
  134. mirascope-1.18.4/examples/learn/response_models/few_shot_examples/google/string_template.py +25 -0
  135. mirascope-1.18.4/examples/learn/response_models/few_shot_examples/messages.py +27 -0
  136. mirascope-1.18.4/examples/learn/response_models/few_shot_examples/shorthand.py +25 -0
  137. mirascope-1.18.4/examples/learn/response_models/few_shot_examples/string_template.py +25 -0
  138. mirascope-1.18.4/examples/learn/response_models/from_call_args/base_message_param.py +47 -0
  139. mirascope-1.18.4/examples/learn/response_models/from_call_args/messages.py +43 -0
  140. mirascope-1.18.4/examples/learn/response_models/from_call_args/shorthand.py +43 -0
  141. mirascope-1.18.4/examples/learn/response_models/from_call_args/string_template.py +43 -0
  142. mirascope-1.18.4/examples/learn/response_models/json_mode/base_message_param.py +19 -0
  143. mirascope-1.18.4/examples/learn/response_models/json_mode/messages.py +19 -0
  144. mirascope-1.18.4/examples/learn/response_models/json_mode/shorthand.py +19 -0
  145. mirascope-1.18.4/examples/learn/response_models/json_mode/string_template.py +19 -0
  146. mirascope-1.18.4/examples/learn/response_models/streaming/base_message_param.py +30 -0
  147. mirascope-1.18.4/examples/learn/response_models/streaming/messages.py +30 -0
  148. mirascope-1.18.4/examples/learn/response_models/streaming/shorthand.py +30 -0
  149. mirascope-1.18.4/examples/learn/response_models/streaming/string_template.py +30 -0
  150. mirascope-1.18.4/examples/learn/response_models/validation/base_message_param.py +39 -0
  151. mirascope-1.18.4/examples/learn/response_models/validation/messages.py +39 -0
  152. mirascope-1.18.4/examples/learn/response_models/validation/shorthand.py +39 -0
  153. mirascope-1.18.4/examples/learn/response_models/validation/string_template.py +39 -0
  154. mirascope-1.18.4/examples/learn/tools/basic_usage/base_tool/base_message_param.py +30 -0
  155. mirascope-1.18.4/examples/learn/tools/basic_usage/base_tool/messages.py +30 -0
  156. mirascope-1.18.4/examples/learn/tools/basic_usage/base_tool/shorthand.py +30 -0
  157. mirascope-1.18.4/examples/learn/tools/basic_usage/base_tool/string_template.py +30 -0
  158. mirascope-1.18.4/examples/learn/tools/basic_usage/function/base_message_param.py +29 -0
  159. mirascope-1.18.4/examples/learn/tools/basic_usage/function/messages.py +29 -0
  160. mirascope-1.18.4/examples/learn/tools/basic_usage/function/shorthand.py +29 -0
  161. mirascope-1.18.4/examples/learn/tools/basic_usage/function/string_template.py +29 -0
  162. mirascope-1.18.4/examples/learn/tools/basic_usage/official_sdk/anthropic_sdk.py +43 -0
  163. mirascope-1.18.4/examples/learn/tools/basic_usage/official_sdk/bedrock_sdk.py +63 -0
  164. mirascope-1.18.4/examples/learn/tools/basic_usage/official_sdk/google_sdk.py +51 -0
  165. mirascope-1.18.4/examples/learn/tools/few_shot_examples/base_tool/base_message_param.py +36 -0
  166. mirascope-1.18.4/examples/learn/tools/few_shot_examples/base_tool/google/base_message_param.py +36 -0
  167. mirascope-1.18.4/examples/learn/tools/few_shot_examples/base_tool/google/messages.py +36 -0
  168. mirascope-1.18.4/examples/learn/tools/few_shot_examples/base_tool/google/shorthand.py +36 -0
  169. mirascope-1.18.4/examples/learn/tools/few_shot_examples/base_tool/google/string_template.py +36 -0
  170. mirascope-1.18.4/examples/learn/tools/few_shot_examples/base_tool/messages.py +36 -0
  171. mirascope-1.18.4/examples/learn/tools/few_shot_examples/base_tool/shorthand.py +36 -0
  172. mirascope-1.18.4/examples/learn/tools/few_shot_examples/base_tool/string_template.py +36 -0
  173. mirascope-1.18.4/examples/learn/tools/few_shot_examples/function/base_message_param.py +43 -0
  174. mirascope-1.18.4/examples/learn/tools/few_shot_examples/function/google/base_message_param.py +43 -0
  175. mirascope-1.18.4/examples/learn/tools/few_shot_examples/function/google/messages.py +43 -0
  176. mirascope-1.18.4/examples/learn/tools/few_shot_examples/function/google/shorthand.py +43 -0
  177. mirascope-1.18.4/examples/learn/tools/few_shot_examples/function/google/string_template.py +43 -0
  178. mirascope-1.18.4/examples/learn/tools/few_shot_examples/function/messages.py +43 -0
  179. mirascope-1.18.4/examples/learn/tools/few_shot_examples/function/shorthand.py +43 -0
  180. mirascope-1.18.4/examples/learn/tools/few_shot_examples/function/string_template.py +43 -0
  181. mirascope-1.18.4/examples/learn/tools/parallel/base_tool/base_message_param.py +29 -0
  182. mirascope-1.18.4/examples/learn/tools/parallel/base_tool/messages.py +29 -0
  183. mirascope-1.18.4/examples/learn/tools/parallel/base_tool/shorthand.py +29 -0
  184. mirascope-1.18.4/examples/learn/tools/parallel/base_tool/string_template.py +29 -0
  185. mirascope-1.18.4/examples/learn/tools/parallel/function/base_message_param.py +28 -0
  186. mirascope-1.18.4/examples/learn/tools/parallel/function/messages.py +28 -0
  187. mirascope-1.18.4/examples/learn/tools/parallel/function/shorthand.py +28 -0
  188. mirascope-1.18.4/examples/learn/tools/parallel/function/string_template.py +28 -0
  189. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/azure/base_message_param.py +34 -0
  190. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/azure/messages.py +34 -0
  191. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/azure/shorthand.py +34 -0
  192. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/azure/string_template.py +34 -0
  193. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/base_message_param.py +37 -0
  194. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/bedrock/base_message_param.py +34 -0
  195. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/bedrock/messages.py +34 -0
  196. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/bedrock/shorthand.py +34 -0
  197. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/bedrock/string_template.py +34 -0
  198. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/cohere/base_message_param.py +34 -0
  199. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/cohere/messages.py +34 -0
  200. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/cohere/shorthand.py +34 -0
  201. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/cohere/string_template.py +34 -0
  202. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/google/base_message_param.py +34 -0
  203. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/google/messages.py +34 -0
  204. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/google/shorthand.py +34 -0
  205. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/google/string_template.py +34 -0
  206. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/litellm/base_message_param.py +34 -0
  207. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/litellm/messages.py +34 -0
  208. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/litellm/shorthand.py +34 -0
  209. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/litellm/string_template.py +34 -0
  210. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/messages.py +37 -0
  211. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/shorthand.py +37 -0
  212. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/base_tool/string_template.py +37 -0
  213. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/azure/base_message_param.py +33 -0
  214. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/azure/messages.py +33 -0
  215. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/azure/shorthand.py +33 -0
  216. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/azure/string_template.py +33 -0
  217. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/base_message_param.py +36 -0
  218. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/bedrock/base_message_param.py +33 -0
  219. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/bedrock/messages.py +33 -0
  220. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/bedrock/shorthand.py +33 -0
  221. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/bedrock/string_template.py +33 -0
  222. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/cohere/base_message_param.py +33 -0
  223. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/cohere/messages.py +33 -0
  224. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/cohere/shorthand.py +33 -0
  225. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/cohere/string_template.py +33 -0
  226. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/google/base_message_param.py +33 -0
  227. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/google/messages.py +33 -0
  228. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/google/shorthand.py +33 -0
  229. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/google/string_template.py +33 -0
  230. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/litellm/base_message_param.py +33 -0
  231. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/litellm/messages.py +33 -0
  232. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/litellm/shorthand.py +33 -0
  233. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/litellm/string_template.py +33 -0
  234. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/messages.py +36 -0
  235. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/shorthand.py +36 -0
  236. mirascope-1.18.4/examples/learn/tools/partial_tool_streams/function/string_template.py +36 -0
  237. mirascope-1.18.4/examples/learn/tools/pre_made_toolkit/base_message_param.py +24 -0
  238. mirascope-1.18.4/examples/learn/tools/pre_made_toolkit/messages.py +23 -0
  239. mirascope-1.18.4/examples/learn/tools/pre_made_toolkit/shorthand.py +23 -0
  240. mirascope-1.18.4/examples/learn/tools/pre_made_toolkit/string_template.py +19 -0
  241. mirascope-1.18.4/examples/learn/tools/pre_made_tools/basic_usage/base_message_param.py +16 -0
  242. mirascope-1.18.4/examples/learn/tools/pre_made_tools/basic_usage/messages.py +12 -0
  243. mirascope-1.18.4/examples/learn/tools/pre_made_tools/basic_usage/shorthand.py +12 -0
  244. mirascope-1.18.4/examples/learn/tools/pre_made_tools/basic_usage/string_template.py +12 -0
  245. mirascope-1.18.4/examples/learn/tools/pre_made_tools/custom_config/base_message_param.py +19 -0
  246. mirascope-1.18.4/examples/learn/tools/pre_made_tools/custom_config/messages.py +15 -0
  247. mirascope-1.18.4/examples/learn/tools/pre_made_tools/custom_config/shorthand.py +15 -0
  248. mirascope-1.18.4/examples/learn/tools/pre_made_tools/custom_config/string_template.py +15 -0
  249. mirascope-1.18.4/examples/learn/tools/streams/base_tool/azure/base_message_param.py +29 -0
  250. mirascope-1.18.4/examples/learn/tools/streams/base_tool/azure/messages.py +29 -0
  251. mirascope-1.18.4/examples/learn/tools/streams/base_tool/azure/shorthand.py +29 -0
  252. mirascope-1.18.4/examples/learn/tools/streams/base_tool/azure/string_template.py +29 -0
  253. mirascope-1.18.4/examples/learn/tools/streams/base_tool/base_message_param.py +29 -0
  254. mirascope-1.18.4/examples/learn/tools/streams/base_tool/bedrock/base_message_param.py +29 -0
  255. mirascope-1.18.4/examples/learn/tools/streams/base_tool/bedrock/messages.py +29 -0
  256. mirascope-1.18.4/examples/learn/tools/streams/base_tool/bedrock/shorthand.py +29 -0
  257. mirascope-1.18.4/examples/learn/tools/streams/base_tool/bedrock/string_template.py +29 -0
  258. mirascope-1.18.4/examples/learn/tools/streams/base_tool/cohere/base_message_param.py +29 -0
  259. mirascope-1.18.4/examples/learn/tools/streams/base_tool/cohere/messages.py +29 -0
  260. mirascope-1.18.4/examples/learn/tools/streams/base_tool/cohere/shorthand.py +29 -0
  261. mirascope-1.18.4/examples/learn/tools/streams/base_tool/cohere/string_template.py +29 -0
  262. mirascope-1.18.4/examples/learn/tools/streams/base_tool/google/base_message_param.py +29 -0
  263. mirascope-1.18.4/examples/learn/tools/streams/base_tool/google/messages.py +29 -0
  264. mirascope-1.18.4/examples/learn/tools/streams/base_tool/google/shorthand.py +29 -0
  265. mirascope-1.18.4/examples/learn/tools/streams/base_tool/google/string_template.py +29 -0
  266. mirascope-1.18.4/examples/learn/tools/streams/base_tool/litellm/base_message_param.py +29 -0
  267. mirascope-1.18.4/examples/learn/tools/streams/base_tool/litellm/messages.py +29 -0
  268. mirascope-1.18.4/examples/learn/tools/streams/base_tool/litellm/shorthand.py +29 -0
  269. mirascope-1.18.4/examples/learn/tools/streams/base_tool/litellm/string_template.py +29 -0
  270. mirascope-1.18.4/examples/learn/tools/streams/base_tool/messages.py +29 -0
  271. mirascope-1.18.4/examples/learn/tools/streams/base_tool/shorthand.py +29 -0
  272. mirascope-1.18.4/examples/learn/tools/streams/base_tool/string_template.py +29 -0
  273. mirascope-1.18.4/examples/learn/tools/streams/function/azure/base_message_param.py +28 -0
  274. mirascope-1.18.4/examples/learn/tools/streams/function/azure/messages.py +28 -0
  275. mirascope-1.18.4/examples/learn/tools/streams/function/azure/shorthand.py +28 -0
  276. mirascope-1.18.4/examples/learn/tools/streams/function/azure/string_template.py +28 -0
  277. mirascope-1.18.4/examples/learn/tools/streams/function/base_message_param.py +28 -0
  278. mirascope-1.18.4/examples/learn/tools/streams/function/bedrock/base_message_param.py +28 -0
  279. mirascope-1.18.4/examples/learn/tools/streams/function/bedrock/messages.py +28 -0
  280. mirascope-1.18.4/examples/learn/tools/streams/function/bedrock/shorthand.py +28 -0
  281. mirascope-1.18.4/examples/learn/tools/streams/function/bedrock/string_template.py +28 -0
  282. mirascope-1.18.4/examples/learn/tools/streams/function/cohere/base_message_param.py +28 -0
  283. mirascope-1.18.4/examples/learn/tools/streams/function/cohere/messages.py +28 -0
  284. mirascope-1.18.4/examples/learn/tools/streams/function/cohere/shorthand.py +28 -0
  285. mirascope-1.18.4/examples/learn/tools/streams/function/cohere/string_template.py +28 -0
  286. mirascope-1.18.4/examples/learn/tools/streams/function/google/base_message_param.py +28 -0
  287. mirascope-1.18.4/examples/learn/tools/streams/function/google/messages.py +28 -0
  288. mirascope-1.18.4/examples/learn/tools/streams/function/google/shorthand.py +28 -0
  289. mirascope-1.18.4/examples/learn/tools/streams/function/google/string_template.py +28 -0
  290. mirascope-1.18.4/examples/learn/tools/streams/function/litellm/base_message_param.py +28 -0
  291. mirascope-1.18.4/examples/learn/tools/streams/function/litellm/messages.py +28 -0
  292. mirascope-1.18.4/examples/learn/tools/streams/function/litellm/shorthand.py +28 -0
  293. mirascope-1.18.4/examples/learn/tools/streams/function/litellm/string_template.py +28 -0
  294. mirascope-1.18.4/examples/learn/tools/streams/function/messages.py +28 -0
  295. mirascope-1.18.4/examples/learn/tools/streams/function/shorthand.py +28 -0
  296. mirascope-1.18.4/examples/learn/tools/streams/function/string_template.py +28 -0
  297. mirascope-1.18.4/examples/learn/tools/tool_message_params/base_tool/base_message_param.py +35 -0
  298. mirascope-1.18.4/examples/learn/tools/tool_message_params/base_tool/messages.py +33 -0
  299. mirascope-1.18.4/examples/learn/tools/tool_message_params/base_tool/shorthand.py +33 -0
  300. mirascope-1.18.4/examples/learn/tools/tool_message_params/base_tool/string_template.py +42 -0
  301. mirascope-1.18.4/examples/learn/tools/tool_message_params/converted.py +30 -0
  302. mirascope-1.18.4/examples/learn/tools/tool_message_params/function/base_message_param.py +32 -0
  303. mirascope-1.18.4/examples/learn/tools/tool_message_params/function/messages.py +30 -0
  304. mirascope-1.18.4/examples/learn/tools/tool_message_params/function/shorthand.py +30 -0
  305. mirascope-1.18.4/examples/learn/tools/tool_message_params/function/string_template.py +33 -0
  306. mirascope-1.18.4/examples/learn/tools/toolkit/base_message_param.py +44 -0
  307. mirascope-1.18.4/examples/learn/tools/toolkit/messages.py +42 -0
  308. mirascope-1.18.4/examples/learn/tools/toolkit/shorthand.py +42 -0
  309. mirascope-1.18.4/examples/learn/tools/toolkit/string_template.py +40 -0
  310. mirascope-1.18.4/examples/learn/tools/validation/base_tool/base_message_param.py +44 -0
  311. mirascope-1.18.4/examples/learn/tools/validation/base_tool/messages.py +44 -0
  312. mirascope-1.18.4/examples/learn/tools/validation/base_tool/shorthand.py +44 -0
  313. mirascope-1.18.4/examples/learn/tools/validation/base_tool/string_template.py +44 -0
  314. mirascope-1.18.4/examples/learn/tools/validation/function/base_message_param.py +42 -0
  315. mirascope-1.18.4/examples/learn/tools/validation/function/messages.py +42 -0
  316. mirascope-1.18.4/examples/learn/tools/validation/function/shorthand.py +42 -0
  317. mirascope-1.18.4/examples/learn/tools/validation/function/string_template.py +42 -0
  318. mirascope-1.18.4/mirascope/__init__.py +55 -0
  319. mirascope-1.18.4/mirascope/beta/openai/__init__.py +17 -0
  320. mirascope-1.18.4/mirascope/beta/openai/realtime/__init__.py +13 -0
  321. mirascope-1.18.4/mirascope/beta/openai/realtime/tool.py +113 -0
  322. mirascope-1.18.4/mirascope/beta/rag/__init__.py +24 -0
  323. mirascope-1.18.4/mirascope/beta/rag/base/__init__.py +22 -0
  324. mirascope-1.18.4/mirascope/beta/rag/weaviate/__init__.py +6 -0
  325. mirascope-1.18.4/mirascope/core/__init__.py +98 -0
  326. mirascope-1.18.4/mirascope/core/anthropic/__init__.py +31 -0
  327. mirascope-1.18.4/mirascope/core/anthropic/_utils/_calculate_cost.py +188 -0
  328. mirascope-1.18.4/mirascope/core/anthropic/call_response.py +204 -0
  329. mirascope-1.18.4/mirascope/core/anthropic/call_response_chunk.py +122 -0
  330. mirascope-1.18.4/mirascope/core/anthropic/stream.py +149 -0
  331. mirascope-1.18.4/mirascope/core/azure/__init__.py +31 -0
  332. mirascope-1.18.4/mirascope/core/azure/_utils/_calculate_cost.py +11 -0
  333. mirascope-1.18.4/mirascope/core/azure/call_response.py +215 -0
  334. mirascope-1.18.4/mirascope/core/azure/call_response_chunk.py +100 -0
  335. mirascope-1.18.4/mirascope/core/azure/stream.py +149 -0
  336. mirascope-1.18.4/mirascope/core/base/__init__.py +75 -0
  337. mirascope-1.18.4/mirascope/core/base/_utils/__init__.py +87 -0
  338. mirascope-1.18.4/mirascope/core/base/_utils/_get_common_usage.py +20 -0
  339. mirascope-1.18.4/mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py +137 -0
  340. mirascope-1.18.4/mirascope/core/base/_utils/_protocols.py +901 -0
  341. mirascope-1.18.4/mirascope/core/base/call_response.py +300 -0
  342. mirascope-1.18.4/mirascope/core/base/call_response_chunk.py +116 -0
  343. mirascope-1.18.4/mirascope/core/base/stream.py +457 -0
  344. mirascope-1.18.4/mirascope/core/base/tool.py +205 -0
  345. mirascope-1.18.4/mirascope/core/base/types.py +70 -0
  346. mirascope-1.18.4/mirascope/core/bedrock/__init__.py +34 -0
  347. mirascope-1.18.4/mirascope/core/bedrock/_utils/_calculate_cost.py +15 -0
  348. mirascope-1.18.4/mirascope/core/bedrock/call_response.py +247 -0
  349. mirascope-1.18.4/mirascope/core/bedrock/call_response_chunk.py +105 -0
  350. mirascope-1.18.4/mirascope/core/bedrock/stream.py +158 -0
  351. mirascope-1.18.4/mirascope/core/cohere/__init__.py +30 -0
  352. mirascope-1.18.4/mirascope/core/cohere/_utils/_calculate_cost.py +40 -0
  353. mirascope-1.18.4/mirascope/core/cohere/call_response.py +204 -0
  354. mirascope-1.18.4/mirascope/core/cohere/call_response_chunk.py +119 -0
  355. mirascope-1.18.4/mirascope/core/cohere/stream.py +116 -0
  356. mirascope-1.18.4/mirascope/core/gemini/__init__.py +40 -0
  357. mirascope-1.18.4/mirascope/core/gemini/_utils/_calculate_cost.py +67 -0
  358. mirascope-1.18.4/mirascope/core/gemini/_utils/_convert_message_params.py +156 -0
  359. mirascope-1.18.4/mirascope/core/gemini/call_response.py +215 -0
  360. mirascope-1.18.4/mirascope/core/gemini/call_response_chunk.py +95 -0
  361. mirascope-1.18.4/mirascope/core/gemini/stream.py +123 -0
  362. mirascope-1.18.4/mirascope/core/google/__init__.py +29 -0
  363. mirascope-1.18.4/mirascope/core/google/_utils/_calculate_cost.py +215 -0
  364. mirascope-1.18.4/mirascope/core/google/_utils/_convert_message_params.py +186 -0
  365. mirascope-1.18.4/mirascope/core/google/_utils/_message_param_converter.py +160 -0
  366. mirascope-1.18.4/mirascope/core/google/_utils/_validate_media_type.py +34 -0
  367. mirascope-1.18.4/mirascope/core/google/call_response.py +230 -0
  368. mirascope-1.18.4/mirascope/core/google/call_response_chunk.py +105 -0
  369. mirascope-1.18.4/mirascope/core/google/stream.py +146 -0
  370. mirascope-1.18.4/mirascope/core/groq/__init__.py +30 -0
  371. mirascope-1.18.4/mirascope/core/groq/_utils/_calculate_cost.py +69 -0
  372. mirascope-1.18.4/mirascope/core/groq/call_response.py +197 -0
  373. mirascope-1.18.4/mirascope/core/groq/call_response_chunk.py +98 -0
  374. mirascope-1.18.4/mirascope/core/groq/stream.py +138 -0
  375. mirascope-1.18.4/mirascope/core/litellm/__init__.py +28 -0
  376. mirascope-1.18.4/mirascope/core/litellm/_utils/_setup_call.py +109 -0
  377. mirascope-1.18.4/mirascope/core/mistral/__init__.py +36 -0
  378. mirascope-1.18.4/mirascope/core/mistral/_utils/_calculate_cost.py +48 -0
  379. mirascope-1.18.4/mirascope/core/mistral/call_response.py +202 -0
  380. mirascope-1.18.4/mirascope/core/mistral/call_response_chunk.py +99 -0
  381. mirascope-1.18.4/mirascope/core/mistral/stream.py +123 -0
  382. mirascope-1.18.4/mirascope/core/openai/__init__.py +31 -0
  383. mirascope-1.18.4/mirascope/core/openai/_utils/_calculate_cost.py +246 -0
  384. mirascope-1.18.4/mirascope/core/openai/call_params.py +91 -0
  385. mirascope-1.18.4/mirascope/core/openai/call_response.py +250 -0
  386. mirascope-1.18.4/mirascope/core/openai/call_response_chunk.py +133 -0
  387. mirascope-1.18.4/mirascope/core/openai/stream.py +188 -0
  388. mirascope-1.18.4/mirascope/core/vertex/__init__.py +45 -0
  389. mirascope-1.18.4/mirascope/core/vertex/_utils/_calculate_cost.py +66 -0
  390. mirascope-1.18.4/mirascope/core/vertex/_utils/_convert_message_params.py +171 -0
  391. mirascope-1.18.4/mirascope/core/vertex/call_response.py +207 -0
  392. mirascope-1.18.4/mirascope/core/vertex/call_response_chunk.py +93 -0
  393. mirascope-1.18.4/mirascope/core/vertex/stream.py +122 -0
  394. mirascope-1.18.4/mirascope/integrations/_middleware_factory.py +403 -0
  395. mirascope-1.18.4/mirascope/integrations/logfire/_utils.py +225 -0
  396. mirascope-1.18.4/mirascope/llm/__init__.py +6 -0
  397. mirascope-1.18.4/mirascope/llm/_protocols.py +519 -0
  398. mirascope-1.18.4/mirascope/llm/call_response.py +158 -0
  399. mirascope-1.18.4/mirascope/llm/llm_call.py +294 -0
  400. mirascope-1.18.4/mirascope/llm/stream.py +180 -0
  401. mirascope-1.18.4/mirascope/retries/__init__.py +11 -0
  402. mirascope-1.18.4/mirascope/tools/__init__.py +37 -0
  403. mirascope-1.18.4/mkdocs.yml +424 -0
  404. mirascope-1.18.4/pyproject.toml +225 -0
  405. mirascope-1.18.4/tests/core/anthropic/_utils/test_calculate_cost.py +10 -0
  406. mirascope-1.18.4/tests/core/azure/_utils/test_calculate_cost.py +10 -0
  407. mirascope-1.18.4/tests/core/base/_utils/test_convert_messages_to_message_params.py +254 -0
  408. mirascope-1.18.4/tests/core/base/_utils/test_parse_prompt_messages.py +115 -0
  409. mirascope-1.18.4/tests/core/base/test_tool.py +203 -0
  410. mirascope-1.18.4/tests/core/bedrock/_utils/test_calculate_cost.py +10 -0
  411. mirascope-1.18.4/tests/core/bedrock/test_stream.py +256 -0
  412. mirascope-1.18.4/tests/core/cohere/_utils/test_calculate_cost.py +10 -0
  413. mirascope-1.18.4/tests/core/gemini/_utils/test_calculate_cost.py +10 -0
  414. mirascope-1.18.4/tests/core/gemini/_utils/test_convert_message_params.py +330 -0
  415. mirascope-1.18.4/tests/core/google/_utils/test_calculate_cost.py +10 -0
  416. mirascope-1.18.4/tests/core/google/_utils/test_convert_message_params.py +670 -0
  417. mirascope-1.18.4/tests/core/google/_utils/test_message_param_converter.py +261 -0
  418. mirascope-1.18.4/tests/core/google/test_call_response.py +144 -0
  419. mirascope-1.18.4/tests/core/google/test_stream.py +145 -0
  420. mirascope-1.18.4/tests/core/groq/_utils/test_calculate_cost.py +16 -0
  421. mirascope-1.18.4/tests/core/groq/_utils/test_convert_message_params.py +146 -0
  422. mirascope-1.18.4/tests/core/mistral/_utils/test_calculate_cost.py +10 -0
  423. mirascope-1.18.4/tests/core/openai/_utils/test_calculate_cost.py +10 -0
  424. mirascope-1.18.4/tests/core/vertex/_utils/test_calculate_cost.py +65 -0
  425. mirascope-1.18.4/tests/core/vertex/_utils/test_convert_message_params.py +317 -0
  426. mirascope-1.18.4/tests/docs/test_generate_provider_examples.py +326 -0
  427. mirascope-1.18.4/tests/llm/test_call.py +299 -0
  428. mirascope-1.18.4/tests/llm/test_call_response.py +237 -0
  429. mirascope-1.18.4/tests/llm/test_call_response_chunk.py +62 -0
  430. mirascope-1.18.4/tests/llm/test_stream.py +256 -0
  431. mirascope-1.18.4/tests/mcp/test_mcp_server.py +1079 -0
  432. mirascope-1.18.4/uv.lock +6843 -0
  433. mirascope-1.18.2/.github/workflows/lint.yml +0 -49
  434. mirascope-1.18.2/.gitignore +0 -172
  435. mirascope-1.18.2/.pre-commit-config.yaml +0 -28
  436. mirascope-1.18.2/PKG-INFO +0 -166
  437. mirascope-1.18.2/README.md +0 -66
  438. mirascope-1.18.2/docs/WELCOME.md +0 -188
  439. mirascope-1.18.2/docs/WHY.md +0 -245
  440. mirascope-1.18.2/docs/blog/posts/langchain-structured-output.md +0 -480
  441. mirascope-1.18.2/docs/hooks.py +0 -76
  442. mirascope-1.18.2/docs/learn/agents.md +0 -179
  443. mirascope-1.18.2/docs/learn/calls.md +0 -522
  444. mirascope-1.18.2/docs/learn/evals.md +0 -123
  445. mirascope-1.18.2/docs/learn/json_mode.md +0 -95
  446. mirascope-1.18.2/docs/learn/output_parsers.md +0 -84
  447. mirascope-1.18.2/docs/learn/prompts.md +0 -345
  448. mirascope-1.18.2/docs/learn/provider_specific_features/anthropic.md +0 -51
  449. mirascope-1.18.2/docs/learn/response_models.md +0 -294
  450. mirascope-1.18.2/docs/learn/tools.md +0 -550
  451. mirascope-1.18.2/docs/plugins/griffe_doclinks.py +0 -158
  452. mirascope-1.18.2/docs/tutorials/prompt_engineering/text_based/thread_of_thought.ipynb +0 -175
  453. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/anthropic/base_message_param.py +0 -50
  454. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/anthropic/messages.py +0 -50
  455. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/anthropic/shorthand.py +0 -50
  456. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/anthropic/string_template.py +0 -52
  457. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/azure/base_message_param.py +0 -50
  458. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/azure/messages.py +0 -50
  459. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/azure/shorthand.py +0 -50
  460. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/azure/string_template.py +0 -52
  461. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/bedrock/base_message_param.py +0 -50
  462. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/bedrock/messages.py +0 -50
  463. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/bedrock/shorthand.py +0 -50
  464. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/bedrock/string_template.py +0 -52
  465. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/cohere/base_message_param.py +0 -50
  466. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/cohere/messages.py +0 -50
  467. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/cohere/shorthand.py +0 -50
  468. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/cohere/string_template.py +0 -52
  469. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/google/base_message_param.py +0 -50
  470. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/google/messages.py +0 -50
  471. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/google/shorthand.py +0 -50
  472. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/google/string_template.py +0 -52
  473. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/groq/base_message_param.py +0 -50
  474. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/groq/messages.py +0 -50
  475. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/groq/shorthand.py +0 -50
  476. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/groq/string_template.py +0 -52
  477. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/litellm/base_message_param.py +0 -50
  478. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/litellm/messages.py +0 -50
  479. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/litellm/shorthand.py +0 -50
  480. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/litellm/string_template.py +0 -52
  481. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/mistral/base_message_param.py +0 -50
  482. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/mistral/messages.py +0 -50
  483. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/mistral/shorthand.py +0 -50
  484. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/mistral/string_template.py +0 -52
  485. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/openai/base_message_param.py +0 -50
  486. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/openai/messages.py +0 -50
  487. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/openai/shorthand.py +0 -50
  488. mirascope-1.18.2/examples/learn/agents/human_in_the_loop/openai/string_template.py +0 -52
  489. mirascope-1.18.2/examples/learn/agents/state_management/anthropic/base_message_param.py +0 -30
  490. mirascope-1.18.2/examples/learn/agents/state_management/anthropic/messages.py +0 -30
  491. mirascope-1.18.2/examples/learn/agents/state_management/anthropic/shorthand.py +0 -30
  492. mirascope-1.18.2/examples/learn/agents/state_management/anthropic/string_template.py +0 -32
  493. mirascope-1.18.2/examples/learn/agents/state_management/azure/base_message_param.py +0 -30
  494. mirascope-1.18.2/examples/learn/agents/state_management/azure/messages.py +0 -30
  495. mirascope-1.18.2/examples/learn/agents/state_management/azure/shorthand.py +0 -30
  496. mirascope-1.18.2/examples/learn/agents/state_management/azure/string_template.py +0 -32
  497. mirascope-1.18.2/examples/learn/agents/state_management/bedrock/base_message_param.py +0 -30
  498. mirascope-1.18.2/examples/learn/agents/state_management/bedrock/messages.py +0 -30
  499. mirascope-1.18.2/examples/learn/agents/state_management/bedrock/shorthand.py +0 -30
  500. mirascope-1.18.2/examples/learn/agents/state_management/bedrock/string_template.py +0 -32
  501. mirascope-1.18.2/examples/learn/agents/state_management/cohere/base_message_param.py +0 -30
  502. mirascope-1.18.2/examples/learn/agents/state_management/cohere/messages.py +0 -30
  503. mirascope-1.18.2/examples/learn/agents/state_management/cohere/shorthand.py +0 -30
  504. mirascope-1.18.2/examples/learn/agents/state_management/cohere/string_template.py +0 -32
  505. mirascope-1.18.2/examples/learn/agents/state_management/google/base_message_param.py +0 -30
  506. mirascope-1.18.2/examples/learn/agents/state_management/google/messages.py +0 -30
  507. mirascope-1.18.2/examples/learn/agents/state_management/google/shorthand.py +0 -30
  508. mirascope-1.18.2/examples/learn/agents/state_management/google/string_template.py +0 -32
  509. mirascope-1.18.2/examples/learn/agents/state_management/groq/base_message_param.py +0 -30
  510. mirascope-1.18.2/examples/learn/agents/state_management/groq/messages.py +0 -30
  511. mirascope-1.18.2/examples/learn/agents/state_management/groq/shorthand.py +0 -30
  512. mirascope-1.18.2/examples/learn/agents/state_management/groq/string_template.py +0 -32
  513. mirascope-1.18.2/examples/learn/agents/state_management/litellm/base_message_param.py +0 -30
  514. mirascope-1.18.2/examples/learn/agents/state_management/litellm/messages.py +0 -30
  515. mirascope-1.18.2/examples/learn/agents/state_management/litellm/shorthand.py +0 -30
  516. mirascope-1.18.2/examples/learn/agents/state_management/litellm/string_template.py +0 -32
  517. mirascope-1.18.2/examples/learn/agents/state_management/mistral/base_message_param.py +0 -30
  518. mirascope-1.18.2/examples/learn/agents/state_management/mistral/messages.py +0 -30
  519. mirascope-1.18.2/examples/learn/agents/state_management/mistral/shorthand.py +0 -30
  520. mirascope-1.18.2/examples/learn/agents/state_management/mistral/string_template.py +0 -32
  521. mirascope-1.18.2/examples/learn/agents/state_management/openai/base_message_param.py +0 -30
  522. mirascope-1.18.2/examples/learn/agents/state_management/openai/messages.py +0 -30
  523. mirascope-1.18.2/examples/learn/agents/state_management/openai/shorthand.py +0 -30
  524. mirascope-1.18.2/examples/learn/agents/state_management/openai/string_template.py +0 -32
  525. mirascope-1.18.2/examples/learn/agents/state_management/provider_agnostic/base_message_param.py +0 -44
  526. mirascope-1.18.2/examples/learn/agents/state_management/provider_agnostic/messages.py +0 -50
  527. mirascope-1.18.2/examples/learn/agents/state_management/provider_agnostic/shorthand.py +0 -50
  528. mirascope-1.18.2/examples/learn/agents/state_management/provider_agnostic/string_template.py +0 -51
  529. mirascope-1.18.2/examples/learn/agents/streaming/anthropic/base_message_param.py +0 -58
  530. mirascope-1.18.2/examples/learn/agents/streaming/anthropic/messages.py +0 -58
  531. mirascope-1.18.2/examples/learn/agents/streaming/anthropic/shorthand.py +0 -58
  532. mirascope-1.18.2/examples/learn/agents/streaming/anthropic/string_template.py +0 -60
  533. mirascope-1.18.2/examples/learn/agents/streaming/azure/base_message_param.py +0 -58
  534. mirascope-1.18.2/examples/learn/agents/streaming/azure/messages.py +0 -58
  535. mirascope-1.18.2/examples/learn/agents/streaming/azure/shorthand.py +0 -58
  536. mirascope-1.18.2/examples/learn/agents/streaming/azure/string_template.py +0 -60
  537. mirascope-1.18.2/examples/learn/agents/streaming/bedrock/base_message_param.py +0 -64
  538. mirascope-1.18.2/examples/learn/agents/streaming/bedrock/messages.py +0 -58
  539. mirascope-1.18.2/examples/learn/agents/streaming/bedrock/shorthand.py +0 -58
  540. mirascope-1.18.2/examples/learn/agents/streaming/bedrock/string_template.py +0 -60
  541. mirascope-1.18.2/examples/learn/agents/streaming/cohere/base_message_param.py +0 -58
  542. mirascope-1.18.2/examples/learn/agents/streaming/cohere/messages.py +0 -58
  543. mirascope-1.18.2/examples/learn/agents/streaming/cohere/shorthand.py +0 -58
  544. mirascope-1.18.2/examples/learn/agents/streaming/cohere/string_template.py +0 -60
  545. mirascope-1.18.2/examples/learn/agents/streaming/google/base_message_param.py +0 -58
  546. mirascope-1.18.2/examples/learn/agents/streaming/google/messages.py +0 -58
  547. mirascope-1.18.2/examples/learn/agents/streaming/google/shorthand.py +0 -58
  548. mirascope-1.18.2/examples/learn/agents/streaming/google/string_template.py +0 -60
  549. mirascope-1.18.2/examples/learn/agents/streaming/groq/base_message_param.py +0 -58
  550. mirascope-1.18.2/examples/learn/agents/streaming/groq/messages.py +0 -58
  551. mirascope-1.18.2/examples/learn/agents/streaming/groq/shorthand.py +0 -58
  552. mirascope-1.18.2/examples/learn/agents/streaming/groq/string_template.py +0 -60
  553. mirascope-1.18.2/examples/learn/agents/streaming/litellm/base_message_param.py +0 -58
  554. mirascope-1.18.2/examples/learn/agents/streaming/litellm/messages.py +0 -58
  555. mirascope-1.18.2/examples/learn/agents/streaming/litellm/shorthand.py +0 -58
  556. mirascope-1.18.2/examples/learn/agents/streaming/litellm/string_template.py +0 -60
  557. mirascope-1.18.2/examples/learn/agents/streaming/mistral/base_message_param.py +0 -58
  558. mirascope-1.18.2/examples/learn/agents/streaming/mistral/messages.py +0 -58
  559. mirascope-1.18.2/examples/learn/agents/streaming/mistral/shorthand.py +0 -58
  560. mirascope-1.18.2/examples/learn/agents/streaming/mistral/string_template.py +0 -60
  561. mirascope-1.18.2/examples/learn/agents/streaming/openai/base_message_param.py +0 -58
  562. mirascope-1.18.2/examples/learn/agents/streaming/openai/messages.py +0 -58
  563. mirascope-1.18.2/examples/learn/agents/streaming/openai/shorthand.py +0 -58
  564. mirascope-1.18.2/examples/learn/agents/streaming/openai/string_template.py +0 -60
  565. mirascope-1.18.2/examples/learn/agents/tools/anthropic/base_message_param.py +0 -57
  566. mirascope-1.18.2/examples/learn/agents/tools/anthropic/messages.py +0 -57
  567. mirascope-1.18.2/examples/learn/agents/tools/anthropic/shorthand.py +0 -57
  568. mirascope-1.18.2/examples/learn/agents/tools/anthropic/string_template.py +0 -59
  569. mirascope-1.18.2/examples/learn/agents/tools/azure/base_message_param.py +0 -57
  570. mirascope-1.18.2/examples/learn/agents/tools/azure/messages.py +0 -57
  571. mirascope-1.18.2/examples/learn/agents/tools/azure/shorthand.py +0 -57
  572. mirascope-1.18.2/examples/learn/agents/tools/azure/string_template.py +0 -59
  573. mirascope-1.18.2/examples/learn/agents/tools/bedrock/base_message_param.py +0 -57
  574. mirascope-1.18.2/examples/learn/agents/tools/bedrock/messages.py +0 -57
  575. mirascope-1.18.2/examples/learn/agents/tools/bedrock/shorthand.py +0 -57
  576. mirascope-1.18.2/examples/learn/agents/tools/bedrock/string_template.py +0 -59
  577. mirascope-1.18.2/examples/learn/agents/tools/cohere/base_message_param.py +0 -57
  578. mirascope-1.18.2/examples/learn/agents/tools/cohere/messages.py +0 -57
  579. mirascope-1.18.2/examples/learn/agents/tools/cohere/shorthand.py +0 -57
  580. mirascope-1.18.2/examples/learn/agents/tools/cohere/string_template.py +0 -59
  581. mirascope-1.18.2/examples/learn/agents/tools/google/base_message_param.py +0 -57
  582. mirascope-1.18.2/examples/learn/agents/tools/google/messages.py +0 -57
  583. mirascope-1.18.2/examples/learn/agents/tools/google/shorthand.py +0 -57
  584. mirascope-1.18.2/examples/learn/agents/tools/google/string_template.py +0 -59
  585. mirascope-1.18.2/examples/learn/agents/tools/groq/base_message_param.py +0 -57
  586. mirascope-1.18.2/examples/learn/agents/tools/groq/messages.py +0 -57
  587. mirascope-1.18.2/examples/learn/agents/tools/groq/shorthand.py +0 -57
  588. mirascope-1.18.2/examples/learn/agents/tools/groq/string_template.py +0 -59
  589. mirascope-1.18.2/examples/learn/agents/tools/litellm/base_message_param.py +0 -57
  590. mirascope-1.18.2/examples/learn/agents/tools/litellm/messages.py +0 -57
  591. mirascope-1.18.2/examples/learn/agents/tools/litellm/shorthand.py +0 -57
  592. mirascope-1.18.2/examples/learn/agents/tools/litellm/string_template.py +0 -59
  593. mirascope-1.18.2/examples/learn/agents/tools/mistral/base_message_param.py +0 -57
  594. mirascope-1.18.2/examples/learn/agents/tools/mistral/messages.py +0 -57
  595. mirascope-1.18.2/examples/learn/agents/tools/mistral/shorthand.py +0 -57
  596. mirascope-1.18.2/examples/learn/agents/tools/mistral/string_template.py +0 -59
  597. mirascope-1.18.2/examples/learn/agents/tools/openai/base_message_param.py +0 -57
  598. mirascope-1.18.2/examples/learn/agents/tools/openai/messages.py +0 -57
  599. mirascope-1.18.2/examples/learn/agents/tools/openai/shorthand.py +0 -57
  600. mirascope-1.18.2/examples/learn/agents/tools/openai/string_template.py +0 -59
  601. mirascope-1.18.2/examples/learn/calls/basic_usage/anthropic/official_sdk_call.py +0 -17
  602. mirascope-1.18.2/examples/learn/calls/basic_usage/bedrock/official_sdk_call.py +0 -22
  603. mirascope-1.18.2/examples/learn/calls/basic_usage/google/official_sdk_call.py +0 -15
  604. mirascope-1.18.2/examples/learn/evals/llm/anthropic/base_message_param.py +0 -54
  605. mirascope-1.18.2/examples/learn/evals/llm/anthropic/messages.py +0 -51
  606. mirascope-1.18.2/examples/learn/evals/llm/anthropic/shorthand.py +0 -49
  607. mirascope-1.18.2/examples/learn/evals/llm/anthropic/string_template.py +0 -47
  608. mirascope-1.18.2/examples/learn/evals/llm/azure/base_message_param.py +0 -54
  609. mirascope-1.18.2/examples/learn/evals/llm/azure/messages.py +0 -51
  610. mirascope-1.18.2/examples/learn/evals/llm/azure/shorthand.py +0 -49
  611. mirascope-1.18.2/examples/learn/evals/llm/azure/string_template.py +0 -47
  612. mirascope-1.18.2/examples/learn/evals/llm/bedrock/base_message_param.py +0 -54
  613. mirascope-1.18.2/examples/learn/evals/llm/bedrock/messages.py +0 -51
  614. mirascope-1.18.2/examples/learn/evals/llm/bedrock/shorthand.py +0 -49
  615. mirascope-1.18.2/examples/learn/evals/llm/bedrock/string_template.py +0 -47
  616. mirascope-1.18.2/examples/learn/evals/llm/cohere/base_message_param.py +0 -54
  617. mirascope-1.18.2/examples/learn/evals/llm/cohere/messages.py +0 -51
  618. mirascope-1.18.2/examples/learn/evals/llm/cohere/shorthand.py +0 -49
  619. mirascope-1.18.2/examples/learn/evals/llm/cohere/string_template.py +0 -47
  620. mirascope-1.18.2/examples/learn/evals/llm/google/base_message_param.py +0 -54
  621. mirascope-1.18.2/examples/learn/evals/llm/google/messages.py +0 -51
  622. mirascope-1.18.2/examples/learn/evals/llm/google/shorthand.py +0 -49
  623. mirascope-1.18.2/examples/learn/evals/llm/google/string_template.py +0 -47
  624. mirascope-1.18.2/examples/learn/evals/llm/groq/base_message_param.py +0 -54
  625. mirascope-1.18.2/examples/learn/evals/llm/groq/messages.py +0 -51
  626. mirascope-1.18.2/examples/learn/evals/llm/groq/shorthand.py +0 -49
  627. mirascope-1.18.2/examples/learn/evals/llm/groq/string_template.py +0 -47
  628. mirascope-1.18.2/examples/learn/evals/llm/litellm/base_message_param.py +0 -54
  629. mirascope-1.18.2/examples/learn/evals/llm/litellm/messages.py +0 -51
  630. mirascope-1.18.2/examples/learn/evals/llm/litellm/shorthand.py +0 -49
  631. mirascope-1.18.2/examples/learn/evals/llm/litellm/string_template.py +0 -47
  632. mirascope-1.18.2/examples/learn/evals/llm/mistral/base_message_param.py +0 -54
  633. mirascope-1.18.2/examples/learn/evals/llm/mistral/messages.py +0 -51
  634. mirascope-1.18.2/examples/learn/evals/llm/mistral/shorthand.py +0 -49
  635. mirascope-1.18.2/examples/learn/evals/llm/mistral/string_template.py +0 -47
  636. mirascope-1.18.2/examples/learn/evals/llm/openai/base_message_param.py +0 -54
  637. mirascope-1.18.2/examples/learn/evals/llm/openai/messages.py +0 -51
  638. mirascope-1.18.2/examples/learn/evals/llm/openai/shorthand.py +0 -49
  639. mirascope-1.18.2/examples/learn/evals/llm/openai/string_template.py +0 -47
  640. mirascope-1.18.2/examples/learn/evals/panel/base_message_param.py +0 -58
  641. mirascope-1.18.2/examples/learn/evals/panel/messages.py +0 -55
  642. mirascope-1.18.2/examples/learn/evals/panel/shorthand.py +0 -53
  643. mirascope-1.18.2/examples/learn/evals/panel/string_template.py +0 -50
  644. mirascope-1.18.2/examples/learn/json_mode/basic_usage/anthropic/base_message_param.py +0 -17
  645. mirascope-1.18.2/examples/learn/json_mode/basic_usage/anthropic/messages.py +0 -13
  646. mirascope-1.18.2/examples/learn/json_mode/basic_usage/anthropic/shorthand.py +0 -13
  647. mirascope-1.18.2/examples/learn/json_mode/basic_usage/anthropic/string_template.py +0 -13
  648. mirascope-1.18.2/examples/learn/json_mode/basic_usage/azure/base_message_param.py +0 -17
  649. mirascope-1.18.2/examples/learn/json_mode/basic_usage/azure/messages.py +0 -13
  650. mirascope-1.18.2/examples/learn/json_mode/basic_usage/azure/shorthand.py +0 -13
  651. mirascope-1.18.2/examples/learn/json_mode/basic_usage/azure/string_template.py +0 -13
  652. mirascope-1.18.2/examples/learn/json_mode/basic_usage/bedrock/base_message_param.py +0 -17
  653. mirascope-1.18.2/examples/learn/json_mode/basic_usage/bedrock/messages.py +0 -13
  654. mirascope-1.18.2/examples/learn/json_mode/basic_usage/bedrock/shorthand.py +0 -13
  655. mirascope-1.18.2/examples/learn/json_mode/basic_usage/bedrock/string_template.py +0 -13
  656. mirascope-1.18.2/examples/learn/json_mode/basic_usage/cohere/base_message_param.py +0 -17
  657. mirascope-1.18.2/examples/learn/json_mode/basic_usage/cohere/messages.py +0 -13
  658. mirascope-1.18.2/examples/learn/json_mode/basic_usage/cohere/shorthand.py +0 -13
  659. mirascope-1.18.2/examples/learn/json_mode/basic_usage/cohere/string_template.py +0 -13
  660. mirascope-1.18.2/examples/learn/json_mode/basic_usage/google/base_message_param.py +0 -17
  661. mirascope-1.18.2/examples/learn/json_mode/basic_usage/google/messages.py +0 -13
  662. mirascope-1.18.2/examples/learn/json_mode/basic_usage/google/shorthand.py +0 -13
  663. mirascope-1.18.2/examples/learn/json_mode/basic_usage/google/string_template.py +0 -13
  664. mirascope-1.18.2/examples/learn/json_mode/basic_usage/groq/base_message_param.py +0 -17
  665. mirascope-1.18.2/examples/learn/json_mode/basic_usage/groq/messages.py +0 -13
  666. mirascope-1.18.2/examples/learn/json_mode/basic_usage/groq/shorthand.py +0 -13
  667. mirascope-1.18.2/examples/learn/json_mode/basic_usage/groq/string_template.py +0 -13
  668. mirascope-1.18.2/examples/learn/json_mode/basic_usage/litellm/base_message_param.py +0 -17
  669. mirascope-1.18.2/examples/learn/json_mode/basic_usage/litellm/messages.py +0 -13
  670. mirascope-1.18.2/examples/learn/json_mode/basic_usage/litellm/shorthand.py +0 -13
  671. mirascope-1.18.2/examples/learn/json_mode/basic_usage/litellm/string_template.py +0 -13
  672. mirascope-1.18.2/examples/learn/json_mode/basic_usage/mistral/base_message_param.py +0 -17
  673. mirascope-1.18.2/examples/learn/json_mode/basic_usage/mistral/messages.py +0 -13
  674. mirascope-1.18.2/examples/learn/json_mode/basic_usage/mistral/shorthand.py +0 -13
  675. mirascope-1.18.2/examples/learn/json_mode/basic_usage/mistral/string_template.py +0 -13
  676. mirascope-1.18.2/examples/learn/json_mode/basic_usage/openai/base_message_param.py +0 -17
  677. mirascope-1.18.2/examples/learn/json_mode/basic_usage/openai/messages.py +0 -13
  678. mirascope-1.18.2/examples/learn/json_mode/basic_usage/openai/shorthand.py +0 -13
  679. mirascope-1.18.2/examples/learn/json_mode/basic_usage/openai/string_template.py +0 -13
  680. mirascope-1.18.2/examples/learn/json_mode/error_handling/anthropic/base_message_param.py +0 -19
  681. mirascope-1.18.2/examples/learn/json_mode/error_handling/anthropic/messages.py +0 -15
  682. mirascope-1.18.2/examples/learn/json_mode/error_handling/anthropic/shorthand.py +0 -15
  683. mirascope-1.18.2/examples/learn/json_mode/error_handling/anthropic/string_template.py +0 -15
  684. mirascope-1.18.2/examples/learn/json_mode/error_handling/azure/base_message_param.py +0 -19
  685. mirascope-1.18.2/examples/learn/json_mode/error_handling/azure/messages.py +0 -15
  686. mirascope-1.18.2/examples/learn/json_mode/error_handling/azure/shorthand.py +0 -15
  687. mirascope-1.18.2/examples/learn/json_mode/error_handling/azure/string_template.py +0 -15
  688. mirascope-1.18.2/examples/learn/json_mode/error_handling/bedrock/base_message_param.py +0 -19
  689. mirascope-1.18.2/examples/learn/json_mode/error_handling/bedrock/messages.py +0 -15
  690. mirascope-1.18.2/examples/learn/json_mode/error_handling/bedrock/shorthand.py +0 -15
  691. mirascope-1.18.2/examples/learn/json_mode/error_handling/bedrock/string_template.py +0 -15
  692. mirascope-1.18.2/examples/learn/json_mode/error_handling/cohere/base_message_param.py +0 -19
  693. mirascope-1.18.2/examples/learn/json_mode/error_handling/cohere/messages.py +0 -15
  694. mirascope-1.18.2/examples/learn/json_mode/error_handling/cohere/shorthand.py +0 -15
  695. mirascope-1.18.2/examples/learn/json_mode/error_handling/cohere/string_template.py +0 -15
  696. mirascope-1.18.2/examples/learn/json_mode/error_handling/google/base_message_param.py +0 -19
  697. mirascope-1.18.2/examples/learn/json_mode/error_handling/google/messages.py +0 -15
  698. mirascope-1.18.2/examples/learn/json_mode/error_handling/google/shorthand.py +0 -15
  699. mirascope-1.18.2/examples/learn/json_mode/error_handling/google/string_template.py +0 -15
  700. mirascope-1.18.2/examples/learn/json_mode/error_handling/groq/base_message_param.py +0 -19
  701. mirascope-1.18.2/examples/learn/json_mode/error_handling/groq/messages.py +0 -15
  702. mirascope-1.18.2/examples/learn/json_mode/error_handling/groq/shorthand.py +0 -15
  703. mirascope-1.18.2/examples/learn/json_mode/error_handling/groq/string_template.py +0 -15
  704. mirascope-1.18.2/examples/learn/json_mode/error_handling/litellm/base_message_param.py +0 -19
  705. mirascope-1.18.2/examples/learn/json_mode/error_handling/litellm/messages.py +0 -15
  706. mirascope-1.18.2/examples/learn/json_mode/error_handling/litellm/shorthand.py +0 -15
  707. mirascope-1.18.2/examples/learn/json_mode/error_handling/litellm/string_template.py +0 -15
  708. mirascope-1.18.2/examples/learn/json_mode/error_handling/mistral/base_message_param.py +0 -19
  709. mirascope-1.18.2/examples/learn/json_mode/error_handling/mistral/messages.py +0 -15
  710. mirascope-1.18.2/examples/learn/json_mode/error_handling/mistral/shorthand.py +0 -15
  711. mirascope-1.18.2/examples/learn/json_mode/error_handling/mistral/string_template.py +0 -15
  712. mirascope-1.18.2/examples/learn/json_mode/error_handling/openai/base_message_param.py +0 -19
  713. mirascope-1.18.2/examples/learn/json_mode/error_handling/openai/messages.py +0 -15
  714. mirascope-1.18.2/examples/learn/json_mode/error_handling/openai/shorthand.py +0 -15
  715. mirascope-1.18.2/examples/learn/json_mode/error_handling/openai/string_template.py +0 -15
  716. mirascope-1.18.2/examples/learn/output_parsers/additional_examples/json_mode.py +0 -21
  717. mirascope-1.18.2/examples/learn/output_parsers/additional_examples/regex.py +0 -28
  718. mirascope-1.18.2/examples/learn/output_parsers/additional_examples/xml.py +0 -55
  719. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/anthropic/base_message_param.py +0 -20
  720. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/anthropic/messages.py +0 -15
  721. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/anthropic/shorthand.py +0 -15
  722. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/anthropic/string_template.py +0 -15
  723. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/azure/base_message_param.py +0 -20
  724. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/azure/messages.py +0 -15
  725. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/azure/shorthand.py +0 -15
  726. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/azure/string_template.py +0 -15
  727. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/bedrock/base_message_param.py +0 -22
  728. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/bedrock/messages.py +0 -17
  729. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/bedrock/shorthand.py +0 -17
  730. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/bedrock/string_template.py +0 -17
  731. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/cohere/base_message_param.py +0 -20
  732. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/cohere/messages.py +0 -15
  733. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/cohere/shorthand.py +0 -15
  734. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/cohere/string_template.py +0 -15
  735. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/google/base_message_param.py +0 -20
  736. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/google/messages.py +0 -15
  737. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/google/shorthand.py +0 -15
  738. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/google/string_template.py +0 -15
  739. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/groq/base_message_param.py +0 -20
  740. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/groq/messages.py +0 -15
  741. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/groq/shorthand.py +0 -15
  742. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/groq/string_template.py +0 -15
  743. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/litellm/base_message_param.py +0 -20
  744. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/litellm/messages.py +0 -15
  745. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/litellm/shorthand.py +0 -15
  746. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/litellm/string_template.py +0 -15
  747. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/mistral/base_message_param.py +0 -20
  748. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/mistral/messages.py +0 -15
  749. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/mistral/shorthand.py +0 -15
  750. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/mistral/string_template.py +0 -15
  751. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/openai/base_message_param.py +0 -20
  752. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/openai/messages.py +0 -15
  753. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/openai/shorthand.py +0 -15
  754. mirascope-1.18.2/examples/learn/output_parsers/basic_usage/openai/string_template.py +0 -15
  755. mirascope-1.18.2/examples/learn/prompts/chat_history/base_message_param.py +0 -23
  756. mirascope-1.18.2/examples/learn/prompts/chat_history/messages.py +0 -19
  757. mirascope-1.18.2/examples/learn/prompts/chat_history/shorthand.py +0 -19
  758. mirascope-1.18.2/examples/learn/prompts/chat_history/string_template.py +0 -24
  759. mirascope-1.18.2/examples/learn/prompts/computed_fields/base_message_param.py +0 -21
  760. mirascope-1.18.2/examples/learn/prompts/computed_fields/messages.py +0 -18
  761. mirascope-1.18.2/examples/learn/prompts/computed_fields/shorthand.py +0 -18
  762. mirascope-1.18.2/examples/learn/prompts/computed_fields/string_template.py +0 -13
  763. mirascope-1.18.2/examples/learn/prompts/format_specifiers/float_format/base_message_param.py +0 -14
  764. mirascope-1.18.2/examples/learn/prompts/format_specifiers/float_format/messages.py +0 -10
  765. mirascope-1.18.2/examples/learn/prompts/format_specifiers/float_format/shorthand.py +0 -10
  766. mirascope-1.18.2/examples/learn/prompts/format_specifiers/float_format/string_template.py +0 -9
  767. mirascope-1.18.2/examples/learn/prompts/format_specifiers/lists.py +0 -36
  768. mirascope-1.18.2/examples/learn/prompts/format_specifiers/parts.py +0 -33
  769. mirascope-1.18.2/examples/learn/prompts/format_specifiers/texts.py +0 -32
  770. mirascope-1.18.2/examples/learn/prompts/multi_line/base_message_param.py +0 -22
  771. mirascope-1.18.2/examples/learn/prompts/multi_line/messages.py +0 -19
  772. mirascope-1.18.2/examples/learn/prompts/multi_line/shorthand.py +0 -17
  773. mirascope-1.18.2/examples/learn/prompts/multi_line/string_template.py +0 -14
  774. mirascope-1.18.2/examples/learn/prompts/multi_modal/audio/pydub/base_message_param.py +0 -32
  775. mirascope-1.18.2/examples/learn/prompts/multi_modal/audio/pydub/messages.py +0 -24
  776. mirascope-1.18.2/examples/learn/prompts/multi_modal/audio/pydub/shorthand.py +0 -22
  777. mirascope-1.18.2/examples/learn/prompts/multi_modal/audio/pydub/string_template.py +0 -18
  778. mirascope-1.18.2/examples/learn/prompts/multi_modal/audio/wave/base_message_param.py +0 -32
  779. mirascope-1.18.2/examples/learn/prompts/multi_modal/audio/wave/messages.py +0 -24
  780. mirascope-1.18.2/examples/learn/prompts/multi_modal/audio/wave/shorthand.py +0 -22
  781. mirascope-1.18.2/examples/learn/prompts/multi_modal/audio/wave/string_template.py +0 -18
  782. mirascope-1.18.2/examples/learn/prompts/multi_modal/document/base_message_param.py +0 -32
  783. mirascope-1.18.2/examples/learn/prompts/multi_modal/document/string_template.py +0 -20
  784. mirascope-1.18.2/examples/learn/prompts/multi_modal/image/base_message_param.py +0 -33
  785. mirascope-1.18.2/examples/learn/prompts/multi_modal/image/messages.py +0 -23
  786. mirascope-1.18.2/examples/learn/prompts/multi_modal/image/shorthand.py +0 -21
  787. mirascope-1.18.2/examples/learn/prompts/multi_modal/image/string_template.py +0 -20
  788. mirascope-1.18.2/examples/learn/prompts/multiple_messages/base_message_param.py +0 -16
  789. mirascope-1.18.2/examples/learn/prompts/multiple_messages/messages.py +0 -16
  790. mirascope-1.18.2/examples/learn/prompts/multiple_messages/shorthand.py +0 -16
  791. mirascope-1.18.2/examples/learn/prompts/multiple_messages/string_template.py +0 -17
  792. mirascope-1.18.2/examples/learn/prompts/object_attribute_access/base_message_param.py +0 -22
  793. mirascope-1.18.2/examples/learn/prompts/object_attribute_access/messages.py +0 -19
  794. mirascope-1.18.2/examples/learn/prompts/object_attribute_access/shorthand.py +0 -17
  795. mirascope-1.18.2/examples/learn/prompts/object_attribute_access/string_template.py +0 -16
  796. mirascope-1.18.2/examples/learn/prompts/single_user_message/base_message_param.py +0 -10
  797. mirascope-1.18.2/examples/learn/prompts/single_user_message/messages.py +0 -10
  798. mirascope-1.18.2/examples/learn/prompts/single_user_message/shorthand.py +0 -10
  799. mirascope-1.18.2/examples/learn/prompts/single_user_message/string_template.py +0 -9
  800. mirascope-1.18.2/examples/learn/provider_specific_features/anthropic/caching/messages/base_message_param.py +0 -35
  801. mirascope-1.18.2/examples/learn/provider_specific_features/anthropic/caching/messages/messages.py +0 -31
  802. mirascope-1.18.2/examples/learn/provider_specific_features/anthropic/caching/messages/shorthand.py +0 -31
  803. mirascope-1.18.2/examples/learn/provider_specific_features/anthropic/caching/messages/string_template.py +0 -27
  804. mirascope-1.18.2/examples/learn/response_models/basic_usage/anthropic/base_message_param.py +0 -25
  805. mirascope-1.18.2/examples/learn/response_models/basic_usage/anthropic/messages.py +0 -25
  806. mirascope-1.18.2/examples/learn/response_models/basic_usage/anthropic/official_sdk.py +0 -43
  807. mirascope-1.18.2/examples/learn/response_models/basic_usage/anthropic/shorthand.py +0 -25
  808. mirascope-1.18.2/examples/learn/response_models/basic_usage/anthropic/string_template.py +0 -25
  809. mirascope-1.18.2/examples/learn/response_models/basic_usage/azure/base_message_param.py +0 -25
  810. mirascope-1.18.2/examples/learn/response_models/basic_usage/azure/messages.py +0 -25
  811. mirascope-1.18.2/examples/learn/response_models/basic_usage/azure/shorthand.py +0 -25
  812. mirascope-1.18.2/examples/learn/response_models/basic_usage/azure/string_template.py +0 -25
  813. mirascope-1.18.2/examples/learn/response_models/basic_usage/bedrock/base_message_param.py +0 -25
  814. mirascope-1.18.2/examples/learn/response_models/basic_usage/bedrock/messages.py +0 -25
  815. mirascope-1.18.2/examples/learn/response_models/basic_usage/bedrock/official_sdk.py +0 -53
  816. mirascope-1.18.2/examples/learn/response_models/basic_usage/bedrock/shorthand.py +0 -25
  817. mirascope-1.18.2/examples/learn/response_models/basic_usage/bedrock/string_template.py +0 -25
  818. mirascope-1.18.2/examples/learn/response_models/basic_usage/cohere/base_message_param.py +0 -25
  819. mirascope-1.18.2/examples/learn/response_models/basic_usage/cohere/messages.py +0 -25
  820. mirascope-1.18.2/examples/learn/response_models/basic_usage/cohere/shorthand.py +0 -25
  821. mirascope-1.18.2/examples/learn/response_models/basic_usage/cohere/string_template.py +0 -25
  822. mirascope-1.18.2/examples/learn/response_models/basic_usage/google/base_message_param.py +0 -25
  823. mirascope-1.18.2/examples/learn/response_models/basic_usage/google/messages.py +0 -25
  824. mirascope-1.18.2/examples/learn/response_models/basic_usage/google/official_sdk.py +0 -65
  825. mirascope-1.18.2/examples/learn/response_models/basic_usage/google/shorthand.py +0 -25
  826. mirascope-1.18.2/examples/learn/response_models/basic_usage/google/string_template.py +0 -25
  827. mirascope-1.18.2/examples/learn/response_models/basic_usage/groq/base_message_param.py +0 -25
  828. mirascope-1.18.2/examples/learn/response_models/basic_usage/groq/messages.py +0 -25
  829. mirascope-1.18.2/examples/learn/response_models/basic_usage/groq/shorthand.py +0 -25
  830. mirascope-1.18.2/examples/learn/response_models/basic_usage/groq/string_template.py +0 -25
  831. mirascope-1.18.2/examples/learn/response_models/basic_usage/litellm/base_message_param.py +0 -25
  832. mirascope-1.18.2/examples/learn/response_models/basic_usage/litellm/messages.py +0 -25
  833. mirascope-1.18.2/examples/learn/response_models/basic_usage/litellm/shorthand.py +0 -25
  834. mirascope-1.18.2/examples/learn/response_models/basic_usage/litellm/string_template.py +0 -25
  835. mirascope-1.18.2/examples/learn/response_models/basic_usage/mistral/base_message_param.py +0 -25
  836. mirascope-1.18.2/examples/learn/response_models/basic_usage/mistral/messages.py +0 -25
  837. mirascope-1.18.2/examples/learn/response_models/basic_usage/mistral/shorthand.py +0 -25
  838. mirascope-1.18.2/examples/learn/response_models/basic_usage/mistral/string_template.py +0 -25
  839. mirascope-1.18.2/examples/learn/response_models/basic_usage/openai/base_message_param.py +0 -25
  840. mirascope-1.18.2/examples/learn/response_models/basic_usage/openai/messages.py +0 -25
  841. mirascope-1.18.2/examples/learn/response_models/basic_usage/openai/shorthand.py +0 -25
  842. mirascope-1.18.2/examples/learn/response_models/basic_usage/openai/string_template.py +0 -25
  843. mirascope-1.18.2/examples/learn/response_models/builtin_types/anthropic/base_message_param.py +0 -16
  844. mirascope-1.18.2/examples/learn/response_models/builtin_types/anthropic/messages.py +0 -16
  845. mirascope-1.18.2/examples/learn/response_models/builtin_types/anthropic/shorthand.py +0 -16
  846. mirascope-1.18.2/examples/learn/response_models/builtin_types/anthropic/string_template.py +0 -16
  847. mirascope-1.18.2/examples/learn/response_models/builtin_types/azure/base_message_param.py +0 -16
  848. mirascope-1.18.2/examples/learn/response_models/builtin_types/azure/messages.py +0 -16
  849. mirascope-1.18.2/examples/learn/response_models/builtin_types/azure/shorthand.py +0 -16
  850. mirascope-1.18.2/examples/learn/response_models/builtin_types/azure/string_template.py +0 -16
  851. mirascope-1.18.2/examples/learn/response_models/builtin_types/bedrock/base_message_param.py +0 -16
  852. mirascope-1.18.2/examples/learn/response_models/builtin_types/bedrock/messages.py +0 -16
  853. mirascope-1.18.2/examples/learn/response_models/builtin_types/bedrock/shorthand.py +0 -16
  854. mirascope-1.18.2/examples/learn/response_models/builtin_types/bedrock/string_template.py +0 -16
  855. mirascope-1.18.2/examples/learn/response_models/builtin_types/cohere/base_message_param.py +0 -16
  856. mirascope-1.18.2/examples/learn/response_models/builtin_types/cohere/messages.py +0 -16
  857. mirascope-1.18.2/examples/learn/response_models/builtin_types/cohere/shorthand.py +0 -16
  858. mirascope-1.18.2/examples/learn/response_models/builtin_types/cohere/string_template.py +0 -16
  859. mirascope-1.18.2/examples/learn/response_models/builtin_types/google/base_message_param.py +0 -16
  860. mirascope-1.18.2/examples/learn/response_models/builtin_types/google/messages.py +0 -16
  861. mirascope-1.18.2/examples/learn/response_models/builtin_types/google/shorthand.py +0 -16
  862. mirascope-1.18.2/examples/learn/response_models/builtin_types/google/string_template.py +0 -16
  863. mirascope-1.18.2/examples/learn/response_models/builtin_types/groq/base_message_param.py +0 -16
  864. mirascope-1.18.2/examples/learn/response_models/builtin_types/groq/messages.py +0 -16
  865. mirascope-1.18.2/examples/learn/response_models/builtin_types/groq/shorthand.py +0 -16
  866. mirascope-1.18.2/examples/learn/response_models/builtin_types/groq/string_template.py +0 -16
  867. mirascope-1.18.2/examples/learn/response_models/builtin_types/litellm/base_message_param.py +0 -16
  868. mirascope-1.18.2/examples/learn/response_models/builtin_types/litellm/messages.py +0 -16
  869. mirascope-1.18.2/examples/learn/response_models/builtin_types/litellm/shorthand.py +0 -16
  870. mirascope-1.18.2/examples/learn/response_models/builtin_types/litellm/string_template.py +0 -16
  871. mirascope-1.18.2/examples/learn/response_models/builtin_types/mistral/base_message_param.py +0 -16
  872. mirascope-1.18.2/examples/learn/response_models/builtin_types/mistral/messages.py +0 -16
  873. mirascope-1.18.2/examples/learn/response_models/builtin_types/mistral/shorthand.py +0 -16
  874. mirascope-1.18.2/examples/learn/response_models/builtin_types/mistral/string_template.py +0 -16
  875. mirascope-1.18.2/examples/learn/response_models/builtin_types/openai/base_message_param.py +0 -16
  876. mirascope-1.18.2/examples/learn/response_models/builtin_types/openai/messages.py +0 -16
  877. mirascope-1.18.2/examples/learn/response_models/builtin_types/openai/shorthand.py +0 -16
  878. mirascope-1.18.2/examples/learn/response_models/builtin_types/openai/string_template.py +0 -16
  879. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/anthropic/base_message_param.py +0 -30
  880. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/anthropic/messages.py +0 -27
  881. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/anthropic/shorthand.py +0 -25
  882. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/anthropic/string_template.py +0 -25
  883. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/azure/base_message_param.py +0 -30
  884. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/azure/messages.py +0 -27
  885. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/azure/shorthand.py +0 -25
  886. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/azure/string_template.py +0 -25
  887. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/bedrock/base_message_param.py +0 -32
  888. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/bedrock/messages.py +0 -29
  889. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/bedrock/shorthand.py +0 -27
  890. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/bedrock/string_template.py +0 -27
  891. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/cohere/base_message_param.py +0 -30
  892. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/cohere/messages.py +0 -27
  893. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/cohere/shorthand.py +0 -25
  894. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/cohere/string_template.py +0 -25
  895. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/groq/base_message_param.py +0 -30
  896. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/groq/messages.py +0 -27
  897. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/groq/shorthand.py +0 -25
  898. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/groq/string_template.py +0 -25
  899. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/litellm/base_message_param.py +0 -30
  900. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/litellm/messages.py +0 -27
  901. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/litellm/shorthand.py +0 -25
  902. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/litellm/string_template.py +0 -25
  903. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/mistral/base_message_param.py +0 -30
  904. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/mistral/messages.py +0 -27
  905. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/mistral/shorthand.py +0 -25
  906. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/mistral/string_template.py +0 -25
  907. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/openai/base_message_param.py +0 -30
  908. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/openai/messages.py +0 -27
  909. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/openai/shorthand.py +0 -25
  910. mirascope-1.18.2/examples/learn/response_models/few_shot_examples/openai/string_template.py +0 -25
  911. mirascope-1.18.2/examples/learn/response_models/from_call_args/anthropic/base_message_param.py +0 -38
  912. mirascope-1.18.2/examples/learn/response_models/from_call_args/anthropic/messages.py +0 -34
  913. mirascope-1.18.2/examples/learn/response_models/from_call_args/anthropic/shorthand.py +0 -34
  914. mirascope-1.18.2/examples/learn/response_models/from_call_args/anthropic/string_template.py +0 -34
  915. mirascope-1.18.2/examples/learn/response_models/from_call_args/azure/base_message_param.py +0 -38
  916. mirascope-1.18.2/examples/learn/response_models/from_call_args/azure/messages.py +0 -34
  917. mirascope-1.18.2/examples/learn/response_models/from_call_args/azure/shorthand.py +0 -34
  918. mirascope-1.18.2/examples/learn/response_models/from_call_args/azure/string_template.py +0 -34
  919. mirascope-1.18.2/examples/learn/response_models/from_call_args/bedrock/base_message_param.py +0 -38
  920. mirascope-1.18.2/examples/learn/response_models/from_call_args/bedrock/messages.py +0 -34
  921. mirascope-1.18.2/examples/learn/response_models/from_call_args/bedrock/shorthand.py +0 -34
  922. mirascope-1.18.2/examples/learn/response_models/from_call_args/bedrock/string_template.py +0 -34
  923. mirascope-1.18.2/examples/learn/response_models/from_call_args/cohere/base_message_param.py +0 -38
  924. mirascope-1.18.2/examples/learn/response_models/from_call_args/cohere/messages.py +0 -34
  925. mirascope-1.18.2/examples/learn/response_models/from_call_args/cohere/shorthand.py +0 -34
  926. mirascope-1.18.2/examples/learn/response_models/from_call_args/cohere/string_template.py +0 -34
  927. mirascope-1.18.2/examples/learn/response_models/from_call_args/google/base_message_param.py +0 -38
  928. mirascope-1.18.2/examples/learn/response_models/from_call_args/google/messages.py +0 -34
  929. mirascope-1.18.2/examples/learn/response_models/from_call_args/google/shorthand.py +0 -34
  930. mirascope-1.18.2/examples/learn/response_models/from_call_args/google/string_template.py +0 -34
  931. mirascope-1.18.2/examples/learn/response_models/from_call_args/groq/base_message_param.py +0 -38
  932. mirascope-1.18.2/examples/learn/response_models/from_call_args/groq/messages.py +0 -34
  933. mirascope-1.18.2/examples/learn/response_models/from_call_args/groq/shorthand.py +0 -34
  934. mirascope-1.18.2/examples/learn/response_models/from_call_args/groq/string_template.py +0 -34
  935. mirascope-1.18.2/examples/learn/response_models/from_call_args/litellm/base_message_param.py +0 -38
  936. mirascope-1.18.2/examples/learn/response_models/from_call_args/litellm/messages.py +0 -34
  937. mirascope-1.18.2/examples/learn/response_models/from_call_args/litellm/shorthand.py +0 -34
  938. mirascope-1.18.2/examples/learn/response_models/from_call_args/litellm/string_template.py +0 -34
  939. mirascope-1.18.2/examples/learn/response_models/from_call_args/mistral/base_message_param.py +0 -38
  940. mirascope-1.18.2/examples/learn/response_models/from_call_args/mistral/messages.py +0 -34
  941. mirascope-1.18.2/examples/learn/response_models/from_call_args/mistral/shorthand.py +0 -34
  942. mirascope-1.18.2/examples/learn/response_models/from_call_args/mistral/string_template.py +0 -34
  943. mirascope-1.18.2/examples/learn/response_models/from_call_args/openai/base_message_param.py +0 -38
  944. mirascope-1.18.2/examples/learn/response_models/from_call_args/openai/messages.py +0 -34
  945. mirascope-1.18.2/examples/learn/response_models/from_call_args/openai/shorthand.py +0 -34
  946. mirascope-1.18.2/examples/learn/response_models/from_call_args/openai/string_template.py +0 -34
  947. mirascope-1.18.2/examples/learn/response_models/json_mode/anthropic/base_message_param.py +0 -19
  948. mirascope-1.18.2/examples/learn/response_models/json_mode/anthropic/messages.py +0 -19
  949. mirascope-1.18.2/examples/learn/response_models/json_mode/anthropic/shorthand.py +0 -19
  950. mirascope-1.18.2/examples/learn/response_models/json_mode/anthropic/string_template.py +0 -19
  951. mirascope-1.18.2/examples/learn/response_models/json_mode/azure/base_message_param.py +0 -19
  952. mirascope-1.18.2/examples/learn/response_models/json_mode/azure/messages.py +0 -19
  953. mirascope-1.18.2/examples/learn/response_models/json_mode/azure/shorthand.py +0 -19
  954. mirascope-1.18.2/examples/learn/response_models/json_mode/azure/string_template.py +0 -19
  955. mirascope-1.18.2/examples/learn/response_models/json_mode/bedrock/base_message_param.py +0 -21
  956. mirascope-1.18.2/examples/learn/response_models/json_mode/bedrock/messages.py +0 -21
  957. mirascope-1.18.2/examples/learn/response_models/json_mode/bedrock/shorthand.py +0 -21
  958. mirascope-1.18.2/examples/learn/response_models/json_mode/bedrock/string_template.py +0 -21
  959. mirascope-1.18.2/examples/learn/response_models/json_mode/cohere/base_message_param.py +0 -19
  960. mirascope-1.18.2/examples/learn/response_models/json_mode/cohere/messages.py +0 -19
  961. mirascope-1.18.2/examples/learn/response_models/json_mode/cohere/shorthand.py +0 -19
  962. mirascope-1.18.2/examples/learn/response_models/json_mode/cohere/string_template.py +0 -19
  963. mirascope-1.18.2/examples/learn/response_models/json_mode/google/base_message_param.py +0 -19
  964. mirascope-1.18.2/examples/learn/response_models/json_mode/google/messages.py +0 -19
  965. mirascope-1.18.2/examples/learn/response_models/json_mode/google/shorthand.py +0 -19
  966. mirascope-1.18.2/examples/learn/response_models/json_mode/google/string_template.py +0 -19
  967. mirascope-1.18.2/examples/learn/response_models/json_mode/groq/base_message_param.py +0 -19
  968. mirascope-1.18.2/examples/learn/response_models/json_mode/groq/messages.py +0 -19
  969. mirascope-1.18.2/examples/learn/response_models/json_mode/groq/shorthand.py +0 -19
  970. mirascope-1.18.2/examples/learn/response_models/json_mode/groq/string_template.py +0 -19
  971. mirascope-1.18.2/examples/learn/response_models/json_mode/litellm/base_message_param.py +0 -19
  972. mirascope-1.18.2/examples/learn/response_models/json_mode/litellm/messages.py +0 -19
  973. mirascope-1.18.2/examples/learn/response_models/json_mode/litellm/shorthand.py +0 -19
  974. mirascope-1.18.2/examples/learn/response_models/json_mode/litellm/string_template.py +0 -19
  975. mirascope-1.18.2/examples/learn/response_models/json_mode/mistral/base_message_param.py +0 -19
  976. mirascope-1.18.2/examples/learn/response_models/json_mode/mistral/messages.py +0 -19
  977. mirascope-1.18.2/examples/learn/response_models/json_mode/mistral/shorthand.py +0 -19
  978. mirascope-1.18.2/examples/learn/response_models/json_mode/mistral/string_template.py +0 -19
  979. mirascope-1.18.2/examples/learn/response_models/json_mode/openai/base_message_param.py +0 -19
  980. mirascope-1.18.2/examples/learn/response_models/json_mode/openai/messages.py +0 -19
  981. mirascope-1.18.2/examples/learn/response_models/json_mode/openai/shorthand.py +0 -19
  982. mirascope-1.18.2/examples/learn/response_models/json_mode/openai/string_template.py +0 -19
  983. mirascope-1.18.2/examples/learn/response_models/streaming/anthropic/base_message_param.py +0 -30
  984. mirascope-1.18.2/examples/learn/response_models/streaming/anthropic/messages.py +0 -30
  985. mirascope-1.18.2/examples/learn/response_models/streaming/anthropic/shorthand.py +0 -30
  986. mirascope-1.18.2/examples/learn/response_models/streaming/anthropic/string_template.py +0 -30
  987. mirascope-1.18.2/examples/learn/response_models/streaming/azure/base_message_param.py +0 -30
  988. mirascope-1.18.2/examples/learn/response_models/streaming/azure/messages.py +0 -30
  989. mirascope-1.18.2/examples/learn/response_models/streaming/azure/shorthand.py +0 -30
  990. mirascope-1.18.2/examples/learn/response_models/streaming/azure/string_template.py +0 -30
  991. mirascope-1.18.2/examples/learn/response_models/streaming/bedrock/base_message_param.py +0 -32
  992. mirascope-1.18.2/examples/learn/response_models/streaming/bedrock/messages.py +0 -32
  993. mirascope-1.18.2/examples/learn/response_models/streaming/bedrock/shorthand.py +0 -32
  994. mirascope-1.18.2/examples/learn/response_models/streaming/bedrock/string_template.py +0 -32
  995. mirascope-1.18.2/examples/learn/response_models/streaming/cohere/base_message_param.py +0 -30
  996. mirascope-1.18.2/examples/learn/response_models/streaming/cohere/messages.py +0 -30
  997. mirascope-1.18.2/examples/learn/response_models/streaming/cohere/shorthand.py +0 -30
  998. mirascope-1.18.2/examples/learn/response_models/streaming/cohere/string_template.py +0 -30
  999. mirascope-1.18.2/examples/learn/response_models/streaming/google/base_message_param.py +0 -30
  1000. mirascope-1.18.2/examples/learn/response_models/streaming/google/messages.py +0 -30
  1001. mirascope-1.18.2/examples/learn/response_models/streaming/google/shorthand.py +0 -30
  1002. mirascope-1.18.2/examples/learn/response_models/streaming/google/string_template.py +0 -30
  1003. mirascope-1.18.2/examples/learn/response_models/streaming/groq/base_message_param.py +0 -30
  1004. mirascope-1.18.2/examples/learn/response_models/streaming/groq/messages.py +0 -30
  1005. mirascope-1.18.2/examples/learn/response_models/streaming/groq/shorthand.py +0 -30
  1006. mirascope-1.18.2/examples/learn/response_models/streaming/groq/string_template.py +0 -30
  1007. mirascope-1.18.2/examples/learn/response_models/streaming/litellm/base_message_param.py +0 -30
  1008. mirascope-1.18.2/examples/learn/response_models/streaming/litellm/messages.py +0 -30
  1009. mirascope-1.18.2/examples/learn/response_models/streaming/litellm/shorthand.py +0 -30
  1010. mirascope-1.18.2/examples/learn/response_models/streaming/litellm/string_template.py +0 -30
  1011. mirascope-1.18.2/examples/learn/response_models/streaming/mistral/base_message_param.py +0 -30
  1012. mirascope-1.18.2/examples/learn/response_models/streaming/mistral/messages.py +0 -30
  1013. mirascope-1.18.2/examples/learn/response_models/streaming/mistral/shorthand.py +0 -30
  1014. mirascope-1.18.2/examples/learn/response_models/streaming/mistral/string_template.py +0 -30
  1015. mirascope-1.18.2/examples/learn/response_models/streaming/openai/base_message_param.py +0 -30
  1016. mirascope-1.18.2/examples/learn/response_models/streaming/openai/messages.py +0 -30
  1017. mirascope-1.18.2/examples/learn/response_models/streaming/openai/shorthand.py +0 -30
  1018. mirascope-1.18.2/examples/learn/response_models/streaming/openai/string_template.py +0 -30
  1019. mirascope-1.18.2/examples/learn/response_models/validation/anthropic/base_message_param.py +0 -39
  1020. mirascope-1.18.2/examples/learn/response_models/validation/anthropic/messages.py +0 -39
  1021. mirascope-1.18.2/examples/learn/response_models/validation/anthropic/shorthand.py +0 -39
  1022. mirascope-1.18.2/examples/learn/response_models/validation/anthropic/string_template.py +0 -39
  1023. mirascope-1.18.2/examples/learn/response_models/validation/azure/base_message_param.py +0 -39
  1024. mirascope-1.18.2/examples/learn/response_models/validation/azure/messages.py +0 -39
  1025. mirascope-1.18.2/examples/learn/response_models/validation/azure/shorthand.py +0 -39
  1026. mirascope-1.18.2/examples/learn/response_models/validation/azure/string_template.py +0 -39
  1027. mirascope-1.18.2/examples/learn/response_models/validation/bedrock/base_message_param.py +0 -39
  1028. mirascope-1.18.2/examples/learn/response_models/validation/bedrock/messages.py +0 -39
  1029. mirascope-1.18.2/examples/learn/response_models/validation/bedrock/shorthand.py +0 -39
  1030. mirascope-1.18.2/examples/learn/response_models/validation/bedrock/string_template.py +0 -39
  1031. mirascope-1.18.2/examples/learn/response_models/validation/cohere/base_message_param.py +0 -39
  1032. mirascope-1.18.2/examples/learn/response_models/validation/cohere/messages.py +0 -39
  1033. mirascope-1.18.2/examples/learn/response_models/validation/cohere/shorthand.py +0 -39
  1034. mirascope-1.18.2/examples/learn/response_models/validation/cohere/string_template.py +0 -39
  1035. mirascope-1.18.2/examples/learn/response_models/validation/google/base_message_param.py +0 -39
  1036. mirascope-1.18.2/examples/learn/response_models/validation/google/messages.py +0 -39
  1037. mirascope-1.18.2/examples/learn/response_models/validation/google/shorthand.py +0 -39
  1038. mirascope-1.18.2/examples/learn/response_models/validation/google/string_template.py +0 -39
  1039. mirascope-1.18.2/examples/learn/response_models/validation/groq/base_message_param.py +0 -39
  1040. mirascope-1.18.2/examples/learn/response_models/validation/groq/messages.py +0 -39
  1041. mirascope-1.18.2/examples/learn/response_models/validation/groq/shorthand.py +0 -39
  1042. mirascope-1.18.2/examples/learn/response_models/validation/groq/string_template.py +0 -39
  1043. mirascope-1.18.2/examples/learn/response_models/validation/litellm/base_message_param.py +0 -39
  1044. mirascope-1.18.2/examples/learn/response_models/validation/litellm/messages.py +0 -39
  1045. mirascope-1.18.2/examples/learn/response_models/validation/litellm/shorthand.py +0 -39
  1046. mirascope-1.18.2/examples/learn/response_models/validation/litellm/string_template.py +0 -39
  1047. mirascope-1.18.2/examples/learn/response_models/validation/mistral/base_message_param.py +0 -39
  1048. mirascope-1.18.2/examples/learn/response_models/validation/mistral/messages.py +0 -39
  1049. mirascope-1.18.2/examples/learn/response_models/validation/mistral/shorthand.py +0 -39
  1050. mirascope-1.18.2/examples/learn/response_models/validation/mistral/string_template.py +0 -39
  1051. mirascope-1.18.2/examples/learn/response_models/validation/openai/base_message_param.py +0 -39
  1052. mirascope-1.18.2/examples/learn/response_models/validation/openai/messages.py +0 -39
  1053. mirascope-1.18.2/examples/learn/response_models/validation/openai/shorthand.py +0 -39
  1054. mirascope-1.18.2/examples/learn/response_models/validation/openai/string_template.py +0 -39
  1055. mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/pydub/messages.py +0 -1
  1056. mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/shorthand.py +0 -1
  1057. mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/wave/base_message_param.py +0 -1
  1058. mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/wave/messages.py +0 -1
  1059. mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/wave/shorthand.py +0 -1
  1060. mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/wave/string_template.py +0 -1
  1061. mirascope-1.18.2/examples/learn/tools/basic_usage/anthropic/base_tool/base_message_param.py +0 -30
  1062. mirascope-1.18.2/examples/learn/tools/basic_usage/anthropic/base_tool/messages.py +0 -30
  1063. mirascope-1.18.2/examples/learn/tools/basic_usage/anthropic/base_tool/shorthand.py +0 -30
  1064. mirascope-1.18.2/examples/learn/tools/basic_usage/anthropic/base_tool/string_template.py +0 -30
  1065. mirascope-1.18.2/examples/learn/tools/basic_usage/anthropic/function/base_message_param.py +0 -29
  1066. mirascope-1.18.2/examples/learn/tools/basic_usage/anthropic/function/messages.py +0 -29
  1067. mirascope-1.18.2/examples/learn/tools/basic_usage/anthropic/function/shorthand.py +0 -29
  1068. mirascope-1.18.2/examples/learn/tools/basic_usage/anthropic/function/string_template.py +0 -29
  1069. mirascope-1.18.2/examples/learn/tools/basic_usage/anthropic/official_sdk.py +0 -43
  1070. mirascope-1.18.2/examples/learn/tools/basic_usage/azure/base_tool/base_message_param.py +0 -30
  1071. mirascope-1.18.2/examples/learn/tools/basic_usage/azure/base_tool/messages.py +0 -30
  1072. mirascope-1.18.2/examples/learn/tools/basic_usage/azure/base_tool/shorthand.py +0 -30
  1073. mirascope-1.18.2/examples/learn/tools/basic_usage/azure/base_tool/string_template.py +0 -30
  1074. mirascope-1.18.2/examples/learn/tools/basic_usage/azure/function/base_message_param.py +0 -29
  1075. mirascope-1.18.2/examples/learn/tools/basic_usage/azure/function/messages.py +0 -29
  1076. mirascope-1.18.2/examples/learn/tools/basic_usage/azure/function/shorthand.py +0 -29
  1077. mirascope-1.18.2/examples/learn/tools/basic_usage/azure/function/string_template.py +0 -29
  1078. mirascope-1.18.2/examples/learn/tools/basic_usage/bedrock/base_tool/base_message_param.py +0 -30
  1079. mirascope-1.18.2/examples/learn/tools/basic_usage/bedrock/base_tool/messages.py +0 -30
  1080. mirascope-1.18.2/examples/learn/tools/basic_usage/bedrock/base_tool/shorthand.py +0 -30
  1081. mirascope-1.18.2/examples/learn/tools/basic_usage/bedrock/base_tool/string_template.py +0 -30
  1082. mirascope-1.18.2/examples/learn/tools/basic_usage/bedrock/function/base_message_param.py +0 -29
  1083. mirascope-1.18.2/examples/learn/tools/basic_usage/bedrock/function/messages.py +0 -29
  1084. mirascope-1.18.2/examples/learn/tools/basic_usage/bedrock/function/shorthand.py +0 -29
  1085. mirascope-1.18.2/examples/learn/tools/basic_usage/bedrock/function/string_template.py +0 -29
  1086. mirascope-1.18.2/examples/learn/tools/basic_usage/bedrock/official_sdk.py +0 -63
  1087. mirascope-1.18.2/examples/learn/tools/basic_usage/cohere/base_tool/base_message_param.py +0 -30
  1088. mirascope-1.18.2/examples/learn/tools/basic_usage/cohere/base_tool/messages.py +0 -30
  1089. mirascope-1.18.2/examples/learn/tools/basic_usage/cohere/base_tool/shorthand.py +0 -30
  1090. mirascope-1.18.2/examples/learn/tools/basic_usage/cohere/base_tool/string_template.py +0 -30
  1091. mirascope-1.18.2/examples/learn/tools/basic_usage/cohere/function/base_message_param.py +0 -29
  1092. mirascope-1.18.2/examples/learn/tools/basic_usage/cohere/function/messages.py +0 -29
  1093. mirascope-1.18.2/examples/learn/tools/basic_usage/cohere/function/shorthand.py +0 -29
  1094. mirascope-1.18.2/examples/learn/tools/basic_usage/cohere/function/string_template.py +0 -29
  1095. mirascope-1.18.2/examples/learn/tools/basic_usage/google/base_tool/base_message_param.py +0 -30
  1096. mirascope-1.18.2/examples/learn/tools/basic_usage/google/base_tool/messages.py +0 -30
  1097. mirascope-1.18.2/examples/learn/tools/basic_usage/google/base_tool/shorthand.py +0 -30
  1098. mirascope-1.18.2/examples/learn/tools/basic_usage/google/base_tool/string_template.py +0 -30
  1099. mirascope-1.18.2/examples/learn/tools/basic_usage/google/function/base_message_param.py +0 -29
  1100. mirascope-1.18.2/examples/learn/tools/basic_usage/google/function/messages.py +0 -29
  1101. mirascope-1.18.2/examples/learn/tools/basic_usage/google/function/shorthand.py +0 -29
  1102. mirascope-1.18.2/examples/learn/tools/basic_usage/google/function/string_template.py +0 -29
  1103. mirascope-1.18.2/examples/learn/tools/basic_usage/google/official_sdk.py +0 -51
  1104. mirascope-1.18.2/examples/learn/tools/basic_usage/groq/base_tool/base_message_param.py +0 -30
  1105. mirascope-1.18.2/examples/learn/tools/basic_usage/groq/base_tool/messages.py +0 -30
  1106. mirascope-1.18.2/examples/learn/tools/basic_usage/groq/base_tool/shorthand.py +0 -30
  1107. mirascope-1.18.2/examples/learn/tools/basic_usage/groq/base_tool/string_template.py +0 -30
  1108. mirascope-1.18.2/examples/learn/tools/basic_usage/groq/function/base_message_param.py +0 -29
  1109. mirascope-1.18.2/examples/learn/tools/basic_usage/groq/function/messages.py +0 -29
  1110. mirascope-1.18.2/examples/learn/tools/basic_usage/groq/function/shorthand.py +0 -29
  1111. mirascope-1.18.2/examples/learn/tools/basic_usage/groq/function/string_template.py +0 -29
  1112. mirascope-1.18.2/examples/learn/tools/basic_usage/litellm/base_tool/base_message_param.py +0 -30
  1113. mirascope-1.18.2/examples/learn/tools/basic_usage/litellm/base_tool/messages.py +0 -30
  1114. mirascope-1.18.2/examples/learn/tools/basic_usage/litellm/base_tool/shorthand.py +0 -30
  1115. mirascope-1.18.2/examples/learn/tools/basic_usage/litellm/base_tool/string_template.py +0 -30
  1116. mirascope-1.18.2/examples/learn/tools/basic_usage/litellm/function/base_message_param.py +0 -29
  1117. mirascope-1.18.2/examples/learn/tools/basic_usage/litellm/function/messages.py +0 -29
  1118. mirascope-1.18.2/examples/learn/tools/basic_usage/litellm/function/shorthand.py +0 -29
  1119. mirascope-1.18.2/examples/learn/tools/basic_usage/litellm/function/string_template.py +0 -29
  1120. mirascope-1.18.2/examples/learn/tools/basic_usage/mistral/base_tool/base_message_param.py +0 -30
  1121. mirascope-1.18.2/examples/learn/tools/basic_usage/mistral/base_tool/messages.py +0 -30
  1122. mirascope-1.18.2/examples/learn/tools/basic_usage/mistral/base_tool/shorthand.py +0 -30
  1123. mirascope-1.18.2/examples/learn/tools/basic_usage/mistral/base_tool/string_template.py +0 -30
  1124. mirascope-1.18.2/examples/learn/tools/basic_usage/mistral/function/base_message_param.py +0 -29
  1125. mirascope-1.18.2/examples/learn/tools/basic_usage/mistral/function/messages.py +0 -29
  1126. mirascope-1.18.2/examples/learn/tools/basic_usage/mistral/function/shorthand.py +0 -29
  1127. mirascope-1.18.2/examples/learn/tools/basic_usage/mistral/function/string_template.py +0 -29
  1128. mirascope-1.18.2/examples/learn/tools/basic_usage/openai/base_tool/base_message_param.py +0 -30
  1129. mirascope-1.18.2/examples/learn/tools/basic_usage/openai/base_tool/messages.py +0 -30
  1130. mirascope-1.18.2/examples/learn/tools/basic_usage/openai/base_tool/shorthand.py +0 -30
  1131. mirascope-1.18.2/examples/learn/tools/basic_usage/openai/base_tool/string_template.py +0 -30
  1132. mirascope-1.18.2/examples/learn/tools/basic_usage/openai/function/base_message_param.py +0 -29
  1133. mirascope-1.18.2/examples/learn/tools/basic_usage/openai/function/messages.py +0 -29
  1134. mirascope-1.18.2/examples/learn/tools/basic_usage/openai/function/shorthand.py +0 -29
  1135. mirascope-1.18.2/examples/learn/tools/basic_usage/openai/function/string_template.py +0 -29
  1136. mirascope-1.18.2/examples/learn/tools/few_shot_examples/anthropic/base_tool/base_message_param.py +0 -36
  1137. mirascope-1.18.2/examples/learn/tools/few_shot_examples/anthropic/base_tool/messages.py +0 -36
  1138. mirascope-1.18.2/examples/learn/tools/few_shot_examples/anthropic/base_tool/shorthand.py +0 -36
  1139. mirascope-1.18.2/examples/learn/tools/few_shot_examples/anthropic/base_tool/string_template.py +0 -36
  1140. mirascope-1.18.2/examples/learn/tools/few_shot_examples/anthropic/function/base_message_param.py +0 -43
  1141. mirascope-1.18.2/examples/learn/tools/few_shot_examples/anthropic/function/messages.py +0 -43
  1142. mirascope-1.18.2/examples/learn/tools/few_shot_examples/anthropic/function/shorthand.py +0 -43
  1143. mirascope-1.18.2/examples/learn/tools/few_shot_examples/anthropic/function/string_template.py +0 -43
  1144. mirascope-1.18.2/examples/learn/tools/few_shot_examples/azure/base_tool/base_message_param.py +0 -36
  1145. mirascope-1.18.2/examples/learn/tools/few_shot_examples/azure/base_tool/messages.py +0 -36
  1146. mirascope-1.18.2/examples/learn/tools/few_shot_examples/azure/base_tool/shorthand.py +0 -36
  1147. mirascope-1.18.2/examples/learn/tools/few_shot_examples/azure/base_tool/string_template.py +0 -36
  1148. mirascope-1.18.2/examples/learn/tools/few_shot_examples/azure/function/base_message_param.py +0 -43
  1149. mirascope-1.18.2/examples/learn/tools/few_shot_examples/azure/function/messages.py +0 -43
  1150. mirascope-1.18.2/examples/learn/tools/few_shot_examples/azure/function/shorthand.py +0 -43
  1151. mirascope-1.18.2/examples/learn/tools/few_shot_examples/azure/function/string_template.py +0 -43
  1152. mirascope-1.18.2/examples/learn/tools/few_shot_examples/bedrock/base_tool/base_message_param.py +0 -36
  1153. mirascope-1.18.2/examples/learn/tools/few_shot_examples/bedrock/base_tool/messages.py +0 -36
  1154. mirascope-1.18.2/examples/learn/tools/few_shot_examples/bedrock/base_tool/shorthand.py +0 -36
  1155. mirascope-1.18.2/examples/learn/tools/few_shot_examples/bedrock/base_tool/string_template.py +0 -36
  1156. mirascope-1.18.2/examples/learn/tools/few_shot_examples/bedrock/function/base_message_param.py +0 -43
  1157. mirascope-1.18.2/examples/learn/tools/few_shot_examples/bedrock/function/messages.py +0 -43
  1158. mirascope-1.18.2/examples/learn/tools/few_shot_examples/bedrock/function/shorthand.py +0 -43
  1159. mirascope-1.18.2/examples/learn/tools/few_shot_examples/bedrock/function/string_template.py +0 -43
  1160. mirascope-1.18.2/examples/learn/tools/few_shot_examples/cohere/base_tool/base_message_param.py +0 -36
  1161. mirascope-1.18.2/examples/learn/tools/few_shot_examples/cohere/base_tool/messages.py +0 -36
  1162. mirascope-1.18.2/examples/learn/tools/few_shot_examples/cohere/base_tool/shorthand.py +0 -36
  1163. mirascope-1.18.2/examples/learn/tools/few_shot_examples/cohere/base_tool/string_template.py +0 -36
  1164. mirascope-1.18.2/examples/learn/tools/few_shot_examples/cohere/function/base_message_param.py +0 -43
  1165. mirascope-1.18.2/examples/learn/tools/few_shot_examples/cohere/function/messages.py +0 -43
  1166. mirascope-1.18.2/examples/learn/tools/few_shot_examples/cohere/function/shorthand.py +0 -43
  1167. mirascope-1.18.2/examples/learn/tools/few_shot_examples/cohere/function/string_template.py +0 -43
  1168. mirascope-1.18.2/examples/learn/tools/few_shot_examples/google/base_tool/base_message_param.py +0 -36
  1169. mirascope-1.18.2/examples/learn/tools/few_shot_examples/google/base_tool/messages.py +0 -36
  1170. mirascope-1.18.2/examples/learn/tools/few_shot_examples/google/base_tool/shorthand.py +0 -36
  1171. mirascope-1.18.2/examples/learn/tools/few_shot_examples/google/base_tool/string_template.py +0 -36
  1172. mirascope-1.18.2/examples/learn/tools/few_shot_examples/google/function/base_message_param.py +0 -30
  1173. mirascope-1.18.2/examples/learn/tools/few_shot_examples/google/function/messages.py +0 -30
  1174. mirascope-1.18.2/examples/learn/tools/few_shot_examples/google/function/shorthand.py +0 -30
  1175. mirascope-1.18.2/examples/learn/tools/few_shot_examples/google/function/string_template.py +0 -30
  1176. mirascope-1.18.2/examples/learn/tools/few_shot_examples/groq/base_tool/base_message_param.py +0 -36
  1177. mirascope-1.18.2/examples/learn/tools/few_shot_examples/groq/base_tool/messages.py +0 -36
  1178. mirascope-1.18.2/examples/learn/tools/few_shot_examples/groq/base_tool/shorthand.py +0 -36
  1179. mirascope-1.18.2/examples/learn/tools/few_shot_examples/groq/base_tool/string_template.py +0 -36
  1180. mirascope-1.18.2/examples/learn/tools/few_shot_examples/groq/function/base_message_param.py +0 -43
  1181. mirascope-1.18.2/examples/learn/tools/few_shot_examples/groq/function/messages.py +0 -43
  1182. mirascope-1.18.2/examples/learn/tools/few_shot_examples/groq/function/shorthand.py +0 -43
  1183. mirascope-1.18.2/examples/learn/tools/few_shot_examples/groq/function/string_template.py +0 -43
  1184. mirascope-1.18.2/examples/learn/tools/few_shot_examples/litellm/base_tool/base_message_param.py +0 -36
  1185. mirascope-1.18.2/examples/learn/tools/few_shot_examples/litellm/base_tool/messages.py +0 -36
  1186. mirascope-1.18.2/examples/learn/tools/few_shot_examples/litellm/base_tool/shorthand.py +0 -36
  1187. mirascope-1.18.2/examples/learn/tools/few_shot_examples/litellm/base_tool/string_template.py +0 -36
  1188. mirascope-1.18.2/examples/learn/tools/few_shot_examples/litellm/function/base_message_param.py +0 -43
  1189. mirascope-1.18.2/examples/learn/tools/few_shot_examples/litellm/function/messages.py +0 -43
  1190. mirascope-1.18.2/examples/learn/tools/few_shot_examples/litellm/function/shorthand.py +0 -43
  1191. mirascope-1.18.2/examples/learn/tools/few_shot_examples/litellm/function/string_template.py +0 -44
  1192. mirascope-1.18.2/examples/learn/tools/few_shot_examples/mistral/base_tool/base_message_param.py +0 -36
  1193. mirascope-1.18.2/examples/learn/tools/few_shot_examples/mistral/base_tool/messages.py +0 -36
  1194. mirascope-1.18.2/examples/learn/tools/few_shot_examples/mistral/base_tool/shorthand.py +0 -36
  1195. mirascope-1.18.2/examples/learn/tools/few_shot_examples/mistral/base_tool/string_template.py +0 -36
  1196. mirascope-1.18.2/examples/learn/tools/few_shot_examples/mistral/function/base_message_param.py +0 -43
  1197. mirascope-1.18.2/examples/learn/tools/few_shot_examples/mistral/function/messages.py +0 -43
  1198. mirascope-1.18.2/examples/learn/tools/few_shot_examples/mistral/function/shorthand.py +0 -43
  1199. mirascope-1.18.2/examples/learn/tools/few_shot_examples/mistral/function/string_template.py +0 -43
  1200. mirascope-1.18.2/examples/learn/tools/few_shot_examples/openai/base_tool/base_message_param.py +0 -36
  1201. mirascope-1.18.2/examples/learn/tools/few_shot_examples/openai/base_tool/messages.py +0 -36
  1202. mirascope-1.18.2/examples/learn/tools/few_shot_examples/openai/base_tool/shorthand.py +0 -36
  1203. mirascope-1.18.2/examples/learn/tools/few_shot_examples/openai/base_tool/string_template.py +0 -36
  1204. mirascope-1.18.2/examples/learn/tools/few_shot_examples/openai/function/base_message_param.py +0 -43
  1205. mirascope-1.18.2/examples/learn/tools/few_shot_examples/openai/function/messages.py +0 -43
  1206. mirascope-1.18.2/examples/learn/tools/few_shot_examples/openai/function/shorthand.py +0 -43
  1207. mirascope-1.18.2/examples/learn/tools/few_shot_examples/openai/function/string_template.py +0 -43
  1208. mirascope-1.18.2/examples/learn/tools/parallel/anthropic/base_tool/base_message_param.py +0 -29
  1209. mirascope-1.18.2/examples/learn/tools/parallel/anthropic/base_tool/messages.py +0 -29
  1210. mirascope-1.18.2/examples/learn/tools/parallel/anthropic/base_tool/shorthand.py +0 -29
  1211. mirascope-1.18.2/examples/learn/tools/parallel/anthropic/base_tool/string_template.py +0 -29
  1212. mirascope-1.18.2/examples/learn/tools/parallel/anthropic/function/base_message_param.py +0 -28
  1213. mirascope-1.18.2/examples/learn/tools/parallel/anthropic/function/messages.py +0 -28
  1214. mirascope-1.18.2/examples/learn/tools/parallel/anthropic/function/shorthand.py +0 -28
  1215. mirascope-1.18.2/examples/learn/tools/parallel/anthropic/function/string_template.py +0 -28
  1216. mirascope-1.18.2/examples/learn/tools/parallel/azure/base_tool/base_message_param.py +0 -29
  1217. mirascope-1.18.2/examples/learn/tools/parallel/azure/base_tool/messages.py +0 -29
  1218. mirascope-1.18.2/examples/learn/tools/parallel/azure/base_tool/shorthand.py +0 -29
  1219. mirascope-1.18.2/examples/learn/tools/parallel/azure/base_tool/string_template.py +0 -29
  1220. mirascope-1.18.2/examples/learn/tools/parallel/azure/function/base_message_param.py +0 -28
  1221. mirascope-1.18.2/examples/learn/tools/parallel/azure/function/messages.py +0 -28
  1222. mirascope-1.18.2/examples/learn/tools/parallel/azure/function/shorthand.py +0 -28
  1223. mirascope-1.18.2/examples/learn/tools/parallel/azure/function/string_template.py +0 -28
  1224. mirascope-1.18.2/examples/learn/tools/parallel/bedrock/base_tool/base_message_param.py +0 -29
  1225. mirascope-1.18.2/examples/learn/tools/parallel/bedrock/base_tool/messages.py +0 -29
  1226. mirascope-1.18.2/examples/learn/tools/parallel/bedrock/base_tool/shorthand.py +0 -29
  1227. mirascope-1.18.2/examples/learn/tools/parallel/bedrock/base_tool/string_template.py +0 -29
  1228. mirascope-1.18.2/examples/learn/tools/parallel/bedrock/function/base_message_param.py +0 -28
  1229. mirascope-1.18.2/examples/learn/tools/parallel/bedrock/function/messages.py +0 -28
  1230. mirascope-1.18.2/examples/learn/tools/parallel/bedrock/function/shorthand.py +0 -28
  1231. mirascope-1.18.2/examples/learn/tools/parallel/bedrock/function/string_template.py +0 -28
  1232. mirascope-1.18.2/examples/learn/tools/parallel/cohere/base_tool/base_message_param.py +0 -29
  1233. mirascope-1.18.2/examples/learn/tools/parallel/cohere/base_tool/messages.py +0 -29
  1234. mirascope-1.18.2/examples/learn/tools/parallel/cohere/base_tool/shorthand.py +0 -29
  1235. mirascope-1.18.2/examples/learn/tools/parallel/cohere/base_tool/string_template.py +0 -29
  1236. mirascope-1.18.2/examples/learn/tools/parallel/cohere/function/base_message_param.py +0 -28
  1237. mirascope-1.18.2/examples/learn/tools/parallel/cohere/function/messages.py +0 -28
  1238. mirascope-1.18.2/examples/learn/tools/parallel/cohere/function/shorthand.py +0 -28
  1239. mirascope-1.18.2/examples/learn/tools/parallel/cohere/function/string_template.py +0 -28
  1240. mirascope-1.18.2/examples/learn/tools/parallel/google/base_tool/base_message_param.py +0 -29
  1241. mirascope-1.18.2/examples/learn/tools/parallel/google/base_tool/messages.py +0 -29
  1242. mirascope-1.18.2/examples/learn/tools/parallel/google/base_tool/shorthand.py +0 -29
  1243. mirascope-1.18.2/examples/learn/tools/parallel/google/base_tool/string_template.py +0 -29
  1244. mirascope-1.18.2/examples/learn/tools/parallel/google/function/base_message_param.py +0 -28
  1245. mirascope-1.18.2/examples/learn/tools/parallel/google/function/messages.py +0 -28
  1246. mirascope-1.18.2/examples/learn/tools/parallel/google/function/shorthand.py +0 -28
  1247. mirascope-1.18.2/examples/learn/tools/parallel/google/function/string_template.py +0 -28
  1248. mirascope-1.18.2/examples/learn/tools/parallel/groq/base_tool/base_message_param.py +0 -29
  1249. mirascope-1.18.2/examples/learn/tools/parallel/groq/base_tool/messages.py +0 -29
  1250. mirascope-1.18.2/examples/learn/tools/parallel/groq/base_tool/shorthand.py +0 -29
  1251. mirascope-1.18.2/examples/learn/tools/parallel/groq/base_tool/string_template.py +0 -29
  1252. mirascope-1.18.2/examples/learn/tools/parallel/groq/function/base_message_param.py +0 -28
  1253. mirascope-1.18.2/examples/learn/tools/parallel/groq/function/messages.py +0 -28
  1254. mirascope-1.18.2/examples/learn/tools/parallel/groq/function/shorthand.py +0 -28
  1255. mirascope-1.18.2/examples/learn/tools/parallel/groq/function/string_template.py +0 -28
  1256. mirascope-1.18.2/examples/learn/tools/parallel/litellm/base_tool/base_message_param.py +0 -29
  1257. mirascope-1.18.2/examples/learn/tools/parallel/litellm/base_tool/messages.py +0 -29
  1258. mirascope-1.18.2/examples/learn/tools/parallel/litellm/base_tool/shorthand.py +0 -29
  1259. mirascope-1.18.2/examples/learn/tools/parallel/litellm/base_tool/string_template.py +0 -29
  1260. mirascope-1.18.2/examples/learn/tools/parallel/litellm/function/base_message_param.py +0 -28
  1261. mirascope-1.18.2/examples/learn/tools/parallel/litellm/function/messages.py +0 -28
  1262. mirascope-1.18.2/examples/learn/tools/parallel/litellm/function/shorthand.py +0 -28
  1263. mirascope-1.18.2/examples/learn/tools/parallel/litellm/function/string_template.py +0 -28
  1264. mirascope-1.18.2/examples/learn/tools/parallel/mistral/base_tool/base_message_param.py +0 -29
  1265. mirascope-1.18.2/examples/learn/tools/parallel/mistral/base_tool/messages.py +0 -29
  1266. mirascope-1.18.2/examples/learn/tools/parallel/mistral/base_tool/shorthand.py +0 -29
  1267. mirascope-1.18.2/examples/learn/tools/parallel/mistral/base_tool/string_template.py +0 -29
  1268. mirascope-1.18.2/examples/learn/tools/parallel/mistral/function/base_message_param.py +0 -28
  1269. mirascope-1.18.2/examples/learn/tools/parallel/mistral/function/messages.py +0 -28
  1270. mirascope-1.18.2/examples/learn/tools/parallel/mistral/function/shorthand.py +0 -28
  1271. mirascope-1.18.2/examples/learn/tools/parallel/mistral/function/string_template.py +0 -28
  1272. mirascope-1.18.2/examples/learn/tools/parallel/openai/base_tool/base_message_param.py +0 -29
  1273. mirascope-1.18.2/examples/learn/tools/parallel/openai/base_tool/messages.py +0 -29
  1274. mirascope-1.18.2/examples/learn/tools/parallel/openai/base_tool/shorthand.py +0 -29
  1275. mirascope-1.18.2/examples/learn/tools/parallel/openai/base_tool/string_template.py +0 -29
  1276. mirascope-1.18.2/examples/learn/tools/parallel/openai/function/base_message_param.py +0 -28
  1277. mirascope-1.18.2/examples/learn/tools/parallel/openai/function/messages.py +0 -28
  1278. mirascope-1.18.2/examples/learn/tools/parallel/openai/function/shorthand.py +0 -28
  1279. mirascope-1.18.2/examples/learn/tools/parallel/openai/function/string_template.py +0 -28
  1280. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/anthropic/base_tool/base_message_param.py +0 -36
  1281. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/anthropic/base_tool/messages.py +0 -36
  1282. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/anthropic/base_tool/shorthand.py +0 -36
  1283. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/anthropic/base_tool/string_template.py +0 -36
  1284. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/anthropic/function/base_message_param.py +0 -35
  1285. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/anthropic/function/messages.py +0 -35
  1286. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/anthropic/function/shorthand.py +0 -35
  1287. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/anthropic/function/string_template.py +0 -35
  1288. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/azure/base_tool/base_message_param.py +0 -36
  1289. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/azure/base_tool/messages.py +0 -36
  1290. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/azure/base_tool/shorthand.py +0 -36
  1291. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/azure/base_tool/string_template.py +0 -36
  1292. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/azure/function/base_message_param.py +0 -35
  1293. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/azure/function/messages.py +0 -35
  1294. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/azure/function/shorthand.py +0 -35
  1295. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/azure/function/string_template.py +0 -35
  1296. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/bedrock/base_tool/base_message_param.py +0 -36
  1297. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/bedrock/base_tool/messages.py +0 -36
  1298. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/bedrock/base_tool/shorthand.py +0 -36
  1299. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/bedrock/base_tool/string_template.py +0 -36
  1300. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/bedrock/function/base_message_param.py +0 -35
  1301. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/bedrock/function/messages.py +0 -35
  1302. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/bedrock/function/shorthand.py +0 -35
  1303. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/bedrock/function/string_template.py +0 -35
  1304. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/cohere/base_tool/base_message_param.py +0 -36
  1305. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/cohere/base_tool/messages.py +0 -36
  1306. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/cohere/base_tool/shorthand.py +0 -36
  1307. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/cohere/base_tool/string_template.py +0 -36
  1308. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/cohere/function/base_message_param.py +0 -35
  1309. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/cohere/function/messages.py +0 -35
  1310. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/cohere/function/shorthand.py +0 -35
  1311. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/cohere/function/string_template.py +0 -35
  1312. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/google/base_tool/base_message_param.py +0 -36
  1313. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/google/base_tool/messages.py +0 -36
  1314. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/google/base_tool/shorthand.py +0 -36
  1315. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/google/base_tool/string_template.py +0 -36
  1316. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/google/function/base_message_param.py +0 -35
  1317. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/google/function/messages.py +0 -35
  1318. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/google/function/shorthand.py +0 -35
  1319. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/google/function/string_template.py +0 -35
  1320. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/groq/base_tool/base_message_param.py +0 -36
  1321. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/groq/base_tool/messages.py +0 -36
  1322. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/groq/base_tool/shorthand.py +0 -36
  1323. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/groq/base_tool/string_template.py +0 -36
  1324. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/groq/function/base_message_param.py +0 -35
  1325. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/groq/function/messages.py +0 -35
  1326. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/groq/function/shorthand.py +0 -35
  1327. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/groq/function/string_template.py +0 -35
  1328. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/litellm/base_tool/base_message_param.py +0 -36
  1329. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/litellm/base_tool/messages.py +0 -36
  1330. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/litellm/base_tool/shorthand.py +0 -36
  1331. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/litellm/base_tool/string_template.py +0 -36
  1332. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/litellm/function/base_message_param.py +0 -35
  1333. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/litellm/function/messages.py +0 -35
  1334. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/litellm/function/shorthand.py +0 -35
  1335. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/litellm/function/string_template.py +0 -35
  1336. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/mistral/base_tool/base_message_param.py +0 -36
  1337. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/mistral/base_tool/messages.py +0 -36
  1338. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/mistral/base_tool/shorthand.py +0 -36
  1339. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/mistral/base_tool/string_template.py +0 -36
  1340. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/mistral/function/base_message_param.py +0 -35
  1341. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/mistral/function/messages.py +0 -35
  1342. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/mistral/function/shorthand.py +0 -35
  1343. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/mistral/function/string_template.py +0 -35
  1344. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/openai/base_tool/base_message_param.py +0 -36
  1345. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/openai/base_tool/messages.py +0 -36
  1346. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/openai/base_tool/shorthand.py +0 -36
  1347. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/openai/base_tool/string_template.py +0 -36
  1348. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/openai/function/base_message_param.py +0 -35
  1349. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/openai/function/messages.py +0 -35
  1350. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/openai/function/shorthand.py +0 -35
  1351. mirascope-1.18.2/examples/learn/tools/partial_tool_streams/openai/function/string_template.py +0 -35
  1352. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/anthropic/base_message_param.py +0 -24
  1353. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/anthropic/messages.py +0 -23
  1354. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/anthropic/shorthand.py +0 -23
  1355. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/anthropic/string_template.py +0 -19
  1356. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/azure/base_message_param.py +0 -24
  1357. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/azure/messages.py +0 -23
  1358. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/azure/shorthand.py +0 -23
  1359. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/azure/string_template.py +0 -19
  1360. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/bedrock/base_message_param.py +0 -24
  1361. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/bedrock/messages.py +0 -23
  1362. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/bedrock/shorthand.py +0 -23
  1363. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/bedrock/string_template.py +0 -19
  1364. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/cohere/base_message_param.py +0 -24
  1365. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/cohere/messages.py +0 -23
  1366. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/cohere/shorthand.py +0 -23
  1367. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/cohere/string_template.py +0 -19
  1368. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/google/base_message_param.py +0 -24
  1369. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/google/messages.py +0 -23
  1370. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/google/shorthand.py +0 -23
  1371. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/google/string_template.py +0 -19
  1372. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/groq/base_message_param.py +0 -24
  1373. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/groq/messages.py +0 -23
  1374. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/groq/shorthand.py +0 -23
  1375. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/groq/string_template.py +0 -19
  1376. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/litellm/base_message_param.py +0 -24
  1377. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/litellm/messages.py +0 -23
  1378. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/litellm/shorthand.py +0 -23
  1379. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/litellm/string_template.py +0 -19
  1380. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/mistral/base_message_param.py +0 -24
  1381. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/mistral/messages.py +0 -23
  1382. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/mistral/shorthand.py +0 -23
  1383. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/mistral/string_template.py +0 -19
  1384. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/openai/base_message_param.py +0 -24
  1385. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/openai/messages.py +0 -23
  1386. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/openai/shorthand.py +0 -23
  1387. mirascope-1.18.2/examples/learn/tools/pre_made_toolkit/openai/string_template.py +0 -19
  1388. mirascope-1.18.2/examples/learn/tools/pre_made_tools/anthropic/basic_usage/base_message_param.py +0 -16
  1389. mirascope-1.18.2/examples/learn/tools/pre_made_tools/anthropic/basic_usage/messages.py +0 -12
  1390. mirascope-1.18.2/examples/learn/tools/pre_made_tools/anthropic/basic_usage/shorthand.py +0 -12
  1391. mirascope-1.18.2/examples/learn/tools/pre_made_tools/anthropic/basic_usage/string_template.py +0 -12
  1392. mirascope-1.18.2/examples/learn/tools/pre_made_tools/anthropic/custom_config/base_message_param.py +0 -19
  1393. mirascope-1.18.2/examples/learn/tools/pre_made_tools/anthropic/custom_config/messages.py +0 -15
  1394. mirascope-1.18.2/examples/learn/tools/pre_made_tools/anthropic/custom_config/shorthand.py +0 -16
  1395. mirascope-1.18.2/examples/learn/tools/pre_made_tools/anthropic/custom_config/string_template.py +0 -16
  1396. mirascope-1.18.2/examples/learn/tools/pre_made_tools/azure/basic_usage/base_message_param.py +0 -16
  1397. mirascope-1.18.2/examples/learn/tools/pre_made_tools/azure/basic_usage/messages.py +0 -12
  1398. mirascope-1.18.2/examples/learn/tools/pre_made_tools/azure/basic_usage/shorthand.py +0 -12
  1399. mirascope-1.18.2/examples/learn/tools/pre_made_tools/azure/basic_usage/string_template.py +0 -12
  1400. mirascope-1.18.2/examples/learn/tools/pre_made_tools/azure/custom_config/base_message_param.py +0 -19
  1401. mirascope-1.18.2/examples/learn/tools/pre_made_tools/azure/custom_config/messages.py +0 -15
  1402. mirascope-1.18.2/examples/learn/tools/pre_made_tools/azure/custom_config/shorthand.py +0 -16
  1403. mirascope-1.18.2/examples/learn/tools/pre_made_tools/azure/custom_config/string_template.py +0 -16
  1404. mirascope-1.18.2/examples/learn/tools/pre_made_tools/bedrock/basic_usage/base_message_param.py +0 -16
  1405. mirascope-1.18.2/examples/learn/tools/pre_made_tools/bedrock/basic_usage/messages.py +0 -12
  1406. mirascope-1.18.2/examples/learn/tools/pre_made_tools/bedrock/basic_usage/shorthand.py +0 -12
  1407. mirascope-1.18.2/examples/learn/tools/pre_made_tools/bedrock/basic_usage/string_template.py +0 -12
  1408. mirascope-1.18.2/examples/learn/tools/pre_made_tools/bedrock/custom_config/base_message_param.py +0 -19
  1409. mirascope-1.18.2/examples/learn/tools/pre_made_tools/bedrock/custom_config/messages.py +0 -15
  1410. mirascope-1.18.2/examples/learn/tools/pre_made_tools/bedrock/custom_config/shorthand.py +0 -16
  1411. mirascope-1.18.2/examples/learn/tools/pre_made_tools/bedrock/custom_config/string_template.py +0 -16
  1412. mirascope-1.18.2/examples/learn/tools/pre_made_tools/cohere/basic_usage/base_message_param.py +0 -16
  1413. mirascope-1.18.2/examples/learn/tools/pre_made_tools/cohere/basic_usage/messages.py +0 -12
  1414. mirascope-1.18.2/examples/learn/tools/pre_made_tools/cohere/basic_usage/shorthand.py +0 -12
  1415. mirascope-1.18.2/examples/learn/tools/pre_made_tools/cohere/basic_usage/string_template.py +0 -12
  1416. mirascope-1.18.2/examples/learn/tools/pre_made_tools/cohere/custom_config/base_message_param.py +0 -19
  1417. mirascope-1.18.2/examples/learn/tools/pre_made_tools/cohere/custom_config/messages.py +0 -15
  1418. mirascope-1.18.2/examples/learn/tools/pre_made_tools/cohere/custom_config/shorthand.py +0 -16
  1419. mirascope-1.18.2/examples/learn/tools/pre_made_tools/cohere/custom_config/string_template.py +0 -16
  1420. mirascope-1.18.2/examples/learn/tools/pre_made_tools/google/basic_usage/base_message_param.py +0 -16
  1421. mirascope-1.18.2/examples/learn/tools/pre_made_tools/google/basic_usage/messages.py +0 -12
  1422. mirascope-1.18.2/examples/learn/tools/pre_made_tools/google/basic_usage/shorthand.py +0 -12
  1423. mirascope-1.18.2/examples/learn/tools/pre_made_tools/google/basic_usage/string_template.py +0 -12
  1424. mirascope-1.18.2/examples/learn/tools/pre_made_tools/google/custom_config/base_message_param.py +0 -19
  1425. mirascope-1.18.2/examples/learn/tools/pre_made_tools/google/custom_config/messages.py +0 -15
  1426. mirascope-1.18.2/examples/learn/tools/pre_made_tools/google/custom_config/shorthand.py +0 -16
  1427. mirascope-1.18.2/examples/learn/tools/pre_made_tools/google/custom_config/string_template.py +0 -16
  1428. mirascope-1.18.2/examples/learn/tools/pre_made_tools/groq/basic_usage/base_message_param.py +0 -16
  1429. mirascope-1.18.2/examples/learn/tools/pre_made_tools/groq/basic_usage/messages.py +0 -12
  1430. mirascope-1.18.2/examples/learn/tools/pre_made_tools/groq/basic_usage/shorthand.py +0 -12
  1431. mirascope-1.18.2/examples/learn/tools/pre_made_tools/groq/basic_usage/string_template.py +0 -12
  1432. mirascope-1.18.2/examples/learn/tools/pre_made_tools/groq/custom_config/base_message_param.py +0 -19
  1433. mirascope-1.18.2/examples/learn/tools/pre_made_tools/groq/custom_config/messages.py +0 -15
  1434. mirascope-1.18.2/examples/learn/tools/pre_made_tools/groq/custom_config/shorthand.py +0 -16
  1435. mirascope-1.18.2/examples/learn/tools/pre_made_tools/groq/custom_config/string_template.py +0 -16
  1436. mirascope-1.18.2/examples/learn/tools/pre_made_tools/litellm/basic_usage/base_message_param.py +0 -16
  1437. mirascope-1.18.2/examples/learn/tools/pre_made_tools/litellm/basic_usage/messages.py +0 -12
  1438. mirascope-1.18.2/examples/learn/tools/pre_made_tools/litellm/basic_usage/shorthand.py +0 -12
  1439. mirascope-1.18.2/examples/learn/tools/pre_made_tools/litellm/basic_usage/string_template.py +0 -12
  1440. mirascope-1.18.2/examples/learn/tools/pre_made_tools/litellm/custom_config/base_message_param.py +0 -19
  1441. mirascope-1.18.2/examples/learn/tools/pre_made_tools/litellm/custom_config/messages.py +0 -15
  1442. mirascope-1.18.2/examples/learn/tools/pre_made_tools/litellm/custom_config/shorthand.py +0 -16
  1443. mirascope-1.18.2/examples/learn/tools/pre_made_tools/litellm/custom_config/string_template.py +0 -16
  1444. mirascope-1.18.2/examples/learn/tools/pre_made_tools/mistral/basic_usage/base_message_param.py +0 -16
  1445. mirascope-1.18.2/examples/learn/tools/pre_made_tools/mistral/basic_usage/messages.py +0 -12
  1446. mirascope-1.18.2/examples/learn/tools/pre_made_tools/mistral/basic_usage/shorthand.py +0 -12
  1447. mirascope-1.18.2/examples/learn/tools/pre_made_tools/mistral/basic_usage/string_template.py +0 -12
  1448. mirascope-1.18.2/examples/learn/tools/pre_made_tools/mistral/custom_config/base_message_param.py +0 -19
  1449. mirascope-1.18.2/examples/learn/tools/pre_made_tools/mistral/custom_config/messages.py +0 -15
  1450. mirascope-1.18.2/examples/learn/tools/pre_made_tools/mistral/custom_config/shorthand.py +0 -16
  1451. mirascope-1.18.2/examples/learn/tools/pre_made_tools/mistral/custom_config/string_template.py +0 -16
  1452. mirascope-1.18.2/examples/learn/tools/pre_made_tools/openai/basic_usage/base_message_param.py +0 -16
  1453. mirascope-1.18.2/examples/learn/tools/pre_made_tools/openai/basic_usage/messages.py +0 -12
  1454. mirascope-1.18.2/examples/learn/tools/pre_made_tools/openai/basic_usage/shorthand.py +0 -12
  1455. mirascope-1.18.2/examples/learn/tools/pre_made_tools/openai/basic_usage/string_template.py +0 -12
  1456. mirascope-1.18.2/examples/learn/tools/pre_made_tools/openai/custom_config/base_message_param.py +0 -19
  1457. mirascope-1.18.2/examples/learn/tools/pre_made_tools/openai/custom_config/messages.py +0 -15
  1458. mirascope-1.18.2/examples/learn/tools/pre_made_tools/openai/custom_config/shorthand.py +0 -16
  1459. mirascope-1.18.2/examples/learn/tools/pre_made_tools/openai/custom_config/string_template.py +0 -16
  1460. mirascope-1.18.2/examples/learn/tools/streams/anthropic/base_tool/base_message_param.py +0 -29
  1461. mirascope-1.18.2/examples/learn/tools/streams/anthropic/base_tool/messages.py +0 -29
  1462. mirascope-1.18.2/examples/learn/tools/streams/anthropic/base_tool/shorthand.py +0 -29
  1463. mirascope-1.18.2/examples/learn/tools/streams/anthropic/base_tool/string_template.py +0 -29
  1464. mirascope-1.18.2/examples/learn/tools/streams/anthropic/function/base_message_param.py +0 -28
  1465. mirascope-1.18.2/examples/learn/tools/streams/anthropic/function/messages.py +0 -28
  1466. mirascope-1.18.2/examples/learn/tools/streams/anthropic/function/shorthand.py +0 -28
  1467. mirascope-1.18.2/examples/learn/tools/streams/anthropic/function/string_template.py +0 -28
  1468. mirascope-1.18.2/examples/learn/tools/streams/azure/base_tool/base_message_param.py +0 -29
  1469. mirascope-1.18.2/examples/learn/tools/streams/azure/base_tool/messages.py +0 -29
  1470. mirascope-1.18.2/examples/learn/tools/streams/azure/base_tool/shorthand.py +0 -29
  1471. mirascope-1.18.2/examples/learn/tools/streams/azure/base_tool/string_template.py +0 -29
  1472. mirascope-1.18.2/examples/learn/tools/streams/azure/function/base_message_param.py +0 -28
  1473. mirascope-1.18.2/examples/learn/tools/streams/azure/function/messages.py +0 -28
  1474. mirascope-1.18.2/examples/learn/tools/streams/azure/function/shorthand.py +0 -28
  1475. mirascope-1.18.2/examples/learn/tools/streams/azure/function/string_template.py +0 -28
  1476. mirascope-1.18.2/examples/learn/tools/streams/bedrock/base_tool/base_message_param.py +0 -31
  1477. mirascope-1.18.2/examples/learn/tools/streams/bedrock/base_tool/messages.py +0 -31
  1478. mirascope-1.18.2/examples/learn/tools/streams/bedrock/base_tool/shorthand.py +0 -31
  1479. mirascope-1.18.2/examples/learn/tools/streams/bedrock/base_tool/string_template.py +0 -31
  1480. mirascope-1.18.2/examples/learn/tools/streams/bedrock/function/base_message_param.py +0 -30
  1481. mirascope-1.18.2/examples/learn/tools/streams/bedrock/function/messages.py +0 -30
  1482. mirascope-1.18.2/examples/learn/tools/streams/bedrock/function/shorthand.py +0 -30
  1483. mirascope-1.18.2/examples/learn/tools/streams/bedrock/function/string_template.py +0 -30
  1484. mirascope-1.18.2/examples/learn/tools/streams/cohere/base_tool/base_message_param.py +0 -29
  1485. mirascope-1.18.2/examples/learn/tools/streams/cohere/base_tool/messages.py +0 -29
  1486. mirascope-1.18.2/examples/learn/tools/streams/cohere/base_tool/shorthand.py +0 -29
  1487. mirascope-1.18.2/examples/learn/tools/streams/cohere/base_tool/string_template.py +0 -29
  1488. mirascope-1.18.2/examples/learn/tools/streams/cohere/function/base_message_param.py +0 -28
  1489. mirascope-1.18.2/examples/learn/tools/streams/cohere/function/messages.py +0 -28
  1490. mirascope-1.18.2/examples/learn/tools/streams/cohere/function/shorthand.py +0 -28
  1491. mirascope-1.18.2/examples/learn/tools/streams/cohere/function/string_template.py +0 -28
  1492. mirascope-1.18.2/examples/learn/tools/streams/google/base_tool/base_message_param.py +0 -29
  1493. mirascope-1.18.2/examples/learn/tools/streams/google/base_tool/messages.py +0 -29
  1494. mirascope-1.18.2/examples/learn/tools/streams/google/base_tool/shorthand.py +0 -29
  1495. mirascope-1.18.2/examples/learn/tools/streams/google/base_tool/string_template.py +0 -29
  1496. mirascope-1.18.2/examples/learn/tools/streams/google/function/base_message_param.py +0 -28
  1497. mirascope-1.18.2/examples/learn/tools/streams/google/function/messages.py +0 -28
  1498. mirascope-1.18.2/examples/learn/tools/streams/google/function/shorthand.py +0 -28
  1499. mirascope-1.18.2/examples/learn/tools/streams/google/function/string_template.py +0 -28
  1500. mirascope-1.18.2/examples/learn/tools/streams/groq/base_tool/base_message_param.py +0 -29
  1501. mirascope-1.18.2/examples/learn/tools/streams/groq/base_tool/messages.py +0 -29
  1502. mirascope-1.18.2/examples/learn/tools/streams/groq/base_tool/shorthand.py +0 -29
  1503. mirascope-1.18.2/examples/learn/tools/streams/groq/base_tool/string_template.py +0 -29
  1504. mirascope-1.18.2/examples/learn/tools/streams/groq/function/base_message_param.py +0 -28
  1505. mirascope-1.18.2/examples/learn/tools/streams/groq/function/messages.py +0 -28
  1506. mirascope-1.18.2/examples/learn/tools/streams/groq/function/shorthand.py +0 -28
  1507. mirascope-1.18.2/examples/learn/tools/streams/groq/function/string_template.py +0 -28
  1508. mirascope-1.18.2/examples/learn/tools/streams/litellm/base_tool/base_message_param.py +0 -29
  1509. mirascope-1.18.2/examples/learn/tools/streams/litellm/base_tool/messages.py +0 -29
  1510. mirascope-1.18.2/examples/learn/tools/streams/litellm/base_tool/shorthand.py +0 -29
  1511. mirascope-1.18.2/examples/learn/tools/streams/litellm/base_tool/string_template.py +0 -29
  1512. mirascope-1.18.2/examples/learn/tools/streams/litellm/function/base_message_param.py +0 -28
  1513. mirascope-1.18.2/examples/learn/tools/streams/litellm/function/messages.py +0 -28
  1514. mirascope-1.18.2/examples/learn/tools/streams/litellm/function/shorthand.py +0 -28
  1515. mirascope-1.18.2/examples/learn/tools/streams/litellm/function/string_template.py +0 -28
  1516. mirascope-1.18.2/examples/learn/tools/streams/mistral/base_tool/base_message_param.py +0 -29
  1517. mirascope-1.18.2/examples/learn/tools/streams/mistral/base_tool/messages.py +0 -29
  1518. mirascope-1.18.2/examples/learn/tools/streams/mistral/base_tool/shorthand.py +0 -29
  1519. mirascope-1.18.2/examples/learn/tools/streams/mistral/base_tool/string_template.py +0 -29
  1520. mirascope-1.18.2/examples/learn/tools/streams/mistral/function/base_message_param.py +0 -28
  1521. mirascope-1.18.2/examples/learn/tools/streams/mistral/function/messages.py +0 -28
  1522. mirascope-1.18.2/examples/learn/tools/streams/mistral/function/shorthand.py +0 -28
  1523. mirascope-1.18.2/examples/learn/tools/streams/mistral/function/string_template.py +0 -28
  1524. mirascope-1.18.2/examples/learn/tools/streams/openai/base_tool/base_message_param.py +0 -29
  1525. mirascope-1.18.2/examples/learn/tools/streams/openai/base_tool/messages.py +0 -29
  1526. mirascope-1.18.2/examples/learn/tools/streams/openai/base_tool/shorthand.py +0 -29
  1527. mirascope-1.18.2/examples/learn/tools/streams/openai/base_tool/string_template.py +0 -29
  1528. mirascope-1.18.2/examples/learn/tools/streams/openai/function/base_message_param.py +0 -28
  1529. mirascope-1.18.2/examples/learn/tools/streams/openai/function/messages.py +0 -28
  1530. mirascope-1.18.2/examples/learn/tools/streams/openai/function/shorthand.py +0 -28
  1531. mirascope-1.18.2/examples/learn/tools/streams/openai/function/string_template.py +0 -28
  1532. mirascope-1.18.2/examples/learn/tools/tool_message_params/anthropic/base_tool/base_message_param.py +0 -35
  1533. mirascope-1.18.2/examples/learn/tools/tool_message_params/anthropic/base_tool/messages.py +0 -35
  1534. mirascope-1.18.2/examples/learn/tools/tool_message_params/anthropic/base_tool/shorthand.py +0 -35
  1535. mirascope-1.18.2/examples/learn/tools/tool_message_params/anthropic/base_tool/string_template.py +0 -38
  1536. mirascope-1.18.2/examples/learn/tools/tool_message_params/anthropic/function/base_message_param.py +0 -32
  1537. mirascope-1.18.2/examples/learn/tools/tool_message_params/anthropic/function/messages.py +0 -32
  1538. mirascope-1.18.2/examples/learn/tools/tool_message_params/anthropic/function/shorthand.py +0 -32
  1539. mirascope-1.18.2/examples/learn/tools/tool_message_params/anthropic/function/string_template.py +0 -35
  1540. mirascope-1.18.2/examples/learn/tools/tool_message_params/azure/base_tool/base_message_param.py +0 -35
  1541. mirascope-1.18.2/examples/learn/tools/tool_message_params/azure/base_tool/messages.py +0 -33
  1542. mirascope-1.18.2/examples/learn/tools/tool_message_params/azure/base_tool/shorthand.py +0 -33
  1543. mirascope-1.18.2/examples/learn/tools/tool_message_params/azure/base_tool/string_template.py +0 -38
  1544. mirascope-1.18.2/examples/learn/tools/tool_message_params/azure/function/base_message_param.py +0 -32
  1545. mirascope-1.18.2/examples/learn/tools/tool_message_params/azure/function/messages.py +0 -30
  1546. mirascope-1.18.2/examples/learn/tools/tool_message_params/azure/function/shorthand.py +0 -30
  1547. mirascope-1.18.2/examples/learn/tools/tool_message_params/azure/function/string_template.py +0 -35
  1548. mirascope-1.18.2/examples/learn/tools/tool_message_params/bedrock/base_tool/base_message_param.py +0 -35
  1549. mirascope-1.18.2/examples/learn/tools/tool_message_params/bedrock/base_tool/messages.py +0 -35
  1550. mirascope-1.18.2/examples/learn/tools/tool_message_params/bedrock/base_tool/shorthand.py +0 -35
  1551. mirascope-1.18.2/examples/learn/tools/tool_message_params/bedrock/base_tool/string_template.py +0 -38
  1552. mirascope-1.18.2/examples/learn/tools/tool_message_params/bedrock/function/base_message_param.py +0 -32
  1553. mirascope-1.18.2/examples/learn/tools/tool_message_params/bedrock/function/messages.py +0 -32
  1554. mirascope-1.18.2/examples/learn/tools/tool_message_params/bedrock/function/shorthand.py +0 -32
  1555. mirascope-1.18.2/examples/learn/tools/tool_message_params/bedrock/function/string_template.py +0 -35
  1556. mirascope-1.18.2/examples/learn/tools/tool_message_params/cohere/base_tool/base_message_param.py +0 -35
  1557. mirascope-1.18.2/examples/learn/tools/tool_message_params/cohere/base_tool/messages.py +0 -35
  1558. mirascope-1.18.2/examples/learn/tools/tool_message_params/cohere/base_tool/shorthand.py +0 -35
  1559. mirascope-1.18.2/examples/learn/tools/tool_message_params/cohere/base_tool/string_template.py +0 -38
  1560. mirascope-1.18.2/examples/learn/tools/tool_message_params/cohere/function/base_message_param.py +0 -32
  1561. mirascope-1.18.2/examples/learn/tools/tool_message_params/cohere/function/messages.py +0 -32
  1562. mirascope-1.18.2/examples/learn/tools/tool_message_params/cohere/function/shorthand.py +0 -32
  1563. mirascope-1.18.2/examples/learn/tools/tool_message_params/cohere/function/string_template.py +0 -35
  1564. mirascope-1.18.2/examples/learn/tools/tool_message_params/google/base_tool/base_message_param.py +0 -35
  1565. mirascope-1.18.2/examples/learn/tools/tool_message_params/google/base_tool/messages.py +0 -35
  1566. mirascope-1.18.2/examples/learn/tools/tool_message_params/google/base_tool/shorthand.py +0 -35
  1567. mirascope-1.18.2/examples/learn/tools/tool_message_params/google/base_tool/string_template.py +0 -38
  1568. mirascope-1.18.2/examples/learn/tools/tool_message_params/google/function/base_message_param.py +0 -32
  1569. mirascope-1.18.2/examples/learn/tools/tool_message_params/google/function/messages.py +0 -32
  1570. mirascope-1.18.2/examples/learn/tools/tool_message_params/google/function/shorthand.py +0 -32
  1571. mirascope-1.18.2/examples/learn/tools/tool_message_params/google/function/string_template.py +0 -35
  1572. mirascope-1.18.2/examples/learn/tools/tool_message_params/groq/base_tool/base_message_param.py +0 -35
  1573. mirascope-1.18.2/examples/learn/tools/tool_message_params/groq/base_tool/messages.py +0 -33
  1574. mirascope-1.18.2/examples/learn/tools/tool_message_params/groq/base_tool/shorthand.py +0 -33
  1575. mirascope-1.18.2/examples/learn/tools/tool_message_params/groq/base_tool/string_template.py +0 -38
  1576. mirascope-1.18.2/examples/learn/tools/tool_message_params/groq/function/base_message_param.py +0 -32
  1577. mirascope-1.18.2/examples/learn/tools/tool_message_params/groq/function/messages.py +0 -30
  1578. mirascope-1.18.2/examples/learn/tools/tool_message_params/groq/function/shorthand.py +0 -30
  1579. mirascope-1.18.2/examples/learn/tools/tool_message_params/groq/function/string_template.py +0 -35
  1580. mirascope-1.18.2/examples/learn/tools/tool_message_params/litellm/base_tool/base_message_param.py +0 -35
  1581. mirascope-1.18.2/examples/learn/tools/tool_message_params/litellm/base_tool/messages.py +0 -35
  1582. mirascope-1.18.2/examples/learn/tools/tool_message_params/litellm/base_tool/shorthand.py +0 -35
  1583. mirascope-1.18.2/examples/learn/tools/tool_message_params/litellm/base_tool/string_template.py +0 -38
  1584. mirascope-1.18.2/examples/learn/tools/tool_message_params/litellm/function/base_message_param.py +0 -32
  1585. mirascope-1.18.2/examples/learn/tools/tool_message_params/litellm/function/messages.py +0 -32
  1586. mirascope-1.18.2/examples/learn/tools/tool_message_params/litellm/function/shorthand.py +0 -32
  1587. mirascope-1.18.2/examples/learn/tools/tool_message_params/litellm/function/string_template.py +0 -35
  1588. mirascope-1.18.2/examples/learn/tools/tool_message_params/mistral/base_tool/base_message_param.py +0 -35
  1589. mirascope-1.18.2/examples/learn/tools/tool_message_params/mistral/base_tool/messages.py +0 -35
  1590. mirascope-1.18.2/examples/learn/tools/tool_message_params/mistral/base_tool/shorthand.py +0 -35
  1591. mirascope-1.18.2/examples/learn/tools/tool_message_params/mistral/base_tool/string_template.py +0 -38
  1592. mirascope-1.18.2/examples/learn/tools/tool_message_params/mistral/function/base_message_param.py +0 -32
  1593. mirascope-1.18.2/examples/learn/tools/tool_message_params/mistral/function/messages.py +0 -32
  1594. mirascope-1.18.2/examples/learn/tools/tool_message_params/mistral/function/shorthand.py +0 -32
  1595. mirascope-1.18.2/examples/learn/tools/tool_message_params/mistral/function/string_template.py +0 -35
  1596. mirascope-1.18.2/examples/learn/tools/tool_message_params/openai/base_tool/base_message_param.py +0 -35
  1597. mirascope-1.18.2/examples/learn/tools/tool_message_params/openai/base_tool/messages.py +0 -35
  1598. mirascope-1.18.2/examples/learn/tools/tool_message_params/openai/base_tool/shorthand.py +0 -35
  1599. mirascope-1.18.2/examples/learn/tools/tool_message_params/openai/base_tool/string_template.py +0 -38
  1600. mirascope-1.18.2/examples/learn/tools/tool_message_params/openai/function/base_message_param.py +0 -32
  1601. mirascope-1.18.2/examples/learn/tools/tool_message_params/openai/function/messages.py +0 -32
  1602. mirascope-1.18.2/examples/learn/tools/tool_message_params/openai/function/shorthand.py +0 -32
  1603. mirascope-1.18.2/examples/learn/tools/tool_message_params/openai/function/string_template.py +0 -35
  1604. mirascope-1.18.2/examples/learn/tools/toolkit/anthropic/base_message_param.py +0 -44
  1605. mirascope-1.18.2/examples/learn/tools/toolkit/anthropic/messages.py +0 -42
  1606. mirascope-1.18.2/examples/learn/tools/toolkit/anthropic/shorthand.py +0 -42
  1607. mirascope-1.18.2/examples/learn/tools/toolkit/anthropic/string_template.py +0 -40
  1608. mirascope-1.18.2/examples/learn/tools/toolkit/azure/base_message_param.py +0 -44
  1609. mirascope-1.18.2/examples/learn/tools/toolkit/azure/messages.py +0 -42
  1610. mirascope-1.18.2/examples/learn/tools/toolkit/azure/shorthand.py +0 -42
  1611. mirascope-1.18.2/examples/learn/tools/toolkit/azure/string_template.py +0 -40
  1612. mirascope-1.18.2/examples/learn/tools/toolkit/bedrock/base_message_param.py +0 -44
  1613. mirascope-1.18.2/examples/learn/tools/toolkit/bedrock/messages.py +0 -42
  1614. mirascope-1.18.2/examples/learn/tools/toolkit/bedrock/shorthand.py +0 -42
  1615. mirascope-1.18.2/examples/learn/tools/toolkit/bedrock/string_template.py +0 -40
  1616. mirascope-1.18.2/examples/learn/tools/toolkit/cohere/base_message_param.py +0 -44
  1617. mirascope-1.18.2/examples/learn/tools/toolkit/cohere/messages.py +0 -42
  1618. mirascope-1.18.2/examples/learn/tools/toolkit/cohere/shorthand.py +0 -42
  1619. mirascope-1.18.2/examples/learn/tools/toolkit/cohere/string_template.py +0 -40
  1620. mirascope-1.18.2/examples/learn/tools/toolkit/google/base_message_param.py +0 -43
  1621. mirascope-1.18.2/examples/learn/tools/toolkit/google/messages.py +0 -41
  1622. mirascope-1.18.2/examples/learn/tools/toolkit/google/shorthand.py +0 -41
  1623. mirascope-1.18.2/examples/learn/tools/toolkit/google/string_template.py +0 -39
  1624. mirascope-1.18.2/examples/learn/tools/toolkit/groq/base_message_param.py +0 -44
  1625. mirascope-1.18.2/examples/learn/tools/toolkit/groq/messages.py +0 -42
  1626. mirascope-1.18.2/examples/learn/tools/toolkit/groq/shorthand.py +0 -42
  1627. mirascope-1.18.2/examples/learn/tools/toolkit/groq/string_template.py +0 -40
  1628. mirascope-1.18.2/examples/learn/tools/toolkit/litellm/base_message_param.py +0 -44
  1629. mirascope-1.18.2/examples/learn/tools/toolkit/litellm/messages.py +0 -42
  1630. mirascope-1.18.2/examples/learn/tools/toolkit/litellm/shorthand.py +0 -42
  1631. mirascope-1.18.2/examples/learn/tools/toolkit/litellm/string_template.py +0 -40
  1632. mirascope-1.18.2/examples/learn/tools/toolkit/mistral/base_message_param.py +0 -44
  1633. mirascope-1.18.2/examples/learn/tools/toolkit/mistral/messages.py +0 -42
  1634. mirascope-1.18.2/examples/learn/tools/toolkit/mistral/shorthand.py +0 -42
  1635. mirascope-1.18.2/examples/learn/tools/toolkit/mistral/string_template.py +0 -40
  1636. mirascope-1.18.2/examples/learn/tools/toolkit/openai/base_message_param.py +0 -44
  1637. mirascope-1.18.2/examples/learn/tools/toolkit/openai/messages.py +0 -42
  1638. mirascope-1.18.2/examples/learn/tools/toolkit/openai/shorthand.py +0 -42
  1639. mirascope-1.18.2/examples/learn/tools/toolkit/openai/string_template.py +0 -40
  1640. mirascope-1.18.2/examples/learn/tools/validation/anthropic/base_tool/base_message_param.py +0 -44
  1641. mirascope-1.18.2/examples/learn/tools/validation/anthropic/base_tool/messages.py +0 -44
  1642. mirascope-1.18.2/examples/learn/tools/validation/anthropic/base_tool/shorthand.py +0 -44
  1643. mirascope-1.18.2/examples/learn/tools/validation/anthropic/base_tool/string_template.py +0 -44
  1644. mirascope-1.18.2/examples/learn/tools/validation/anthropic/function/base_message_param.py +0 -42
  1645. mirascope-1.18.2/examples/learn/tools/validation/anthropic/function/messages.py +0 -42
  1646. mirascope-1.18.2/examples/learn/tools/validation/anthropic/function/shorthand.py +0 -42
  1647. mirascope-1.18.2/examples/learn/tools/validation/anthropic/function/string_template.py +0 -42
  1648. mirascope-1.18.2/examples/learn/tools/validation/azure/base_tool/base_message_param.py +0 -44
  1649. mirascope-1.18.2/examples/learn/tools/validation/azure/base_tool/messages.py +0 -44
  1650. mirascope-1.18.2/examples/learn/tools/validation/azure/base_tool/shorthand.py +0 -44
  1651. mirascope-1.18.2/examples/learn/tools/validation/azure/base_tool/string_template.py +0 -44
  1652. mirascope-1.18.2/examples/learn/tools/validation/azure/function/base_message_param.py +0 -42
  1653. mirascope-1.18.2/examples/learn/tools/validation/azure/function/messages.py +0 -42
  1654. mirascope-1.18.2/examples/learn/tools/validation/azure/function/shorthand.py +0 -42
  1655. mirascope-1.18.2/examples/learn/tools/validation/azure/function/string_template.py +0 -42
  1656. mirascope-1.18.2/examples/learn/tools/validation/bedrock/base_tool/base_message_param.py +0 -44
  1657. mirascope-1.18.2/examples/learn/tools/validation/bedrock/base_tool/messages.py +0 -44
  1658. mirascope-1.18.2/examples/learn/tools/validation/bedrock/base_tool/shorthand.py +0 -44
  1659. mirascope-1.18.2/examples/learn/tools/validation/bedrock/base_tool/string_template.py +0 -44
  1660. mirascope-1.18.2/examples/learn/tools/validation/bedrock/function/base_message_param.py +0 -42
  1661. mirascope-1.18.2/examples/learn/tools/validation/bedrock/function/messages.py +0 -42
  1662. mirascope-1.18.2/examples/learn/tools/validation/bedrock/function/shorthand.py +0 -42
  1663. mirascope-1.18.2/examples/learn/tools/validation/bedrock/function/string_template.py +0 -42
  1664. mirascope-1.18.2/examples/learn/tools/validation/cohere/base_tool/base_message_param.py +0 -44
  1665. mirascope-1.18.2/examples/learn/tools/validation/cohere/base_tool/messages.py +0 -44
  1666. mirascope-1.18.2/examples/learn/tools/validation/cohere/base_tool/shorthand.py +0 -44
  1667. mirascope-1.18.2/examples/learn/tools/validation/cohere/base_tool/string_template.py +0 -44
  1668. mirascope-1.18.2/examples/learn/tools/validation/cohere/function/base_message_param.py +0 -42
  1669. mirascope-1.18.2/examples/learn/tools/validation/cohere/function/messages.py +0 -42
  1670. mirascope-1.18.2/examples/learn/tools/validation/cohere/function/shorthand.py +0 -42
  1671. mirascope-1.18.2/examples/learn/tools/validation/cohere/function/string_template.py +0 -42
  1672. mirascope-1.18.2/examples/learn/tools/validation/google/base_tool/base_message_param.py +0 -44
  1673. mirascope-1.18.2/examples/learn/tools/validation/google/base_tool/messages.py +0 -44
  1674. mirascope-1.18.2/examples/learn/tools/validation/google/base_tool/shorthand.py +0 -44
  1675. mirascope-1.18.2/examples/learn/tools/validation/google/base_tool/string_template.py +0 -44
  1676. mirascope-1.18.2/examples/learn/tools/validation/google/function/base_message_param.py +0 -42
  1677. mirascope-1.18.2/examples/learn/tools/validation/google/function/messages.py +0 -42
  1678. mirascope-1.18.2/examples/learn/tools/validation/google/function/shorthand.py +0 -42
  1679. mirascope-1.18.2/examples/learn/tools/validation/google/function/string_template.py +0 -42
  1680. mirascope-1.18.2/examples/learn/tools/validation/groq/base_tool/base_message_param.py +0 -44
  1681. mirascope-1.18.2/examples/learn/tools/validation/groq/base_tool/messages.py +0 -44
  1682. mirascope-1.18.2/examples/learn/tools/validation/groq/base_tool/shorthand.py +0 -44
  1683. mirascope-1.18.2/examples/learn/tools/validation/groq/base_tool/string_template.py +0 -44
  1684. mirascope-1.18.2/examples/learn/tools/validation/groq/function/base_message_param.py +0 -42
  1685. mirascope-1.18.2/examples/learn/tools/validation/groq/function/messages.py +0 -42
  1686. mirascope-1.18.2/examples/learn/tools/validation/groq/function/shorthand.py +0 -42
  1687. mirascope-1.18.2/examples/learn/tools/validation/groq/function/string_template.py +0 -42
  1688. mirascope-1.18.2/examples/learn/tools/validation/litellm/base_tool/base_message_param.py +0 -44
  1689. mirascope-1.18.2/examples/learn/tools/validation/litellm/base_tool/messages.py +0 -44
  1690. mirascope-1.18.2/examples/learn/tools/validation/litellm/base_tool/shorthand.py +0 -44
  1691. mirascope-1.18.2/examples/learn/tools/validation/litellm/base_tool/string_template.py +0 -44
  1692. mirascope-1.18.2/examples/learn/tools/validation/litellm/function/base_message_param.py +0 -42
  1693. mirascope-1.18.2/examples/learn/tools/validation/litellm/function/messages.py +0 -42
  1694. mirascope-1.18.2/examples/learn/tools/validation/litellm/function/shorthand.py +0 -42
  1695. mirascope-1.18.2/examples/learn/tools/validation/litellm/function/string_template.py +0 -42
  1696. mirascope-1.18.2/examples/learn/tools/validation/mistral/base_tool/base_message_param.py +0 -44
  1697. mirascope-1.18.2/examples/learn/tools/validation/mistral/base_tool/messages.py +0 -44
  1698. mirascope-1.18.2/examples/learn/tools/validation/mistral/base_tool/shorthand.py +0 -44
  1699. mirascope-1.18.2/examples/learn/tools/validation/mistral/base_tool/string_template.py +0 -44
  1700. mirascope-1.18.2/examples/learn/tools/validation/mistral/function/base_message_param.py +0 -42
  1701. mirascope-1.18.2/examples/learn/tools/validation/mistral/function/messages.py +0 -42
  1702. mirascope-1.18.2/examples/learn/tools/validation/mistral/function/shorthand.py +0 -42
  1703. mirascope-1.18.2/examples/learn/tools/validation/mistral/function/string_template.py +0 -42
  1704. mirascope-1.18.2/examples/learn/tools/validation/openai/base_tool/base_message_param.py +0 -44
  1705. mirascope-1.18.2/examples/learn/tools/validation/openai/base_tool/messages.py +0 -44
  1706. mirascope-1.18.2/examples/learn/tools/validation/openai/base_tool/shorthand.py +0 -44
  1707. mirascope-1.18.2/examples/learn/tools/validation/openai/base_tool/string_template.py +0 -44
  1708. mirascope-1.18.2/examples/learn/tools/validation/openai/function/base_message_param.py +0 -42
  1709. mirascope-1.18.2/examples/learn/tools/validation/openai/function/messages.py +0 -42
  1710. mirascope-1.18.2/examples/learn/tools/validation/openai/function/shorthand.py +0 -42
  1711. mirascope-1.18.2/examples/learn/tools/validation/openai/function/string_template.py +0 -42
  1712. mirascope-1.18.2/mirascope/__init__.py +0 -36
  1713. mirascope-1.18.2/mirascope/beta/openai/__init__.py +0 -17
  1714. mirascope-1.18.2/mirascope/beta/openai/realtime/__init__.py +0 -13
  1715. mirascope-1.18.2/mirascope/beta/openai/realtime/tool.py +0 -113
  1716. mirascope-1.18.2/mirascope/beta/rag/__init__.py +0 -24
  1717. mirascope-1.18.2/mirascope/beta/rag/base/__init__.py +0 -22
  1718. mirascope-1.18.2/mirascope/beta/rag/weaviate/__init__.py +0 -6
  1719. mirascope-1.18.2/mirascope/core/__init__.py +0 -75
  1720. mirascope-1.18.2/mirascope/core/anthropic/__init__.py +0 -31
  1721. mirascope-1.18.2/mirascope/core/anthropic/_utils/_calculate_cost.py +0 -121
  1722. mirascope-1.18.2/mirascope/core/anthropic/call_response.py +0 -198
  1723. mirascope-1.18.2/mirascope/core/anthropic/call_response_chunk.py +0 -115
  1724. mirascope-1.18.2/mirascope/core/anthropic/stream.py +0 -147
  1725. mirascope-1.18.2/mirascope/core/azure/__init__.py +0 -31
  1726. mirascope-1.18.2/mirascope/core/azure/_utils/_calculate_cost.py +0 -8
  1727. mirascope-1.18.2/mirascope/core/azure/call_response.py +0 -209
  1728. mirascope-1.18.2/mirascope/core/azure/call_response_chunk.py +0 -95
  1729. mirascope-1.18.2/mirascope/core/azure/stream.py +0 -147
  1730. mirascope-1.18.2/mirascope/core/base/__init__.py +0 -73
  1731. mirascope-1.18.2/mirascope/core/base/_utils/__init__.py +0 -87
  1732. mirascope-1.18.2/mirascope/core/base/_utils/_get_common_usage.py +0 -16
  1733. mirascope-1.18.2/mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py +0 -137
  1734. mirascope-1.18.2/mirascope/core/base/_utils/_protocols.py +0 -900
  1735. mirascope-1.18.2/mirascope/core/base/call_response.py +0 -300
  1736. mirascope-1.18.2/mirascope/core/base/call_response_chunk.py +0 -105
  1737. mirascope-1.18.2/mirascope/core/base/stream.py +0 -454
  1738. mirascope-1.18.2/mirascope/core/base/tool.py +0 -203
  1739. mirascope-1.18.2/mirascope/core/base/types.py +0 -53
  1740. mirascope-1.18.2/mirascope/core/bedrock/__init__.py +0 -34
  1741. mirascope-1.18.2/mirascope/core/bedrock/_utils/_calculate_cost.py +0 -12
  1742. mirascope-1.18.2/mirascope/core/bedrock/call_response.py +0 -242
  1743. mirascope-1.18.2/mirascope/core/bedrock/call_response_chunk.py +0 -100
  1744. mirascope-1.18.2/mirascope/core/bedrock/stream.py +0 -156
  1745. mirascope-1.18.2/mirascope/core/cohere/__init__.py +0 -30
  1746. mirascope-1.18.2/mirascope/core/cohere/_utils/_calculate_cost.py +0 -39
  1747. mirascope-1.18.2/mirascope/core/cohere/call_response.py +0 -198
  1748. mirascope-1.18.2/mirascope/core/cohere/call_response_chunk.py +0 -114
  1749. mirascope-1.18.2/mirascope/core/cohere/stream.py +0 -114
  1750. mirascope-1.18.2/mirascope/core/gemini/__init__.py +0 -40
  1751. mirascope-1.18.2/mirascope/core/gemini/_utils/_calculate_cost.py +0 -64
  1752. mirascope-1.18.2/mirascope/core/gemini/_utils/_convert_message_params.py +0 -156
  1753. mirascope-1.18.2/mirascope/core/gemini/call_response.py +0 -209
  1754. mirascope-1.18.2/mirascope/core/gemini/call_response_chunk.py +0 -90
  1755. mirascope-1.18.2/mirascope/core/gemini/stream.py +0 -121
  1756. mirascope-1.18.2/mirascope/core/google/__init__.py +0 -29
  1757. mirascope-1.18.2/mirascope/core/google/_utils/_calculate_cost.py +0 -88
  1758. mirascope-1.18.2/mirascope/core/google/_utils/_convert_message_params.py +0 -181
  1759. mirascope-1.18.2/mirascope/core/google/_utils/_message_param_converter.py +0 -159
  1760. mirascope-1.18.2/mirascope/core/google/call_response.py +0 -202
  1761. mirascope-1.18.2/mirascope/core/google/call_response_chunk.py +0 -97
  1762. mirascope-1.18.2/mirascope/core/google/stream.py +0 -128
  1763. mirascope-1.18.2/mirascope/core/groq/__init__.py +0 -30
  1764. mirascope-1.18.2/mirascope/core/groq/_utils/_calculate_cost.py +0 -68
  1765. mirascope-1.18.2/mirascope/core/groq/call_response.py +0 -191
  1766. mirascope-1.18.2/mirascope/core/groq/call_response_chunk.py +0 -93
  1767. mirascope-1.18.2/mirascope/core/groq/stream.py +0 -136
  1768. mirascope-1.18.2/mirascope/core/litellm/__init__.py +0 -28
  1769. mirascope-1.18.2/mirascope/core/litellm/_utils/_setup_call.py +0 -105
  1770. mirascope-1.18.2/mirascope/core/mistral/__init__.py +0 -36
  1771. mirascope-1.18.2/mirascope/core/mistral/_utils/_calculate_cost.py +0 -47
  1772. mirascope-1.18.2/mirascope/core/mistral/call_response.py +0 -196
  1773. mirascope-1.18.2/mirascope/core/mistral/call_response_chunk.py +0 -94
  1774. mirascope-1.18.2/mirascope/core/mistral/stream.py +0 -121
  1775. mirascope-1.18.2/mirascope/core/openai/__init__.py +0 -31
  1776. mirascope-1.18.2/mirascope/core/openai/_utils/_calculate_cost.py +0 -205
  1777. mirascope-1.18.2/mirascope/core/openai/call_params.py +0 -78
  1778. mirascope-1.18.2/mirascope/core/openai/call_response.py +0 -239
  1779. mirascope-1.18.2/mirascope/core/openai/call_response_chunk.py +0 -121
  1780. mirascope-1.18.2/mirascope/core/openai/stream.py +0 -186
  1781. mirascope-1.18.2/mirascope/core/vertex/__init__.py +0 -45
  1782. mirascope-1.18.2/mirascope/core/vertex/_utils/_calculate_cost.py +0 -65
  1783. mirascope-1.18.2/mirascope/core/vertex/_utils/_convert_message_params.py +0 -171
  1784. mirascope-1.18.2/mirascope/core/vertex/call_response.py +0 -201
  1785. mirascope-1.18.2/mirascope/core/vertex/call_response_chunk.py +0 -88
  1786. mirascope-1.18.2/mirascope/core/vertex/stream.py +0 -120
  1787. mirascope-1.18.2/mirascope/integrations/_middleware_factory.py +0 -403
  1788. mirascope-1.18.2/mirascope/integrations/logfire/_utils.py +0 -225
  1789. mirascope-1.18.2/mirascope/llm/__init__.py +0 -4
  1790. mirascope-1.18.2/mirascope/llm/_protocols.py +0 -519
  1791. mirascope-1.18.2/mirascope/llm/call_response.py +0 -151
  1792. mirascope-1.18.2/mirascope/llm/llm_call.py +0 -266
  1793. mirascope-1.18.2/mirascope/llm/stream.py +0 -168
  1794. mirascope-1.18.2/mirascope/retries/__init__.py +0 -11
  1795. mirascope-1.18.2/mirascope/tools/__init__.py +0 -37
  1796. mirascope-1.18.2/mkdocs.yml +0 -387
  1797. mirascope-1.18.2/pyproject.toml +0 -233
  1798. mirascope-1.18.2/tests/core/anthropic/_utils/test_calculate_cost.py +0 -10
  1799. mirascope-1.18.2/tests/core/azure/_utils/test_calculate_cost.py +0 -10
  1800. mirascope-1.18.2/tests/core/base/_utils/test_convert_messages_to_message_params.py +0 -255
  1801. mirascope-1.18.2/tests/core/base/_utils/test_parse_prompt_messages.py +0 -115
  1802. mirascope-1.18.2/tests/core/base/test_tool.py +0 -185
  1803. mirascope-1.18.2/tests/core/bedrock/_utils/test_calculate_cost.py +0 -10
  1804. mirascope-1.18.2/tests/core/bedrock/test_stream.py +0 -256
  1805. mirascope-1.18.2/tests/core/cohere/_utils/test_calculate_cost.py +0 -10
  1806. mirascope-1.18.2/tests/core/gemini/_utils/test_calculate_cost.py +0 -10
  1807. mirascope-1.18.2/tests/core/gemini/_utils/test_convert_message_params.py +0 -330
  1808. mirascope-1.18.2/tests/core/google/_utils/test_calculate_cost.py +0 -10
  1809. mirascope-1.18.2/tests/core/google/_utils/test_convert_message_params.py +0 -364
  1810. mirascope-1.18.2/tests/core/google/_utils/test_message_param_converter.py +0 -248
  1811. mirascope-1.18.2/tests/core/google/test_call_response.py +0 -144
  1812. mirascope-1.18.2/tests/core/google/test_stream.py +0 -140
  1813. mirascope-1.18.2/tests/core/groq/_utils/test_calculate_cost.py +0 -15
  1814. mirascope-1.18.2/tests/core/groq/_utils/test_convert_message_params.py +0 -147
  1815. mirascope-1.18.2/tests/core/mistral/_utils/test_calculate_cost.py +0 -10
  1816. mirascope-1.18.2/tests/core/openai/_utils/test_calculate_cost.py +0 -10
  1817. mirascope-1.18.2/tests/core/vertex/_utils/test_calculate_cost.py +0 -65
  1818. mirascope-1.18.2/tests/core/vertex/_utils/test_convert_message_params.py +0 -317
  1819. mirascope-1.18.2/tests/llm/test_call.py +0 -298
  1820. mirascope-1.18.2/tests/llm/test_call_response.py +0 -225
  1821. mirascope-1.18.2/tests/llm/test_call_response_chunk.py +0 -56
  1822. mirascope-1.18.2/tests/llm/test_stream.py +0 -249
  1823. mirascope-1.18.2/tests/mcp/test_mcp_server.py +0 -1079
  1824. mirascope-1.18.2/uv.lock +0 -6843
  1825. {mirascope-1.18.2 → mirascope-1.18.4}/.github/CODEOWNERS +0 -0
  1826. {mirascope-1.18.2 → mirascope-1.18.4}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
  1827. {mirascope-1.18.2 → mirascope-1.18.4}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  1828. {mirascope-1.18.2 → mirascope-1.18.4}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
  1829. {mirascope-1.18.2 → mirascope-1.18.4}/.github/ISSUE_TEMPLATE/question.yml +0 -0
  1830. {mirascope-1.18.2 → mirascope-1.18.4}/.github/workflows/docs.yml +0 -0
  1831. {mirascope-1.18.2 → mirascope-1.18.4}/.github/workflows/label_issues.yml +0 -0
  1832. {mirascope-1.18.2 → mirascope-1.18.4}/.github/workflows/release.yml +0 -0
  1833. {mirascope-1.18.2 → mirascope-1.18.4}/.github/workflows/tests.yml +0 -0
  1834. {mirascope-1.18.2 → mirascope-1.18.4}/.vscode/extensions.json +0 -0
  1835. {mirascope-1.18.2 → mirascope-1.18.4}/.vscode/launch.json +0 -0
  1836. {mirascope-1.18.2 → mirascope-1.18.4}/.vscode/settings.json +0 -0
  1837. {mirascope-1.18.2 → mirascope-1.18.4}/LICENSE +0 -0
  1838. {mirascope-1.18.2 → mirascope-1.18.4}/docs/CNAME +0 -0
  1839. {mirascope-1.18.2 → mirascope-1.18.4}/docs/CONTRIBUTING.md +0 -0
  1840. {mirascope-1.18.2 → mirascope-1.18.4}/docs/HELP.md +0 -0
  1841. {mirascope-1.18.2 → mirascope-1.18.4}/docs/MIGRATE.md +0 -0
  1842. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/anthropic/call.md +0 -0
  1843. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/anthropic/call_params.md +0 -0
  1844. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/anthropic/call_response.md +0 -0
  1845. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/anthropic/call_response_chunk.md +0 -0
  1846. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/anthropic/dynamic_config.md +0 -0
  1847. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/anthropic/stream.md +0 -0
  1848. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/anthropic/tool.md +0 -0
  1849. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/azure/call.md +0 -0
  1850. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/azure/call_params.md +0 -0
  1851. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/azure/call_response.md +0 -0
  1852. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/azure/call_response_chunk.md +0 -0
  1853. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/azure/dynamic_config.md +0 -0
  1854. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/azure/stream.md +0 -0
  1855. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/azure/tool.md +0 -0
  1856. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/call_factory.md +0 -0
  1857. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/call_params.md +0 -0
  1858. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/call_response.md +0 -0
  1859. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/call_response_chunk.md +0 -0
  1860. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/dynamic_config.md +0 -0
  1861. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/merge_decorators.md +0 -0
  1862. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/message_param.md +0 -0
  1863. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/metadata.md +0 -0
  1864. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/prompt.md +0 -0
  1865. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/stream.md +0 -0
  1866. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/structured_stream.md +0 -0
  1867. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/tool.md +0 -0
  1868. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/base/toolkit.md +0 -0
  1869. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/bedrock/call.md +0 -0
  1870. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/bedrock/call_params.md +0 -0
  1871. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/bedrock/call_response.md +0 -0
  1872. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/bedrock/call_response_chunk.md +0 -0
  1873. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/bedrock/dynamic_config.md +0 -0
  1874. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/bedrock/stream.md +0 -0
  1875. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/bedrock/tool.md +0 -0
  1876. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/cohere/call.md +0 -0
  1877. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/cohere/call_params.md +0 -0
  1878. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/cohere/call_response.md +0 -0
  1879. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/cohere/call_response_chunk.md +0 -0
  1880. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/cohere/dynamic_config.md +0 -0
  1881. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/cohere/stream.md +0 -0
  1882. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/cohere/tool.md +0 -0
  1883. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/gemini/call.md +0 -0
  1884. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/gemini/call_params.md +0 -0
  1885. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/gemini/call_response.md +0 -0
  1886. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/gemini/call_response_chunk.md +0 -0
  1887. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/gemini/dynamic_config.md +0 -0
  1888. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/gemini/stream.md +0 -0
  1889. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/gemini/tool.md +0 -0
  1890. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/google/call.md +0 -0
  1891. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/google/call_params.md +0 -0
  1892. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/google/call_response.md +0 -0
  1893. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/google/call_response_chunk.md +0 -0
  1894. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/google/dynamic_config.md +0 -0
  1895. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/google/stream.md +0 -0
  1896. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/google/tool.md +0 -0
  1897. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/groq/call.md +0 -0
  1898. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/groq/call_params.md +0 -0
  1899. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/groq/call_response.md +0 -0
  1900. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/groq/call_response_chunk.md +0 -0
  1901. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/groq/dynamic_config.md +0 -0
  1902. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/groq/stream.md +0 -0
  1903. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/groq/tool.md +0 -0
  1904. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/litellm/call.md +0 -0
  1905. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/mistral/call.md +0 -0
  1906. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/mistral/call_params.md +0 -0
  1907. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/mistral/call_response.md +0 -0
  1908. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/mistral/call_response_chunk.md +0 -0
  1909. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/mistral/dynamic_config.md +0 -0
  1910. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/mistral/stream.md +0 -0
  1911. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/mistral/tool.md +0 -0
  1912. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/openai/call.md +0 -0
  1913. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/openai/call_params.md +0 -0
  1914. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/openai/call_response.md +0 -0
  1915. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/openai/call_response_chunk.md +0 -0
  1916. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/openai/dynamic_config.md +0 -0
  1917. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/openai/stream.md +0 -0
  1918. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/openai/tool.md +0 -0
  1919. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/vertex/call.md +0 -0
  1920. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/vertex/call_params.md +0 -0
  1921. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/vertex/call_response.md +0 -0
  1922. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/vertex/call_response_chunk.md +0 -0
  1923. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/vertex/dynamic_config.md +0 -0
  1924. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/vertex/stream.md +0 -0
  1925. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/core/vertex/tool.md +0 -0
  1926. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/integrations/langfuse.md +0 -0
  1927. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/integrations/logfire.md +0 -0
  1928. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/integrations/middleware.md +0 -0
  1929. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/integrations/otel.md +0 -0
  1930. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/integrations/tenacity.md +0 -0
  1931. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/llm/call.md +0 -0
  1932. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/tools/system/docker_operation.md +0 -0
  1933. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/tools/system/file_system.md +0 -0
  1934. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/tools/web/duckduckgo.md +0 -0
  1935. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/tools/web/httpx.md +0 -0
  1936. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/tools/web/parse_url_content.md +0 -0
  1937. {mirascope-1.18.2 → mirascope-1.18.4}/docs/api/tools/web/requests.md +0 -0
  1938. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/engineers-should-handle-prompting-llms/og-image.png +0 -0
  1939. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/how-to-build-a-knowledge-graph/algorithmic-bias-kg.png +0 -0
  1940. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/how-to-build-a-knowledge-graph/example-kg-diagram.png +0 -0
  1941. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/how-to-make-a-chatbot/autocomplete.png +0 -0
  1942. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/how-to-make-a-chatbot/lilypad-screenshot.png +0 -0
  1943. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/how-to-make-a-chatbot/type-hints.png +0 -0
  1944. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/agentgpt_homepage_screenshot.png +0 -0
  1945. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/autogpt_homepage_screenshot.png +0 -0
  1946. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/flowise_homepage_screenshot.png +0 -0
  1947. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/griptape_homepage_screenshot.png +0 -0
  1948. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/guidance_github_screenshot.png +0 -0
  1949. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/haystack_homepage_screenshot.png +0 -0
  1950. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/humanloop_homepage_screenshot.png +0 -0
  1951. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/instructor_docs_screenshot.png +0 -0
  1952. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/llama_index_homepage_screenshot.png +0 -0
  1953. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/metagpt_homepage_screenshot.png +0 -0
  1954. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/mirascope_homepage_screenshot.png +0 -0
  1955. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/mirascope_response_autocomplete_suggestions.png +0 -0
  1956. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/og-image.png +0 -0
  1957. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-alternatives/priompt_github_screenshot.png +0 -0
  1958. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-prompt-template/langchain_invoke_dict_no_error.png +0 -0
  1959. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-prompt-template/langchain_invoke_dict_runtime_error.png +0 -0
  1960. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-prompt-template/mirascope_prompt_fn_autocomplete.png +0 -0
  1961. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-prompt-template/mirascope_prompt_fn_incorrect_type_error.png +0 -0
  1962. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-prompt-template/og-image.png +0 -0
  1963. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-rag/rag-pipeline-diagram.png +0 -0
  1964. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-runnables/og-image.png +0 -0
  1965. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-structured-output/mirascope_prompt_autocomplete.png +0 -0
  1966. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-structured-output/mirascope_prompt_missing_arg.png +0 -0
  1967. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-structured-output/og-image.png +0 -0
  1968. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-sucks/embedding_model_diagram.png +0 -0
  1969. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-sucks/langchain_invoke_no_type_hints.png +0 -0
  1970. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-sucks/mirascope_stream_type_hint.png +0 -0
  1971. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langchain-sucks/og-image.png +0 -0
  1972. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langfuse-integration/mirascope_langfuse_response_model_trace.png +0 -0
  1973. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langfuse-integration/mirascope_langfuse_trace.png +0 -0
  1974. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/langfuse-integration/og-image.png +0 -0
  1975. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llamaindex-vs-langchain/og-image.png +0 -0
  1976. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-agents/agent-diagram.jpg +0 -0
  1977. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-agents/autocomplete.png +0 -0
  1978. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-agents/type-hints.png +0 -0
  1979. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-applications/og-image.png +0 -0
  1980. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-as-judge/autocomplete.png +0 -0
  1981. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/ask-marvin-homepage.png +0 -0
  1982. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/autogen-homepage.png +0 -0
  1983. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/control-flow-homepage.png +0 -0
  1984. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/dify-homepage.png +0 -0
  1985. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/haystack-homepage.png +0 -0
  1986. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/langchain-homepage.png +0 -0
  1987. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/llama-index-homepage.png +0 -0
  1988. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/mirascope-homepage.png +0 -0
  1989. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/msft-semantic-kernel-github.png +0 -0
  1990. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/openai-stream-type-hint.png +0 -0
  1991. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/orkes-homepage.png +0 -0
  1992. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-frameworks/prompt-template-autocomplete.png +0 -0
  1993. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-orchestration/og-image.png +0 -0
  1994. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-pipeline/og-image.png +0 -0
  1995. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-pipeline/stages_of_rag_pipeline.png +0 -0
  1996. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-prompt/og-image.png +0 -0
  1997. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/autogen_github_page.png +0 -0
  1998. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/botkit_github_page.png +0 -0
  1999. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/crewai_homepage.png +0 -0
  2000. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/helicone_homepage.png +0 -0
  2001. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/langchain_homepage.png +0 -0
  2002. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/milvus_homepage.png +0 -0
  2003. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/og-image.png +0 -0
  2004. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/ollama_homepage.png +0 -0
  2005. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/open_llm_github_page.png +0 -0
  2006. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/pinecone_homepage.png +0 -0
  2007. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/rasa_homepage.png +0 -0
  2008. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/llm-tools/vllm_github_page.png +0 -0
  2009. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/mirascope-v1-release/og-image.png +0 -0
  2010. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/openai-function-calling/function_calling_diagram.png +0 -0
  2011. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/openai-function-calling/og-image.png +0 -0
  2012. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-chaining/og-image.png +0 -0
  2013. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-best-practices/og-image.png +0 -0
  2014. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-best-practices/storylines_incorrect_input_arg.png +0 -0
  2015. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-examples/og-image.png +0 -0
  2016. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-tools/agenta_homepage.png +0 -0
  2017. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-tools/guidance_github_page.png +0 -0
  2018. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-tools/haystack_homepage.png +0 -0
  2019. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-tools/langchain_homepage.png +0 -0
  2020. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-tools/og-image.png +0 -0
  2021. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-tools/priompt_github_page.png +0 -0
  2022. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-tools/prompt_hub_homepage.png +0 -0
  2023. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-tools/promptmetheus_homepage.png +0 -0
  2024. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-engineering-vs-fine-tuning/og-image.png +0 -0
  2025. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-flow-vs-langchain/og-image.png +0 -0
  2026. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-flow-vs-langchain/prompt-flow-visual.png +0 -0
  2027. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-versioning/agenta_homepage.png +0 -0
  2028. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-versioning/langsmith_homepage.png +0 -0
  2029. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-versioning/og-image.png +0 -0
  2030. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-versioning/pezzo_homepage.png +0 -0
  2031. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/prompt-versioning/prompt_hub_homepage.png +0 -0
  2032. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/rag-application/rag-app-diagram.png +0 -0
  2033. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/rag-llm-example/rag-diagram.jpg +0 -0
  2034. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/synthetic-data-generation/autocomplete.png +0 -0
  2035. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/synthetic-data-generation/data-chart.png +0 -0
  2036. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/blog/synthetic-data-generation/linting.png +0 -0
  2037. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/brandmark.png +0 -0
  2038. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/brandmark.svg +0 -0
  2039. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/calls-type-hint.png +0 -0
  2040. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/cloth-background.png +0 -0
  2041. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/favicon.png +0 -0
  2042. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/generating-synthetic-data-chart.png +0 -0
  2043. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/langfuse-call.png +0 -0
  2044. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/learn_flow.svg +0 -0
  2045. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/logfire-response-model.png +0 -0
  2046. {mirascope-1.18.2 → mirascope-1.18.4}/docs/assets/stream-attributes.png +0 -0
  2047. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/.authors.yml +0 -0
  2048. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/index.md +0 -0
  2049. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/advanced-prompt-engineering.md +0 -0
  2050. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/engineers-should-handle-prompting-llms.md +0 -0
  2051. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/how-to-build-a-knowledge-graph.md +0 -0
  2052. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/how-to-make-a-chatbot.md +0 -0
  2053. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/langchain-alternatives.md +0 -0
  2054. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/langchain-prompt-template.md +0 -0
  2055. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/langchain-rag.md +0 -0
  2056. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/langchain-runnables.md +0 -0
  2057. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/langchain-sucks.md +0 -0
  2058. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/langfuse-integration.md +0 -0
  2059. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llamaindex-vs-langchain.md +0 -0
  2060. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llm-agents.md +0 -0
  2061. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llm-applications.md +0 -0
  2062. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llm-as-judge.md +0 -0
  2063. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llm-evaluation.md +0 -0
  2064. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llm-frameworks.md +0 -0
  2065. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llm-orchestration.md +0 -0
  2066. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llm-pipeline.md +0 -0
  2067. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llm-prompt.md +0 -0
  2068. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/llm-tools.md +0 -0
  2069. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/mirascope-v1-release.md +0 -0
  2070. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/openai-function-calling.md +0 -0
  2071. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/prompt-chaining.md +0 -0
  2072. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/prompt-engineering-best-practices.md +0 -0
  2073. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/prompt-engineering-examples.md +0 -0
  2074. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/prompt-engineering-tools.md +0 -0
  2075. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/prompt-engineering-vs-fine-tuning.md +0 -0
  2076. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/prompt-flow-vs-langchain.md +0 -0
  2077. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/prompt-versioning.md +0 -0
  2078. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/rag-application.md +0 -0
  2079. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/rag-llm-example.md +0 -0
  2080. {mirascope-1.18.2 → mirascope-1.18.4}/docs/blog/posts/synthetic-data-generation.md +0 -0
  2081. {mirascope-1.18.2 → mirascope-1.18.4}/docs/extra/tweaks.css +0 -0
  2082. {mirascope-1.18.2 → mirascope-1.18.4}/docs/generate_llms_txt.py +0 -0
  2083. {mirascope-1.18.2 → mirascope-1.18.4}/docs/index.md +0 -0
  2084. {mirascope-1.18.2 → mirascope-1.18.4}/docs/integrations/hyperdx.md +0 -0
  2085. {mirascope-1.18.2 → mirascope-1.18.4}/docs/integrations/langfuse.md +0 -0
  2086. {mirascope-1.18.2 → mirascope-1.18.4}/docs/integrations/logfire.md +0 -0
  2087. {mirascope-1.18.2 → mirascope-1.18.4}/docs/integrations/otel.md +0 -0
  2088. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/async.md +0 -0
  2089. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/chaining.md +0 -0
  2090. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/extensions/custom_provider.md +0 -0
  2091. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/extensions/middleware.md +0 -0
  2092. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/index.md +0 -0
  2093. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/local_models.md +0 -0
  2094. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/mcp/client.md +0 -0
  2095. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/mcp/server.md +0 -0
  2096. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/provider_specific_features/openai.md +0 -0
  2097. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/retries.md +0 -0
  2098. {mirascope-1.18.2 → mirascope-1.18.4}/docs/learn/streams.md +0 -0
  2099. {mirascope-1.18.2 → mirascope-1.18.4}/docs/macros.py +0 -0
  2100. {mirascope-1.18.2 → mirascope-1.18.4}/docs/overrides/home.html +0 -0
  2101. {mirascope-1.18.2 → mirascope-1.18.4}/docs/overrides/main.html +0 -0
  2102. {mirascope-1.18.2 → mirascope-1.18.4}/docs/robots.txt +0 -0
  2103. {mirascope-1.18.2 → mirascope-1.18.4}/docs/ruff.toml +0 -0
  2104. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/agents/blog_writing_agent.ipynb +0 -0
  2105. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/agents/documentation_agent.ipynb +0 -0
  2106. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/agents/local_chat_with_codebase.ipynb +0 -0
  2107. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/agents/localized_agent.ipynb +0 -0
  2108. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/agents/qwant_search_agent_with_sources.ipynb +0 -0
  2109. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/agents/sql_agent.ipynb +0 -0
  2110. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/agents/web_search_agent.ipynb +0 -0
  2111. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/evals/evaluating_documentation_agent.ipynb +0 -0
  2112. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/evals/evaluating_sql_agent.ipynb +0 -0
  2113. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/evals/evaluating_web_search_agent.ipynb +0 -0
  2114. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/getting_started/dynamic_configuration_and_chaining.ipynb +0 -0
  2115. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/getting_started/quickstart.ipynb +0 -0
  2116. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/getting_started/structured_outputs.ipynb +0 -0
  2117. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/getting_started/tools_and_agents.ipynb +0 -0
  2118. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/langgraph_vs_mirascope/quickstart.ipynb +0 -0
  2119. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/code_generation_and_execution.ipynb +0 -0
  2120. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/document_segmentation.ipynb +0 -0
  2121. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/extract_from_pdf.ipynb +0 -0
  2122. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/extraction_using_vision.ipynb +0 -0
  2123. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/generating_captions.ipynb +0 -0
  2124. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/generating_synthetic_data.ipynb +0 -0
  2125. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/knowledge_graph.ipynb +0 -0
  2126. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/llm_validation_with_retries.ipynb +0 -0
  2127. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/named_entity_recognition.ipynb +0 -0
  2128. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/o1_style_thinking.ipynb +0 -0
  2129. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/pii_scrubbing.ipynb +0 -0
  2130. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/query_plan.ipynb +0 -0
  2131. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/removing_semantic_duplicates.ipynb +0 -0
  2132. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/search_with_sources.ipynb +0 -0
  2133. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/speech_transcription.ipynb +0 -0
  2134. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/support_ticket_routing.ipynb +0 -0
  2135. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/text_classification.ipynb +0 -0
  2136. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/text_summarization.ipynb +0 -0
  2137. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/more_advanced/text_translation.ipynb +0 -0
  2138. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/chain_of_verification.ipynb +0 -0
  2139. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/decomposed_prompting.ipynb +0 -0
  2140. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/demonstration_ensembling.ipynb +0 -0
  2141. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/diverse.ipynb +0 -0
  2142. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/least_to_most.ipynb +0 -0
  2143. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/mixture_of_reasoning.ipynb +0 -0
  2144. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/prompt_paraphrasing.ipynb +0 -0
  2145. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/reverse_chain_of_thought.ipynb +0 -0
  2146. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/self_consistency.ipynb +0 -0
  2147. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/self_refine.ipynb +0 -0
  2148. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/sim_to_m.ipynb +0 -0
  2149. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/skeleton_of_thought.ipynb +0 -0
  2150. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/step_back.ipynb +0 -0
  2151. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/chaining_based/system_to_attention.ipynb +0 -0
  2152. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/chain_of_thought.ipynb +0 -0
  2153. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/common_phrases.ipynb +0 -0
  2154. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/contrastive_chain_of_thought.ipynb +0 -0
  2155. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/emotion_prompting.ipynb +0 -0
  2156. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/plan_and_solve.ipynb +0 -0
  2157. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/rephrase_and_respond.ipynb +0 -0
  2158. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/rereading.ipynb +0 -0
  2159. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/role_prompting.ipynb +0 -0
  2160. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/self_ask.ipynb +0 -0
  2161. {mirascope-1.18.2 → mirascope-1.18.4}/docs/tutorials/prompt_engineering/text_based/tabular_chain_of_thought.ipynb +0 -0
  2162. {mirascope-1.18.2 → mirascope-1.18.4}/examples/fastapi/endpoint.py +0 -0
  2163. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/anthropic/base_message_param.py +0 -0
  2164. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/anthropic/messages.py +0 -0
  2165. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/anthropic/shorthand.py +0 -0
  2166. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/anthropic/string_template.py +0 -0
  2167. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/azure/base_message_param.py +0 -0
  2168. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/azure/messages.py +0 -0
  2169. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/azure/shorthand.py +0 -0
  2170. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/azure/string_template.py +0 -0
  2171. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/bedrock/base_message_param.py +0 -0
  2172. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/bedrock/messages.py +0 -0
  2173. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/bedrock/shorthand.py +0 -0
  2174. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/bedrock/string_template.py +0 -0
  2175. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/cohere/base_message_param.py +0 -0
  2176. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/cohere/messages.py +0 -0
  2177. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/cohere/shorthand.py +0 -0
  2178. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/cohere/string_template.py +0 -0
  2179. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/groq/base_message_param.py +0 -0
  2180. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/groq/messages.py +0 -0
  2181. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/groq/shorthand.py +0 -0
  2182. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/groq/string_template.py +0 -0
  2183. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/litellm/base_message_param.py +0 -0
  2184. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/litellm/messages.py +0 -0
  2185. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/litellm/shorthand.py +0 -0
  2186. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/litellm/string_template.py +0 -0
  2187. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/mistral/base_message_param.py +0 -0
  2188. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/mistral/messages.py +0 -0
  2189. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/mistral/shorthand.py +0 -0
  2190. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/mistral/string_template.py +0 -0
  2191. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/openai/base_message_param.py +0 -0
  2192. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/openai/messages.py +0 -0
  2193. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/openai/shorthand.py +0 -0
  2194. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/hyperdx/openai/string_template.py +0 -0
  2195. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/anthropic/base_message_param.py +0 -0
  2196. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/anthropic/messages.py +0 -0
  2197. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/anthropic/shorthand.py +0 -0
  2198. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/anthropic/string_template.py +0 -0
  2199. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/azure/base_message_param.py +0 -0
  2200. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/azure/messages.py +0 -0
  2201. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/azure/shorthand.py +0 -0
  2202. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/azure/string_template.py +0 -0
  2203. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/bedrock/base_message_param.py +0 -0
  2204. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/bedrock/messages.py +0 -0
  2205. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/bedrock/shorthand.py +0 -0
  2206. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/bedrock/string_template.py +0 -0
  2207. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/cohere/base_message_param.py +0 -0
  2208. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/cohere/messages.py +0 -0
  2209. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/cohere/shorthand.py +0 -0
  2210. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/cohere/string_template.py +0 -0
  2211. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/groq/base_message_param.py +0 -0
  2212. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/groq/messages.py +0 -0
  2213. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/groq/shorthand.py +0 -0
  2214. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/groq/string_template.py +0 -0
  2215. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/litellm/base_message_param.py +0 -0
  2216. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/litellm/messages.py +0 -0
  2217. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/litellm/shorthand.py +0 -0
  2218. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/litellm/string_template.py +0 -0
  2219. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/mistral/base_message_param.py +0 -0
  2220. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/mistral/messages.py +0 -0
  2221. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/mistral/shorthand.py +0 -0
  2222. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/mistral/string_template.py +0 -0
  2223. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/openai/base_message_param.py +0 -0
  2224. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/openai/messages.py +0 -0
  2225. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/openai/shorthand.py +0 -0
  2226. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/langfuse/openai/string_template.py +0 -0
  2227. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/anthropic/base_message_param.py +0 -0
  2228. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/anthropic/messages.py +0 -0
  2229. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/anthropic/shorthand.py +0 -0
  2230. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/anthropic/string_template.py +0 -0
  2231. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/azure/base_message_param.py +0 -0
  2232. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/azure/messages.py +0 -0
  2233. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/azure/shorthand.py +0 -0
  2234. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/azure/string_template.py +0 -0
  2235. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/bedrock/base_message_param.py +0 -0
  2236. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/bedrock/messages.py +0 -0
  2237. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/bedrock/shorthand.py +0 -0
  2238. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/bedrock/string_template.py +0 -0
  2239. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/cohere/base_message_param.py +0 -0
  2240. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/cohere/messages.py +0 -0
  2241. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/cohere/shorthand.py +0 -0
  2242. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/cohere/string_template.py +0 -0
  2243. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/groq/base_message_param.py +0 -0
  2244. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/groq/messages.py +0 -0
  2245. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/groq/shorthand.py +0 -0
  2246. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/groq/string_template.py +0 -0
  2247. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/litellm/base_message_param.py +0 -0
  2248. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/litellm/messages.py +0 -0
  2249. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/litellm/shorthand.py +0 -0
  2250. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/litellm/string_template.py +0 -0
  2251. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/mistral/base_message_param.py +0 -0
  2252. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/mistral/messages.py +0 -0
  2253. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/mistral/shorthand.py +0 -0
  2254. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/mistral/string_template.py +0 -0
  2255. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/openai/base_message_param.py +0 -0
  2256. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/openai/messages.py +0 -0
  2257. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/openai/shorthand.py +0 -0
  2258. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/logfire/openai/string_template.py +0 -0
  2259. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/anthropic/base_message_param.py +0 -0
  2260. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/anthropic/messages.py +0 -0
  2261. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/anthropic/shorthand.py +0 -0
  2262. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/anthropic/string_template.py +0 -0
  2263. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/azure/base_message_param.py +0 -0
  2264. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/azure/messages.py +0 -0
  2265. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/azure/shorthand.py +0 -0
  2266. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/azure/string_template.py +0 -0
  2267. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/bedrock/base_message_param.py +0 -0
  2268. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/bedrock/messages.py +0 -0
  2269. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/bedrock/shorthand.py +0 -0
  2270. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/bedrock/string_template.py +0 -0
  2271. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/cohere/base_message_param.py +0 -0
  2272. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/cohere/messages.py +0 -0
  2273. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/cohere/shorthand.py +0 -0
  2274. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/cohere/string_template.py +0 -0
  2275. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/groq/base_message_param.py +0 -0
  2276. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/groq/messages.py +0 -0
  2277. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/groq/shorthand.py +0 -0
  2278. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/groq/string_template.py +0 -0
  2279. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/litellm/base_message_param.py +0 -0
  2280. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/litellm/messages.py +0 -0
  2281. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/litellm/shorthand.py +0 -0
  2282. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/litellm/string_template.py +0 -0
  2283. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/mistral/base_message_param.py +0 -0
  2284. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/mistral/messages.py +0 -0
  2285. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/mistral/shorthand.py +0 -0
  2286. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/mistral/string_template.py +0 -0
  2287. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/openai/base_message_param.py +0 -0
  2288. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/openai/messages.py +0 -0
  2289. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/openai/shorthand.py +0 -0
  2290. {mirascope-1.18.2 → mirascope-1.18.4}/examples/integrations/otel/openai/string_template.py +0 -0
  2291. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/anthropic/base_message_param.py +0 -0
  2292. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/anthropic/messages.py +0 -0
  2293. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/anthropic/shorthand.py +0 -0
  2294. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/anthropic/string_template.py +0 -0
  2295. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/azure/base_message_param.py +0 -0
  2296. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/azure/messages.py +0 -0
  2297. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/azure/shorthand.py +0 -0
  2298. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/azure/string_template.py +0 -0
  2299. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/bedrock/base_message_param.py +0 -0
  2300. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/bedrock/messages.py +0 -0
  2301. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/bedrock/shorthand.py +0 -0
  2302. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/bedrock/string_template.py +0 -0
  2303. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/cohere/base_message_param.py +0 -0
  2304. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/cohere/messages.py +0 -0
  2305. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/cohere/shorthand.py +0 -0
  2306. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/cohere/string_template.py +0 -0
  2307. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/google/base_message_param.py +0 -0
  2308. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/google/messages.py +0 -0
  2309. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/google/shorthand.py +0 -0
  2310. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/google/string_template.py +0 -0
  2311. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/groq/base_message_param.py +0 -0
  2312. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/groq/messages.py +0 -0
  2313. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/groq/shorthand.py +0 -0
  2314. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/groq/string_template.py +0 -0
  2315. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/litellm/base_message_param.py +0 -0
  2316. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/litellm/messages.py +0 -0
  2317. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/litellm/shorthand.py +0 -0
  2318. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/litellm/string_template.py +0 -0
  2319. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/mistral/base_message_param.py +0 -0
  2320. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/mistral/messages.py +0 -0
  2321. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/mistral/shorthand.py +0 -0
  2322. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/mistral/string_template.py +0 -0
  2323. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/openai/base_message_param.py +0 -0
  2324. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/openai/messages.py +0 -0
  2325. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/openai/shorthand.py +0 -0
  2326. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/basic_usage/openai/string_template.py +0 -0
  2327. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/anthropic/base_message_param.py +0 -0
  2328. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/anthropic/messages.py +0 -0
  2329. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/anthropic/shorthand.py +0 -0
  2330. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/anthropic/string_template.py +0 -0
  2331. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/azure/base_message_param.py +0 -0
  2332. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/azure/messages.py +0 -0
  2333. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/azure/shorthand.py +0 -0
  2334. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/azure/string_template.py +0 -0
  2335. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/bedrock/base_message_param.py +0 -0
  2336. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/bedrock/messages.py +0 -0
  2337. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/bedrock/shorthand.py +0 -0
  2338. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/bedrock/string_template.py +0 -0
  2339. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/cohere/base_message_param.py +0 -0
  2340. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/cohere/messages.py +0 -0
  2341. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/cohere/shorthand.py +0 -0
  2342. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/cohere/string_template.py +0 -0
  2343. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/google/base_message_param.py +0 -0
  2344. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/google/messages.py +0 -0
  2345. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/google/shorthand.py +0 -0
  2346. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/google/string_template.py +0 -0
  2347. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/groq/base_message_param.py +0 -0
  2348. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/groq/messages.py +0 -0
  2349. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/groq/shorthand.py +0 -0
  2350. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/groq/string_template.py +0 -0
  2351. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/litellm/base_message_param.py +0 -0
  2352. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/litellm/messages.py +0 -0
  2353. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/litellm/shorthand.py +0 -0
  2354. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/litellm/string_template.py +0 -0
  2355. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/mistral/base_message_param.py +0 -0
  2356. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/mistral/messages.py +0 -0
  2357. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/mistral/shorthand.py +0 -0
  2358. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/mistral/string_template.py +0 -0
  2359. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/openai/base_message_param.py +0 -0
  2360. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/openai/messages.py +0 -0
  2361. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/openai/shorthand.py +0 -0
  2362. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/decorator/openai/string_template.py +0 -0
  2363. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/anthropic/base_message_param.py +0 -0
  2364. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/anthropic/messages.py +0 -0
  2365. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/anthropic/shorthand.py +0 -0
  2366. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/anthropic/string_template.py +0 -0
  2367. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/azure/base_message_param.py +0 -0
  2368. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/azure/messages.py +0 -0
  2369. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/azure/shorthand.py +0 -0
  2370. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/azure/string_template.py +0 -0
  2371. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/bedrock/base_message_param.py +0 -0
  2372. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/bedrock/messages.py +0 -0
  2373. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/bedrock/shorthand.py +0 -0
  2374. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/bedrock/string_template.py +0 -0
  2375. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/cohere/base_message_param.py +0 -0
  2376. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/cohere/messages.py +0 -0
  2377. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/cohere/shorthand.py +0 -0
  2378. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/cohere/string_template.py +0 -0
  2379. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/google/base_message_param.py +0 -0
  2380. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/google/messages.py +0 -0
  2381. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/google/shorthand.py +0 -0
  2382. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/google/string_template.py +0 -0
  2383. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/groq/base_message_param.py +0 -0
  2384. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/groq/messages.py +0 -0
  2385. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/groq/shorthand.py +0 -0
  2386. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/groq/string_template.py +0 -0
  2387. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/litellm/base_message_param.py +0 -0
  2388. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/litellm/messages.py +0 -0
  2389. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/litellm/shorthand.py +0 -0
  2390. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/litellm/string_template.py +0 -0
  2391. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/mistral/base_message_param.py +0 -0
  2392. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/mistral/messages.py +0 -0
  2393. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/mistral/shorthand.py +0 -0
  2394. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/mistral/string_template.py +0 -0
  2395. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/openai/base_message_param.py +0 -0
  2396. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/openai/messages.py +0 -0
  2397. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/openai/shorthand.py +0 -0
  2398. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/custom_client/dynamic_configuration/openai/string_template.py +0 -0
  2399. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/anthropic/base_message_param.py +0 -0
  2400. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/anthropic/messages.py +0 -0
  2401. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/anthropic/shorthand.py +0 -0
  2402. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/anthropic/string_template.py +0 -0
  2403. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/azure/base_message_param.py +0 -0
  2404. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/azure/messages.py +0 -0
  2405. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/azure/shorthand.py +0 -0
  2406. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/azure/string_template.py +0 -0
  2407. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/bedrock/base_message_param.py +0 -0
  2408. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/bedrock/messages.py +0 -0
  2409. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/bedrock/shorthand.py +0 -0
  2410. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/bedrock/string_template.py +0 -0
  2411. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/cohere/base_message_param.py +0 -0
  2412. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/cohere/messages.py +0 -0
  2413. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/cohere/shorthand.py +0 -0
  2414. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/cohere/string_template.py +0 -0
  2415. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/google/base_message_param.py +0 -0
  2416. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/google/messages.py +0 -0
  2417. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/google/shorthand.py +0 -0
  2418. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/google/string_template.py +0 -0
  2419. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/groq/base_message_param.py +0 -0
  2420. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/groq/messages.py +0 -0
  2421. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/groq/shorthand.py +0 -0
  2422. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/groq/string_template.py +0 -0
  2423. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/litellm/base_message_param.py +0 -0
  2424. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/litellm/messages.py +0 -0
  2425. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/litellm/shorthand.py +0 -0
  2426. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/litellm/string_template.py +0 -0
  2427. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/mistral/base_message_param.py +0 -0
  2428. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/mistral/messages.py +0 -0
  2429. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/mistral/shorthand.py +0 -0
  2430. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/mistral/string_template.py +0 -0
  2431. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/openai/base_message_param.py +0 -0
  2432. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/openai/messages.py +0 -0
  2433. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/openai/shorthand.py +0 -0
  2434. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/parallel/openai/string_template.py +0 -0
  2435. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/anthropic/base_message_param.py +0 -0
  2436. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/anthropic/messages.py +0 -0
  2437. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/anthropic/shorthand.py +0 -0
  2438. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/anthropic/string_template.py +0 -0
  2439. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/azure/base_message_param.py +0 -0
  2440. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/azure/messages.py +0 -0
  2441. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/azure/shorthand.py +0 -0
  2442. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/azure/string_template.py +0 -0
  2443. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/bedrock/base_message_param.py +0 -0
  2444. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/bedrock/messages.py +0 -0
  2445. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/bedrock/shorthand.py +0 -0
  2446. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/bedrock/string_template.py +0 -0
  2447. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/cohere/base_message_param.py +0 -0
  2448. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/cohere/messages.py +0 -0
  2449. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/cohere/shorthand.py +0 -0
  2450. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/cohere/string_template.py +0 -0
  2451. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/google/base_message_param.py +0 -0
  2452. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/google/messages.py +0 -0
  2453. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/google/shorthand.py +0 -0
  2454. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/google/string_template.py +0 -0
  2455. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/groq/base_message_param.py +0 -0
  2456. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/groq/messages.py +0 -0
  2457. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/groq/shorthand.py +0 -0
  2458. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/groq/string_template.py +0 -0
  2459. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/litellm/base_message_param.py +0 -0
  2460. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/litellm/messages.py +0 -0
  2461. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/litellm/shorthand.py +0 -0
  2462. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/litellm/string_template.py +0 -0
  2463. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/mistral/base_message_param.py +0 -0
  2464. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/mistral/messages.py +0 -0
  2465. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/mistral/shorthand.py +0 -0
  2466. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/mistral/string_template.py +0 -0
  2467. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/openai/base_message_param.py +0 -0
  2468. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/openai/messages.py +0 -0
  2469. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/openai/shorthand.py +0 -0
  2470. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/streams/openai/string_template.py +0 -0
  2471. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/anthropic/base_message_param.py +0 -0
  2472. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/anthropic/messages.py +0 -0
  2473. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/anthropic/shorthand.py +0 -0
  2474. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/anthropic/string_template.py +0 -0
  2475. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/azure/base_message_param.py +0 -0
  2476. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/azure/messages.py +0 -0
  2477. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/azure/shorthand.py +0 -0
  2478. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/azure/string_template.py +0 -0
  2479. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/bedrock/base_message_param.py +0 -0
  2480. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/bedrock/messages.py +0 -0
  2481. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/bedrock/shorthand.py +0 -0
  2482. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/bedrock/string_template.py +0 -0
  2483. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/cohere/base_message_param.py +0 -0
  2484. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/cohere/messages.py +0 -0
  2485. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/cohere/shorthand.py +0 -0
  2486. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/cohere/string_template.py +0 -0
  2487. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/google/base_message_param.py +0 -0
  2488. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/google/messages.py +0 -0
  2489. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/google/shorthand.py +0 -0
  2490. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/google/string_template.py +0 -0
  2491. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/groq/base_message_param.py +0 -0
  2492. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/groq/messages.py +0 -0
  2493. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/groq/shorthand.py +0 -0
  2494. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/groq/string_template.py +0 -0
  2495. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/litellm/base_message_param.py +0 -0
  2496. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/litellm/messages.py +0 -0
  2497. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/litellm/shorthand.py +0 -0
  2498. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/litellm/string_template.py +0 -0
  2499. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/mistral/base_message_param.py +0 -0
  2500. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/mistral/messages.py +0 -0
  2501. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/mistral/shorthand.py +0 -0
  2502. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/mistral/string_template.py +0 -0
  2503. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/openai/base_message_param.py +0 -0
  2504. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/openai/messages.py +0 -0
  2505. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/openai/shorthand.py +0 -0
  2506. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/async/tools/openai/string_template.py +0 -0
  2507. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/anthropic/base_message_param.py +0 -0
  2508. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/anthropic/messages.py +0 -0
  2509. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/anthropic/shorthand.py +0 -0
  2510. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/anthropic/string_template.py +0 -0
  2511. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/azure/base_message_param.py +0 -0
  2512. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/azure/messages.py +0 -0
  2513. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/azure/shorthand.py +0 -0
  2514. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/azure/string_template.py +0 -0
  2515. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/bedrock/base_message_param.py +0 -0
  2516. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/bedrock/messages.py +0 -0
  2517. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/bedrock/shorthand.py +0 -0
  2518. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/bedrock/string_template.py +0 -0
  2519. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/cohere/base_message_param.py +0 -0
  2520. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/cohere/messages.py +0 -0
  2521. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/cohere/shorthand.py +0 -0
  2522. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/cohere/string_template.py +0 -0
  2523. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/google/base_message_param.py +0 -0
  2524. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/google/messages.py +0 -0
  2525. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/google/shorthand.py +0 -0
  2526. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/google/string_template.py +0 -0
  2527. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/groq/base_message_param.py +0 -0
  2528. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/groq/messages.py +0 -0
  2529. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/groq/shorthand.py +0 -0
  2530. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/groq/string_template.py +0 -0
  2531. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/litellm/base_message_param.py +0 -0
  2532. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/litellm/messages.py +0 -0
  2533. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/litellm/shorthand.py +0 -0
  2534. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/litellm/string_template.py +0 -0
  2535. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/mistral/base_message_param.py +0 -0
  2536. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/mistral/messages.py +0 -0
  2537. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/mistral/shorthand.py +0 -0
  2538. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/mistral/string_template.py +0 -0
  2539. /mirascope-1.18.2/examples/learn/calls/basic_usage/azure/official_sdk_call.py → /mirascope-1.18.4/examples/learn/calls/basic_usage/official_sdk/azure_sdk.py +0 -0
  2540. /mirascope-1.18.2/examples/learn/calls/basic_usage/cohere/official_sdk_call.py → /mirascope-1.18.4/examples/learn/calls/basic_usage/official_sdk/cohere_sdk.py +0 -0
  2541. /mirascope-1.18.2/examples/learn/calls/basic_usage/groq/official_sdk_call.py → /mirascope-1.18.4/examples/learn/calls/basic_usage/official_sdk/groq_sdk.py +0 -0
  2542. /mirascope-1.18.2/examples/learn/calls/basic_usage/litellm/official_sdk_call.py → /mirascope-1.18.4/examples/learn/calls/basic_usage/official_sdk/litellm_sdk.py +0 -0
  2543. /mirascope-1.18.2/examples/learn/calls/basic_usage/mistral/official_sdk_call.py → /mirascope-1.18.4/examples/learn/calls/basic_usage/official_sdk/mistral_sdk.py +0 -0
  2544. /mirascope-1.18.2/examples/learn/calls/basic_usage/openai/official_sdk_call.py → /mirascope-1.18.4/examples/learn/calls/basic_usage/official_sdk/openai_sdk.py +0 -0
  2545. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/openai/base_message_param.py +0 -0
  2546. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/openai/messages.py +0 -0
  2547. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/openai/shorthand.py +0 -0
  2548. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/openai/string_template.py +0 -0
  2549. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/provider_agnostic/base_message_param.py +0 -0
  2550. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/provider_agnostic/messages.py +0 -0
  2551. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/provider_agnostic/shorthand.py +0 -0
  2552. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/basic_usage/provider_agnostic/string_template.py +0 -0
  2553. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/anthropic/base_message_param.py +0 -0
  2554. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/anthropic/messages.py +0 -0
  2555. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/anthropic/shorthand.py +0 -0
  2556. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/anthropic/string_template.py +0 -0
  2557. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/azure/base_message_param.py +0 -0
  2558. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/azure/messages.py +0 -0
  2559. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/azure/shorthand.py +0 -0
  2560. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/azure/string_template.py +0 -0
  2561. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/bedrock/base_message_param.py +0 -0
  2562. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/bedrock/messages.py +0 -0
  2563. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/bedrock/shorthand.py +0 -0
  2564. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/bedrock/string_template.py +0 -0
  2565. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/cohere/base_message_param.py +0 -0
  2566. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/cohere/messages.py +0 -0
  2567. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/cohere/shorthand.py +0 -0
  2568. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/cohere/string_template.py +0 -0
  2569. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/google/base_message_param.py +0 -0
  2570. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/google/messages.py +0 -0
  2571. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/google/shorthand.py +0 -0
  2572. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/google/string_template.py +0 -0
  2573. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/groq/base_message_param.py +0 -0
  2574. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/groq/messages.py +0 -0
  2575. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/groq/shorthand.py +0 -0
  2576. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/groq/string_template.py +0 -0
  2577. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/litellm/base_message_param.py +0 -0
  2578. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/litellm/messages.py +0 -0
  2579. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/litellm/shorthand.py +0 -0
  2580. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/litellm/string_template.py +0 -0
  2581. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/mistral/base_message_param.py +0 -0
  2582. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/mistral/messages.py +0 -0
  2583. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/mistral/shorthand.py +0 -0
  2584. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/mistral/string_template.py +0 -0
  2585. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/openai/base_message_param.py +0 -0
  2586. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/openai/messages.py +0 -0
  2587. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/openai/shorthand.py +0 -0
  2588. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/call_params/openai/string_template.py +0 -0
  2589. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/anthropic/base_message_param.py +0 -0
  2590. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/anthropic/messages.py +0 -0
  2591. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/anthropic/shorthand.py +0 -0
  2592. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/anthropic/string_template.py +0 -0
  2593. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/azure/base_message_param.py +0 -0
  2594. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/azure/messages.py +0 -0
  2595. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/azure/shorthand.py +0 -0
  2596. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/azure/string_template.py +0 -0
  2597. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/bedrock/base_message_param.py +0 -0
  2598. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/bedrock/messages.py +0 -0
  2599. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/bedrock/shorthand.py +0 -0
  2600. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/bedrock/string_template.py +0 -0
  2601. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/cohere/base_message_param.py +0 -0
  2602. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/cohere/messages.py +0 -0
  2603. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/cohere/shorthand.py +0 -0
  2604. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/cohere/string_template.py +0 -0
  2605. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/google/base_message_param.py +0 -0
  2606. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/google/messages.py +0 -0
  2607. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/google/shorthand.py +0 -0
  2608. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/google/string_template.py +0 -0
  2609. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/groq/base_message_param.py +0 -0
  2610. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/groq/messages.py +0 -0
  2611. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/groq/shorthand.py +0 -0
  2612. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/groq/string_template.py +0 -0
  2613. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/litellm/base_message_param.py +0 -0
  2614. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/litellm/messages.py +0 -0
  2615. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/litellm/shorthand.py +0 -0
  2616. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/litellm/string_template.py +0 -0
  2617. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/mistral/base_message_param.py +0 -0
  2618. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/mistral/messages.py +0 -0
  2619. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/mistral/shorthand.py +0 -0
  2620. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/mistral/string_template.py +0 -0
  2621. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/openai/base_message_param.py +0 -0
  2622. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/openai/messages.py +0 -0
  2623. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/openai/shorthand.py +0 -0
  2624. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/decorator/openai/string_template.py +0 -0
  2625. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/base_message_param.py +0 -0
  2626. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/messages.py +0 -0
  2627. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/shorthand.py +0 -0
  2628. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/anthropic/string_template.py +0 -0
  2629. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/azure/base_message_param.py +0 -0
  2630. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/azure/messages.py +0 -0
  2631. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/azure/shorthand.py +0 -0
  2632. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/azure/string_template.py +0 -0
  2633. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/base_message_param.py +0 -0
  2634. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/messages.py +0 -0
  2635. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/shorthand.py +0 -0
  2636. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/bedrock/string_template.py +0 -0
  2637. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/cohere/base_message_param.py +0 -0
  2638. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/cohere/messages.py +0 -0
  2639. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/cohere/shorthand.py +0 -0
  2640. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/cohere/string_template.py +0 -0
  2641. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/google/base_message_param.py +0 -0
  2642. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/google/messages.py +0 -0
  2643. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/google/shorthand.py +0 -0
  2644. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/google/string_template.py +0 -0
  2645. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/groq/base_message_param.py +0 -0
  2646. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/groq/messages.py +0 -0
  2647. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/groq/shorthand.py +0 -0
  2648. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/groq/string_template.py +0 -0
  2649. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/litellm/base_message_param.py +0 -0
  2650. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/litellm/messages.py +0 -0
  2651. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/litellm/shorthand.py +0 -0
  2652. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/litellm/string_template.py +0 -0
  2653. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/mistral/base_message_param.py +0 -0
  2654. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/mistral/messages.py +0 -0
  2655. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/mistral/shorthand.py +0 -0
  2656. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/mistral/string_template.py +0 -0
  2657. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/openai/base_message_param.py +0 -0
  2658. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/openai/messages.py +0 -0
  2659. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/openai/shorthand.py +0 -0
  2660. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_client/dynamic_configuration/openai/string_template.py +0 -0
  2661. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/anthropic_messages.py +0 -0
  2662. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/azure_messages.py +0 -0
  2663. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/bedrock_messages.py +0 -0
  2664. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/cohere_messages.py +0 -0
  2665. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/gemini_messages.py +0 -0
  2666. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/google_messages.py +0 -0
  2667. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/groq_messages.py +0 -0
  2668. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/litellm_messages.py +0 -0
  2669. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/mistral_messages.py +0 -0
  2670. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/openai_messages.py +0 -0
  2671. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/custom_messages/vertex_messages.py +0 -0
  2672. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/anthropic/base_message_param.py +0 -0
  2673. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/anthropic/messages.py +0 -0
  2674. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/anthropic/shorthand.py +0 -0
  2675. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/anthropic/string_template.py +0 -0
  2676. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/azure/base_message_param.py +0 -0
  2677. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/azure/messages.py +0 -0
  2678. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/azure/shorthand.py +0 -0
  2679. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/azure/string_template.py +0 -0
  2680. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/bedrock/base_message_param.py +0 -0
  2681. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/bedrock/messages.py +0 -0
  2682. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/bedrock/shorthand.py +0 -0
  2683. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/bedrock/string_template.py +0 -0
  2684. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/cohere/base_message_param.py +0 -0
  2685. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/cohere/messages.py +0 -0
  2686. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/cohere/shorthand.py +0 -0
  2687. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/cohere/string_template.py +0 -0
  2688. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/google/base_message_param.py +0 -0
  2689. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/google/messages.py +0 -0
  2690. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/google/shorthand.py +0 -0
  2691. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/google/string_template.py +0 -0
  2692. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/groq/base_message_param.py +0 -0
  2693. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/groq/messages.py +0 -0
  2694. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/groq/shorthand.py +0 -0
  2695. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/groq/string_template.py +0 -0
  2696. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/litellm/base_message_param.py +0 -0
  2697. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/litellm/messages.py +0 -0
  2698. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/litellm/shorthand.py +0 -0
  2699. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/litellm/string_template.py +0 -0
  2700. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/mistral/base_message_param.py +0 -0
  2701. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/mistral/messages.py +0 -0
  2702. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/mistral/shorthand.py +0 -0
  2703. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/mistral/string_template.py +0 -0
  2704. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/openai/base_message_param.py +0 -0
  2705. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/openai/messages.py +0 -0
  2706. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/openai/shorthand.py +0 -0
  2707. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/dynamic_configuration/openai/string_template.py +0 -0
  2708. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/anthropic/base_message_param.py +0 -0
  2709. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/anthropic/messages.py +0 -0
  2710. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/anthropic/shorthand.py +0 -0
  2711. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/anthropic/string_template.py +0 -0
  2712. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/azure/base_message_param.py +0 -0
  2713. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/azure/messages.py +0 -0
  2714. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/azure/shorthand.py +0 -0
  2715. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/azure/string_template.py +0 -0
  2716. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/bedrock/base_message_param.py +0 -0
  2717. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/bedrock/messages.py +0 -0
  2718. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/bedrock/shorthand.py +0 -0
  2719. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/bedrock/string_template.py +0 -0
  2720. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/cohere/base_message_param.py +0 -0
  2721. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/cohere/messages.py +0 -0
  2722. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/cohere/shorthand.py +0 -0
  2723. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/cohere/string_template.py +0 -0
  2724. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/google/base_message_param.py +0 -0
  2725. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/google/messages.py +0 -0
  2726. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/google/shorthand.py +0 -0
  2727. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/google/string_template.py +0 -0
  2728. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/groq/base_message_param.py +0 -0
  2729. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/groq/messages.py +0 -0
  2730. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/groq/shorthand.py +0 -0
  2731. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/groq/string_template.py +0 -0
  2732. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/litellm/base_message_param.py +0 -0
  2733. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/litellm/messages.py +0 -0
  2734. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/litellm/shorthand.py +0 -0
  2735. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/litellm/string_template.py +0 -0
  2736. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/mistral/base_message_param.py +0 -0
  2737. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/mistral/messages.py +0 -0
  2738. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/mistral/shorthand.py +0 -0
  2739. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/mistral/string_template.py +0 -0
  2740. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/openai/base_message_param.py +0 -0
  2741. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/openai/messages.py +0 -0
  2742. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/openai/shorthand.py +0 -0
  2743. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/error_handling/openai/string_template.py +0 -0
  2744. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/anthropic/base_message_param.py +0 -0
  2745. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/anthropic/messages.py +0 -0
  2746. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/anthropic/shorthand.py +0 -0
  2747. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/anthropic/string_template.py +0 -0
  2748. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/azure/base_message_param.py +0 -0
  2749. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/azure/messages.py +0 -0
  2750. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/azure/shorthand.py +0 -0
  2751. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/azure/string_template.py +0 -0
  2752. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/bedrock/base_message_param.py +0 -0
  2753. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/bedrock/messages.py +0 -0
  2754. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/bedrock/shorthand.py +0 -0
  2755. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/bedrock/string_template.py +0 -0
  2756. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/cohere/base_message_param.py +0 -0
  2757. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/cohere/messages.py +0 -0
  2758. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/cohere/shorthand.py +0 -0
  2759. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/cohere/string_template.py +0 -0
  2760. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/google/base_message_param.py +0 -0
  2761. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/google/messages.py +0 -0
  2762. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/google/shorthand.py +0 -0
  2763. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/google/string_template.py +0 -0
  2764. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/groq/base_message_param.py +0 -0
  2765. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/groq/messages.py +0 -0
  2766. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/groq/shorthand.py +0 -0
  2767. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/groq/string_template.py +0 -0
  2768. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/litellm/base_message_param.py +0 -0
  2769. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/litellm/messages.py +0 -0
  2770. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/litellm/shorthand.py +0 -0
  2771. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/litellm/string_template.py +0 -0
  2772. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/mistral/base_message_param.py +0 -0
  2773. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/mistral/messages.py +0 -0
  2774. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/mistral/shorthand.py +0 -0
  2775. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/mistral/string_template.py +0 -0
  2776. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/openai/base_message_param.py +0 -0
  2777. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/openai/messages.py +0 -0
  2778. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/openai/shorthand.py +0 -0
  2779. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/multi_modal_outputs/openai/string_template.py +0 -0
  2780. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/anthropic/base_message_param.py +0 -0
  2781. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/anthropic/messages.py +0 -0
  2782. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/anthropic/shorthand.py +0 -0
  2783. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/anthropic/string_template.py +0 -0
  2784. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/azure/base_message_param.py +0 -0
  2785. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/azure/messages.py +0 -0
  2786. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/azure/shorthand.py +0 -0
  2787. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/azure/string_template.py +0 -0
  2788. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/bedrock/base_message_param.py +0 -0
  2789. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/bedrock/messages.py +0 -0
  2790. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/bedrock/shorthand.py +0 -0
  2791. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/bedrock/string_template.py +0 -0
  2792. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/cohere/base_message_param.py +0 -0
  2793. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/cohere/messages.py +0 -0
  2794. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/cohere/shorthand.py +0 -0
  2795. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/cohere/string_template.py +0 -0
  2796. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/google/base_message_param.py +0 -0
  2797. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/google/messages.py +0 -0
  2798. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/google/shorthand.py +0 -0
  2799. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/google/string_template.py +0 -0
  2800. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/groq/base_message_param.py +0 -0
  2801. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/groq/messages.py +0 -0
  2802. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/groq/shorthand.py +0 -0
  2803. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/groq/string_template.py +0 -0
  2804. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/litellm/base_message_param.py +0 -0
  2805. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/litellm/messages.py +0 -0
  2806. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/litellm/shorthand.py +0 -0
  2807. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/litellm/string_template.py +0 -0
  2808. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/mistral/base_message_param.py +0 -0
  2809. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/mistral/messages.py +0 -0
  2810. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/mistral/shorthand.py +0 -0
  2811. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/mistral/string_template.py +0 -0
  2812. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/openai/base_message_param.py +0 -0
  2813. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/openai/messages.py +0 -0
  2814. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/openai/shorthand.py +0 -0
  2815. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/calls/provider_agnostic/openai/string_template.py +0 -0
  2816. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/advanced_techniques/conditional_chaining.py +0 -0
  2817. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/advanced_techniques/iterative_chaining.py +0 -0
  2818. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/advanced_techniques/parallel_chaining.py +0 -0
  2819. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/anthropic/base_message_param.py +0 -0
  2820. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/anthropic/messages.py +0 -0
  2821. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/anthropic/shorthand.py +0 -0
  2822. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/anthropic/string_template.py +0 -0
  2823. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/azure/base_message_param.py +0 -0
  2824. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/azure/messages.py +0 -0
  2825. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/azure/shorthand.py +0 -0
  2826. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/azure/string_template.py +0 -0
  2827. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/bedrock/base_message_param.py +0 -0
  2828. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/bedrock/messages.py +0 -0
  2829. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/bedrock/shorthand.py +0 -0
  2830. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/bedrock/string_template.py +0 -0
  2831. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/cohere/base_message_param.py +0 -0
  2832. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/cohere/messages.py +0 -0
  2833. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/cohere/shorthand.py +0 -0
  2834. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/cohere/string_template.py +0 -0
  2835. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/google/base_message_param.py +0 -0
  2836. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/google/messages.py +0 -0
  2837. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/google/shorthand.py +0 -0
  2838. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/google/string_template.py +0 -0
  2839. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/groq/base_message_param.py +0 -0
  2840. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/groq/messages.py +0 -0
  2841. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/groq/shorthand.py +0 -0
  2842. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/groq/string_template.py +0 -0
  2843. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/litellm/base_message_param.py +0 -0
  2844. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/litellm/messages.py +0 -0
  2845. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/litellm/shorthand.py +0 -0
  2846. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/litellm/string_template.py +0 -0
  2847. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/mistral/base_message_param.py +0 -0
  2848. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/mistral/messages.py +0 -0
  2849. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/mistral/shorthand.py +0 -0
  2850. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/mistral/string_template.py +0 -0
  2851. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/openai/base_message_param.py +0 -0
  2852. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/openai/messages.py +0 -0
  2853. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/openai/shorthand.py +0 -0
  2854. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/computed_fields/openai/string_template.py +0 -0
  2855. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/anthropic/base_message_param.py +0 -0
  2856. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/anthropic/messages.py +0 -0
  2857. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/anthropic/shorthand.py +0 -0
  2858. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/anthropic/string_template.py +0 -0
  2859. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/azure/base_message_param.py +0 -0
  2860. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/azure/messages.py +0 -0
  2861. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/azure/shorthand.py +0 -0
  2862. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/azure/string_template.py +0 -0
  2863. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/bedrock/base_message_param.py +0 -0
  2864. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/bedrock/messages.py +0 -0
  2865. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/bedrock/shorthand.py +0 -0
  2866. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/bedrock/string_template.py +0 -0
  2867. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/cohere/base_message_param.py +0 -0
  2868. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/cohere/messages.py +0 -0
  2869. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/cohere/shorthand.py +0 -0
  2870. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/cohere/string_template.py +0 -0
  2871. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/google/base_message_param.py +0 -0
  2872. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/google/messages.py +0 -0
  2873. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/google/shorthand.py +0 -0
  2874. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/google/string_template.py +0 -0
  2875. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/groq/base_message_param.py +0 -0
  2876. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/groq/messages.py +0 -0
  2877. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/groq/shorthand.py +0 -0
  2878. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/groq/string_template.py +0 -0
  2879. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/litellm/base_message_param.py +0 -0
  2880. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/litellm/messages.py +0 -0
  2881. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/litellm/shorthand.py +0 -0
  2882. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/litellm/string_template.py +0 -0
  2883. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/mistral/base_message_param.py +0 -0
  2884. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/mistral/messages.py +0 -0
  2885. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/mistral/shorthand.py +0 -0
  2886. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/mistral/string_template.py +0 -0
  2887. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/openai/base_message_param.py +0 -0
  2888. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/openai/messages.py +0 -0
  2889. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/openai/shorthand.py +0 -0
  2890. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/function_chaining/openai/string_template.py +0 -0
  2891. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/anthropic/base_message_param.py +0 -0
  2892. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/anthropic/messages.py +0 -0
  2893. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/anthropic/shorthand.py +0 -0
  2894. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/anthropic/string_template.py +0 -0
  2895. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/azure/base_message_param.py +0 -0
  2896. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/azure/messages.py +0 -0
  2897. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/azure/shorthand.py +0 -0
  2898. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/azure/string_template.py +0 -0
  2899. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/bedrock/base_message_param.py +0 -0
  2900. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/bedrock/messages.py +0 -0
  2901. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/bedrock/shorthand.py +0 -0
  2902. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/bedrock/string_template.py +0 -0
  2903. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/cohere/base_message_param.py +0 -0
  2904. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/cohere/messages.py +0 -0
  2905. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/cohere/shorthand.py +0 -0
  2906. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/cohere/string_template.py +0 -0
  2907. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/google/base_message_param.py +0 -0
  2908. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/google/messages.py +0 -0
  2909. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/google/shorthand.py +0 -0
  2910. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/google/string_template.py +0 -0
  2911. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/groq/base_message_param.py +0 -0
  2912. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/groq/messages.py +0 -0
  2913. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/groq/shorthand.py +0 -0
  2914. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/groq/string_template.py +0 -0
  2915. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/litellm/base_message_param.py +0 -0
  2916. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/litellm/messages.py +0 -0
  2917. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/litellm/shorthand.py +0 -0
  2918. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/litellm/string_template.py +0 -0
  2919. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/mistral/base_message_param.py +0 -0
  2920. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/mistral/messages.py +0 -0
  2921. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/mistral/shorthand.py +0 -0
  2922. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/mistral/string_template.py +0 -0
  2923. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/openai/base_message_param.py +0 -0
  2924. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/openai/messages.py +0 -0
  2925. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/openai/shorthand.py +0 -0
  2926. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/chaining/nested_chains/openai/string_template.py +0 -0
  2927. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/evals/hardcoded/exact_match.py +0 -0
  2928. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/evals/hardcoded/recall_and_precision.py +0 -0
  2929. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/evals/hardcoded/regex.py +0 -0
  2930. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/local_models/ollama.py +0 -0
  2931. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/local_models/vllm.py +0 -0
  2932. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/mcp/books.txt +0 -0
  2933. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/mcp/client.py +0 -0
  2934. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/mcp/server.py +0 -0
  2935. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/mcp/server_decorators.py +0 -0
  2936. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/middleware/with_saving.py +0 -0
  2937. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/anthropic/caching/tools.py +0 -0
  2938. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/openai/realtime/audio_input_output_manually.py +0 -0
  2939. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output.py +0 -0
  2940. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output_manually.py +0 -0
  2941. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/openai/realtime/audio_stream_input_output_tools.py +0 -0
  2942. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/openai/realtime/text_input_output.py +0 -0
  2943. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/openai/realtime/text_input_output_dynamic_tools.py +0 -0
  2944. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/openai/realtime/text_input_output_tools.py +0 -0
  2945. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/openai/structured_outputs/response_model.py +0 -0
  2946. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/provider_specific_features/openai/structured_outputs/tools.py +0 -0
  2947. /mirascope-1.18.2/examples/learn/response_models/basic_usage/azure/official_sdk.py → /mirascope-1.18.4/examples/learn/response_models/basic_usage/official_sdk/azure_sdk.py +0 -0
  2948. /mirascope-1.18.2/examples/learn/response_models/basic_usage/cohere/official_sdk.py → /mirascope-1.18.4/examples/learn/response_models/basic_usage/official_sdk/cohere_sdk.py +0 -0
  2949. /mirascope-1.18.2/examples/learn/response_models/basic_usage/groq/official_sdk.py → /mirascope-1.18.4/examples/learn/response_models/basic_usage/official_sdk/groq_sdk.py +0 -0
  2950. /mirascope-1.18.2/examples/learn/response_models/basic_usage/litellm/official_sdk.py → /mirascope-1.18.4/examples/learn/response_models/basic_usage/official_sdk/litellm_sdk.py +0 -0
  2951. /mirascope-1.18.2/examples/learn/response_models/basic_usage/mistral/official_sdk.py → /mirascope-1.18.4/examples/learn/response_models/basic_usage/official_sdk/mistral_sdk.py +0 -0
  2952. /mirascope-1.18.2/examples/learn/response_models/basic_usage/openai/official_sdk.py → /mirascope-1.18.4/examples/learn/response_models/basic_usage/official_sdk/openai_sdk.py +0 -0
  2953. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/anthropic/base_message_param.py +0 -0
  2954. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/anthropic/messages.py +0 -0
  2955. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/anthropic/shorthand.py +0 -0
  2956. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/anthropic/string_template.py +0 -0
  2957. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/azure/base_message_param.py +0 -0
  2958. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/azure/messages.py +0 -0
  2959. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/azure/shorthand.py +0 -0
  2960. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/azure/string_template.py +0 -0
  2961. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/bedrock/base_message_param.py +0 -0
  2962. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/bedrock/messages.py +0 -0
  2963. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/bedrock/shorthand.py +0 -0
  2964. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/bedrock/string_template.py +0 -0
  2965. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/cohere/base_message_param.py +0 -0
  2966. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/cohere/messages.py +0 -0
  2967. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/cohere/shorthand.py +0 -0
  2968. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/cohere/string_template.py +0 -0
  2969. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/google/base_message_param.py +0 -0
  2970. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/google/messages.py +0 -0
  2971. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/google/shorthand.py +0 -0
  2972. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/google/string_template.py +0 -0
  2973. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/groq/base_message_param.py +0 -0
  2974. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/groq/messages.py +0 -0
  2975. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/groq/shorthand.py +0 -0
  2976. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/groq/string_template.py +0 -0
  2977. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/litellm/base_message_param.py +0 -0
  2978. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/litellm/messages.py +0 -0
  2979. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/litellm/shorthand.py +0 -0
  2980. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/litellm/string_template.py +0 -0
  2981. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/mistral/base_message_param.py +0 -0
  2982. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/mistral/messages.py +0 -0
  2983. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/mistral/shorthand.py +0 -0
  2984. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/mistral/string_template.py +0 -0
  2985. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/openai/base_message_param.py +0 -0
  2986. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/openai/messages.py +0 -0
  2987. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/openai/shorthand.py +0 -0
  2988. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/calls/openai/string_template.py +0 -0
  2989. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/anthropic/base_message_param.py +0 -0
  2990. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/anthropic/messages.py +0 -0
  2991. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/anthropic/shorthand.py +0 -0
  2992. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/anthropic/string_template.py +0 -0
  2993. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/azure/base_message_param.py +0 -0
  2994. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/azure/messages.py +0 -0
  2995. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/azure/shorthand.py +0 -0
  2996. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/azure/string_template.py +0 -0
  2997. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/bedrock/base_message_param.py +0 -0
  2998. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/bedrock/messages.py +0 -0
  2999. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/bedrock/shorthand.py +0 -0
  3000. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/bedrock/string_template.py +0 -0
  3001. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/cohere/base_message_param.py +0 -0
  3002. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/cohere/messages.py +0 -0
  3003. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/cohere/shorthand.py +0 -0
  3004. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/cohere/string_template.py +0 -0
  3005. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/google/base_message_param.py +0 -0
  3006. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/google/messages.py +0 -0
  3007. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/google/shorthand.py +0 -0
  3008. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/google/string_template.py +0 -0
  3009. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/groq/base_message_param.py +0 -0
  3010. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/groq/messages.py +0 -0
  3011. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/groq/shorthand.py +0 -0
  3012. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/groq/string_template.py +0 -0
  3013. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/litellm/base_message_param.py +0 -0
  3014. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/litellm/messages.py +0 -0
  3015. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/litellm/shorthand.py +0 -0
  3016. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/litellm/string_template.py +0 -0
  3017. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/mistral/base_message_param.py +0 -0
  3018. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/mistral/messages.py +0 -0
  3019. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/mistral/shorthand.py +0 -0
  3020. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/mistral/string_template.py +0 -0
  3021. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/openai/base_message_param.py +0 -0
  3022. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/openai/messages.py +0 -0
  3023. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/openai/shorthand.py +0 -0
  3024. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/error_reinsertion/openai/string_template.py +0 -0
  3025. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/fallback/base_message_param.py +0 -0
  3026. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/fallback/messages.py +0 -0
  3027. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/fallback/shorthand.py +0 -0
  3028. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/fallback/string_template.py +0 -0
  3029. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/fallback_retries/base_message_param.py +0 -0
  3030. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/fallback_retries/messages.py +0 -0
  3031. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/fallback_retries/shorthand.py +0 -0
  3032. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/fallback_retries/string_template.py +0 -0
  3033. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/anthropic/base_message_param.py +0 -0
  3034. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/anthropic/messages.py +0 -0
  3035. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/anthropic/shorthand.py +0 -0
  3036. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/anthropic/string_template.py +0 -0
  3037. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/azure/base_message_param.py +0 -0
  3038. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/azure/messages.py +0 -0
  3039. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/azure/shorthand.py +0 -0
  3040. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/azure/string_template.py +0 -0
  3041. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/bedrock/base_message_param.py +0 -0
  3042. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/bedrock/messages.py +0 -0
  3043. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/bedrock/shorthand.py +0 -0
  3044. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/bedrock/string_template.py +0 -0
  3045. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/cohere/base_message_param.py +0 -0
  3046. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/cohere/messages.py +0 -0
  3047. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/cohere/shorthand.py +0 -0
  3048. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/cohere/string_template.py +0 -0
  3049. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/google/base_message_param.py +0 -0
  3050. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/google/messages.py +0 -0
  3051. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/google/shorthand.py +0 -0
  3052. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/google/string_template.py +0 -0
  3053. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/groq/base_message_param.py +0 -0
  3054. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/groq/messages.py +0 -0
  3055. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/groq/shorthand.py +0 -0
  3056. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/groq/string_template.py +0 -0
  3057. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/litellm/base_message_param.py +0 -0
  3058. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/litellm/messages.py +0 -0
  3059. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/litellm/shorthand.py +0 -0
  3060. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/litellm/string_template.py +0 -0
  3061. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/mistral/base_message_param.py +0 -0
  3062. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/mistral/messages.py +0 -0
  3063. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/mistral/shorthand.py +0 -0
  3064. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/mistral/string_template.py +0 -0
  3065. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/openai/base_message_param.py +0 -0
  3066. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/openai/messages.py +0 -0
  3067. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/openai/shorthand.py +0 -0
  3068. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/streams/openai/string_template.py +0 -0
  3069. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/anthropic/base_message_param.py +0 -0
  3070. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/anthropic/messages.py +0 -0
  3071. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/anthropic/shorthand.py +0 -0
  3072. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/anthropic/string_template.py +0 -0
  3073. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/azure/base_message_param.py +0 -0
  3074. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/azure/messages.py +0 -0
  3075. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/azure/shorthand.py +0 -0
  3076. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/azure/string_template.py +0 -0
  3077. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/bedrock/base_message_param.py +0 -0
  3078. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/bedrock/messages.py +0 -0
  3079. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/bedrock/shorthand.py +0 -0
  3080. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/bedrock/string_template.py +0 -0
  3081. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/cohere/base_message_param.py +0 -0
  3082. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/cohere/messages.py +0 -0
  3083. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/cohere/shorthand.py +0 -0
  3084. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/cohere/string_template.py +0 -0
  3085. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/google/base_message_param.py +0 -0
  3086. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/google/messages.py +0 -0
  3087. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/google/shorthand.py +0 -0
  3088. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/google/string_template.py +0 -0
  3089. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/groq/base_message_param.py +0 -0
  3090. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/groq/messages.py +0 -0
  3091. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/groq/shorthand.py +0 -0
  3092. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/groq/string_template.py +0 -0
  3093. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/litellm/base_message_param.py +0 -0
  3094. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/litellm/messages.py +0 -0
  3095. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/litellm/shorthand.py +0 -0
  3096. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/litellm/string_template.py +0 -0
  3097. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/mistral/base_message_param.py +0 -0
  3098. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/mistral/messages.py +0 -0
  3099. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/mistral/shorthand.py +0 -0
  3100. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/mistral/string_template.py +0 -0
  3101. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/openai/base_message_param.py +0 -0
  3102. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/openai/messages.py +0 -0
  3103. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/openai/shorthand.py +0 -0
  3104. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/retries/tools/openai/string_template.py +0 -0
  3105. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/anthropic/base_message_param.py +0 -0
  3106. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/anthropic/messages.py +0 -0
  3107. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/anthropic/shorthand.py +0 -0
  3108. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/anthropic/string_template.py +0 -0
  3109. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/azure/base_message_param.py +0 -0
  3110. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/azure/messages.py +0 -0
  3111. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/azure/shorthand.py +0 -0
  3112. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/azure/string_template.py +0 -0
  3113. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/bedrock/base_message_param.py +0 -0
  3114. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/bedrock/messages.py +0 -0
  3115. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/bedrock/shorthand.py +0 -0
  3116. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/bedrock/string_template.py +0 -0
  3117. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/cohere/base_message_param.py +0 -0
  3118. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/cohere/messages.py +0 -0
  3119. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/cohere/shorthand.py +0 -0
  3120. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/cohere/string_template.py +0 -0
  3121. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/google/base_message_param.py +0 -0
  3122. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/google/messages.py +0 -0
  3123. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/google/shorthand.py +0 -0
  3124. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/google/string_template.py +0 -0
  3125. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/groq/base_message_param.py +0 -0
  3126. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/groq/messages.py +0 -0
  3127. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/groq/shorthand.py +0 -0
  3128. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/groq/string_template.py +0 -0
  3129. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/litellm/base_message_param.py +0 -0
  3130. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/litellm/messages.py +0 -0
  3131. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/litellm/shorthand.py +0 -0
  3132. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/litellm/string_template.py +0 -0
  3133. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/mistral/base_message_param.py +0 -0
  3134. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/mistral/messages.py +0 -0
  3135. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/mistral/shorthand.py +0 -0
  3136. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/mistral/string_template.py +0 -0
  3137. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/openai/base_message_param.py +0 -0
  3138. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/openai/messages.py +0 -0
  3139. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/openai/shorthand.py +0 -0
  3140. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/basic_usage/openai/string_template.py +0 -0
  3141. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/anthropic/base_message_param.py +0 -0
  3142. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/anthropic/messages.py +0 -0
  3143. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/anthropic/shorthand.py +0 -0
  3144. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/anthropic/string_template.py +0 -0
  3145. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/azure/base_message_param.py +0 -0
  3146. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/azure/messages.py +0 -0
  3147. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/azure/shorthand.py +0 -0
  3148. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/azure/string_template.py +0 -0
  3149. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/bedrock/base_message_param.py +0 -0
  3150. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/bedrock/messages.py +0 -0
  3151. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/bedrock/shorthand.py +0 -0
  3152. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/bedrock/string_template.py +0 -0
  3153. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/cohere/base_message_param.py +0 -0
  3154. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/cohere/messages.py +0 -0
  3155. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/cohere/shorthand.py +0 -0
  3156. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/cohere/string_template.py +0 -0
  3157. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/google/base_message_param.py +0 -0
  3158. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/google/messages.py +0 -0
  3159. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/google/shorthand.py +0 -0
  3160. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/google/string_template.py +0 -0
  3161. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/groq/base_message_param.py +0 -0
  3162. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/groq/messages.py +0 -0
  3163. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/groq/shorthand.py +0 -0
  3164. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/groq/string_template.py +0 -0
  3165. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/litellm/base_message_param.py +0 -0
  3166. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/litellm/messages.py +0 -0
  3167. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/litellm/shorthand.py +0 -0
  3168. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/litellm/string_template.py +0 -0
  3169. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/mistral/base_message_param.py +0 -0
  3170. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/mistral/messages.py +0 -0
  3171. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/mistral/shorthand.py +0 -0
  3172. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/mistral/string_template.py +0 -0
  3173. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/openai/base_message_param.py +0 -0
  3174. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/openai/messages.py +0 -0
  3175. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/openai/shorthand.py +0 -0
  3176. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/error_handling/openai/string_template.py +0 -0
  3177. {mirascope-1.18.2/examples/learn/response_models/few_shot_examples/google → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/anthropic}/base_message_param.py +0 -0
  3178. {mirascope-1.18.2/examples/learn/prompts/multi_modal/document → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/anthropic}/messages.py +0 -0
  3179. {mirascope-1.18.2/examples/learn/prompts/multi_modal/document → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/anthropic}/shorthand.py +0 -0
  3180. {mirascope-1.18.2/examples/learn/response_models/few_shot_examples/google → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/anthropic}/string_template.py +0 -0
  3181. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/anthropic → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/azure}/base_message_param.py +0 -0
  3182. {mirascope-1.18.2/examples/learn/response_models/few_shot_examples/google → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/azure}/messages.py +0 -0
  3183. {mirascope-1.18.2/examples/learn/response_models/few_shot_examples/google → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/azure}/shorthand.py +0 -0
  3184. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/anthropic → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/azure}/string_template.py +0 -0
  3185. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/azure → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/bedrock}/base_message_param.py +0 -0
  3186. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/anthropic → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/bedrock}/messages.py +0 -0
  3187. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/anthropic → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/bedrock}/shorthand.py +0 -0
  3188. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/azure → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/bedrock}/string_template.py +0 -0
  3189. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/bedrock → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/cohere}/base_message_param.py +0 -0
  3190. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/azure → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/cohere}/messages.py +0 -0
  3191. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/azure → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/cohere}/shorthand.py +0 -0
  3192. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/bedrock → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/cohere}/string_template.py +0 -0
  3193. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/cohere → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/google}/base_message_param.py +0 -0
  3194. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/bedrock → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/google}/messages.py +0 -0
  3195. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/bedrock → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/google}/shorthand.py +0 -0
  3196. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/cohere → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/google}/string_template.py +0 -0
  3197. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/google/wave}/base_message_param.py +0 -0
  3198. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/cohere → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/google/wave}/messages.py +0 -0
  3199. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/cohere → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/google/wave}/shorthand.py +0 -0
  3200. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/google/wave}/string_template.py +0 -0
  3201. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq}/base_message_param.py +0 -0
  3202. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq}/messages.py +0 -0
  3203. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq/pydub}/base_message_param.py +0 -0
  3204. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq/pydub}/messages.py +0 -0
  3205. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq/pydub}/shorthand.py +0 -0
  3206. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq/pydub}/string_template.py +0 -0
  3207. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/google/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq}/shorthand.py +0 -0
  3208. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq}/string_template.py +0 -0
  3209. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq/wave}/base_message_param.py +0 -0
  3210. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq/wave}/messages.py +0 -0
  3211. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq/wave}/shorthand.py +0 -0
  3212. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/groq/wave}/string_template.py +0 -0
  3213. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm}/base_message_param.py +0 -0
  3214. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm}/messages.py +0 -0
  3215. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm/pydub}/base_message_param.py +0 -0
  3216. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm/pydub}/messages.py +0 -0
  3217. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm/pydub}/shorthand.py +0 -0
  3218. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm/pydub}/string_template.py +0 -0
  3219. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/groq/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm}/shorthand.py +0 -0
  3220. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm}/string_template.py +0 -0
  3221. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm/wave}/base_message_param.py +0 -0
  3222. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm/wave}/messages.py +0 -0
  3223. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm/wave}/shorthand.py +0 -0
  3224. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/litellm/wave}/string_template.py +0 -0
  3225. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral}/base_message_param.py +0 -0
  3226. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral}/messages.py +0 -0
  3227. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral/pydub}/base_message_param.py +0 -0
  3228. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral/pydub}/messages.py +0 -0
  3229. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral/pydub}/shorthand.py +0 -0
  3230. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral/pydub}/string_template.py +0 -0
  3231. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/litellm/wave → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral}/shorthand.py +0 -0
  3232. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral}/string_template.py +0 -0
  3233. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral/wave}/base_message_param.py +0 -0
  3234. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral/wave}/messages.py +0 -0
  3235. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral/pydub → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral/wave}/shorthand.py +0 -0
  3236. {mirascope-1.18.2/examples/learn/streams/multi_modal_outputs/mistral → mirascope-1.18.4/examples/learn/streams/multi_modal_outputs/mistral/wave}/string_template.py +0 -0
  3237. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/multi_modal_outputs/openai/base_message_param.py +0 -0
  3238. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/multi_modal_outputs/openai/messages.py +0 -0
  3239. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/multi_modal_outputs/openai/shorthand.py +0 -0
  3240. {mirascope-1.18.2 → mirascope-1.18.4}/examples/learn/streams/multi_modal_outputs/openai/string_template.py +0 -0
  3241. /mirascope-1.18.2/examples/learn/tools/basic_usage/azure/official_sdk.py → /mirascope-1.18.4/examples/learn/tools/basic_usage/official_sdk/azure_sdk.py +0 -0
  3242. /mirascope-1.18.2/examples/learn/tools/basic_usage/cohere/official_sdk.py → /mirascope-1.18.4/examples/learn/tools/basic_usage/official_sdk/cohere_sdk.py +0 -0
  3243. /mirascope-1.18.2/examples/learn/tools/basic_usage/groq/official_sdk.py → /mirascope-1.18.4/examples/learn/tools/basic_usage/official_sdk/groq_sdk.py +0 -0
  3244. /mirascope-1.18.2/examples/learn/tools/basic_usage/litellm/official_sdk.py → /mirascope-1.18.4/examples/learn/tools/basic_usage/official_sdk/litellm_sdk.py +0 -0
  3245. /mirascope-1.18.2/examples/learn/tools/basic_usage/mistral/official_sdk.py → /mirascope-1.18.4/examples/learn/tools/basic_usage/official_sdk/mistral_sdk.py +0 -0
  3246. /mirascope-1.18.2/examples/learn/tools/basic_usage/openai/official_sdk.py → /mirascope-1.18.4/examples/learn/tools/basic_usage/official_sdk/openai_sdk.py +0 -0
  3247. {mirascope-1.18.2 → mirascope-1.18.4}/examples/ruff.toml +0 -0
  3248. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/__init__.py +0 -0
  3249. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/openai/realtime/_utils/__init__.py +0 -0
  3250. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/openai/realtime/_utils/_audio.py +0 -0
  3251. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/openai/realtime/_utils/_protocols.py +0 -0
  3252. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/openai/realtime/realtime.py +0 -0
  3253. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/openai/realtime/recording.py +0 -0
  3254. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/chunkers/__init__.py +0 -0
  3255. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/chunkers/base_chunker.py +0 -0
  3256. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/chunkers/text_chunker.py +0 -0
  3257. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/config.py +0 -0
  3258. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/document.py +0 -0
  3259. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/embedders.py +0 -0
  3260. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/embedding_params.py +0 -0
  3261. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/embedding_response.py +0 -0
  3262. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/query_results.py +0 -0
  3263. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/vectorstore_params.py +0 -0
  3264. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/base/vectorstores.py +0 -0
  3265. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/chroma/__init__.py +0 -0
  3266. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/chroma/types.py +0 -0
  3267. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/chroma/vectorstores.py +0 -0
  3268. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/cohere/__init__.py +0 -0
  3269. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/cohere/embedders.py +0 -0
  3270. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/cohere/embedding_params.py +0 -0
  3271. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/cohere/embedding_response.py +0 -0
  3272. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/cohere/py.typed +0 -0
  3273. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/openai/__init__.py +0 -0
  3274. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/openai/embedders.py +0 -0
  3275. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/openai/embedding_params.py +0 -0
  3276. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/openai/embedding_response.py +0 -0
  3277. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/openai/py.typed +0 -0
  3278. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/pinecone/__init__.py +0 -0
  3279. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/pinecone/types.py +0 -0
  3280. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/pinecone/vectorstores.py +0 -0
  3281. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/weaviate/types.py +0 -0
  3282. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/beta/rag/weaviate/vectorstores.py +0 -0
  3283. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_call.py +0 -0
  3284. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_call_kwargs.py +0 -0
  3285. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_utils/__init__.py +0 -0
  3286. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_utils/_convert_common_call_params.py +0 -0
  3287. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
  3288. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_utils/_convert_message_params.py +0 -0
  3289. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_utils/_get_json_output.py +0 -0
  3290. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_utils/_handle_stream.py +0 -0
  3291. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_utils/_message_param_converter.py +0 -0
  3292. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/_utils/_setup_call.py +0 -0
  3293. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/call_params.py +0 -0
  3294. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/dynamic_config.py +0 -0
  3295. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/py.typed +0 -0
  3296. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/anthropic/tool.py +0 -0
  3297. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_call.py +0 -0
  3298. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_call_kwargs.py +0 -0
  3299. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_utils/__init__.py +0 -0
  3300. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_utils/_convert_common_call_params.py +0 -0
  3301. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
  3302. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_utils/_convert_message_params.py +0 -0
  3303. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_utils/_get_credential.py +0 -0
  3304. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_utils/_get_json_output.py +0 -0
  3305. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_utils/_handle_stream.py +0 -0
  3306. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_utils/_message_param_converter.py +0 -0
  3307. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/_utils/_setup_call.py +0 -0
  3308. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/call_params.py +0 -0
  3309. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/dynamic_config.py +0 -0
  3310. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/py.typed +0 -0
  3311. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/azure/tool.py +0 -0
  3312. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_call_factory.py +0 -0
  3313. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_create.py +0 -0
  3314. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_extract.py +0 -0
  3315. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_extract_with_tools.py +0 -0
  3316. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_partial.py +0 -0
  3317. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_base_message_param_converter.py +0 -0
  3318. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_base_type.py +0 -0
  3319. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_convert_base_model_to_base_tool.py +0 -0
  3320. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_convert_base_type_to_base_tool.py +0 -0
  3321. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_convert_function_to_base_tool.py +0 -0
  3322. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_convert_messages_to_message_params.py +0 -0
  3323. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_convert_provider_finish_reason_to_finish_reason.py +0 -0
  3324. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_default_tool_docstring.py +0 -0
  3325. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_extract_tool_return.py +0 -0
  3326. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_fn_is_async.py +0 -0
  3327. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_format_template.py +0 -0
  3328. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_audio_type.py +0 -0
  3329. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_document_type.py +0 -0
  3330. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_dynamic_configuration.py +0 -0
  3331. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_fields_from_call_args.py +0 -0
  3332. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_fn_args.py +0 -0
  3333. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_image_type.py +0 -0
  3334. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_metadata.py +0 -0
  3335. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_possible_user_message_param.py +0 -0
  3336. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_prompt_template.py +0 -0
  3337. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_template_values.py +0 -0
  3338. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_template_variables.py +0 -0
  3339. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_get_unsupported_tool_config_keys.py +0 -0
  3340. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_is_prompt_template.py +0 -0
  3341. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_json_mode_content.py +0 -0
  3342. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_messages_decorator.py +0 -0
  3343. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_parse_content_template.py +0 -0
  3344. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_parse_prompt_messages.py +0 -0
  3345. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_pil_image_to_bytes.py +0 -0
  3346. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_setup_call.py +0 -0
  3347. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/_utils/_setup_extract_tool.py +0 -0
  3348. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/call_kwargs.py +0 -0
  3349. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/call_params.py +0 -0
  3350. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/dynamic_config.py +0 -0
  3351. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/from_call_args.py +0 -0
  3352. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/merge_decorators.py +0 -0
  3353. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/message_param.py +0 -0
  3354. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/messages.py +0 -0
  3355. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/metadata.py +0 -0
  3356. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/prompt.py +0 -0
  3357. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/response_model_config_dict.py +0 -0
  3358. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/stream_config.py +0 -0
  3359. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/structured_stream.py +0 -0
  3360. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/base/toolkit.py +0 -0
  3361. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_call.py +0 -0
  3362. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_call_kwargs.py +0 -0
  3363. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_types.py +0 -0
  3364. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_utils/__init__.py +0 -0
  3365. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_utils/_convert_common_call_params.py +0 -0
  3366. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
  3367. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_utils/_convert_message_params.py +0 -0
  3368. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_utils/_get_json_output.py +0 -0
  3369. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_utils/_handle_stream.py +0 -0
  3370. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_utils/_message_param_converter.py +0 -0
  3371. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/_utils/_setup_call.py +0 -0
  3372. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/call_params.py +0 -0
  3373. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/dynamic_config.py +0 -0
  3374. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/py.typed +0 -0
  3375. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/bedrock/tool.py +0 -0
  3376. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_call.py +0 -0
  3377. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_call_kwargs.py +0 -0
  3378. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_types.py +0 -0
  3379. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_utils/__init__.py +0 -0
  3380. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_utils/_convert_common_call_params.py +0 -0
  3381. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
  3382. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_utils/_convert_message_params.py +0 -0
  3383. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_utils/_get_json_output.py +0 -0
  3384. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_utils/_handle_stream.py +0 -0
  3385. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_utils/_message_param_converter.py +0 -0
  3386. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/_utils/_setup_call.py +0 -0
  3387. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/call_params.py +0 -0
  3388. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/dynamic_config.py +0 -0
  3389. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/py.typed +0 -0
  3390. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/cohere/tool.py +0 -0
  3391. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/_call.py +0 -0
  3392. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/_call_kwargs.py +0 -0
  3393. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/_utils/__init__.py +0 -0
  3394. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/_utils/_convert_common_call_params.py +0 -0
  3395. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
  3396. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/_utils/_get_json_output.py +0 -0
  3397. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/_utils/_handle_stream.py +0 -0
  3398. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/_utils/_message_param_converter.py +0 -0
  3399. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/_utils/_setup_call.py +0 -0
  3400. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/call_params.py +0 -0
  3401. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/dynamic_config.py +0 -0
  3402. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/gemini/tool.py +0 -0
  3403. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/_call.py +0 -0
  3404. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/_call_kwargs.py +0 -0
  3405. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/_utils/__init__.py +0 -0
  3406. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/_utils/_convert_common_call_params.py +0 -0
  3407. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
  3408. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/_utils/_get_json_output.py +0 -0
  3409. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/_utils/_handle_stream.py +0 -0
  3410. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/_utils/_setup_call.py +0 -0
  3411. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/call_params.py +0 -0
  3412. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/dynamic_config.py +0 -0
  3413. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/google/tool.py +0 -0
  3414. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/_call.py +0 -0
  3415. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/_call_kwargs.py +0 -0
  3416. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/_utils/__init__.py +0 -0
  3417. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/_utils/_convert_common_call_params.py +0 -0
  3418. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/_utils/_convert_message_params.py +0 -0
  3419. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/_utils/_get_json_output.py +0 -0
  3420. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/_utils/_handle_stream.py +0 -0
  3421. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/_utils/_message_param_converter.py +0 -0
  3422. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/_utils/_setup_call.py +0 -0
  3423. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/call_params.py +0 -0
  3424. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/dynamic_config.py +0 -0
  3425. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/py.typed +0 -0
  3426. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/groq/tool.py +0 -0
  3427. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/litellm/_call.py +0 -0
  3428. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/litellm/_utils/__init__.py +0 -0
  3429. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/litellm/call_params.py +0 -0
  3430. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/litellm/call_response.py +0 -0
  3431. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/litellm/call_response_chunk.py +0 -0
  3432. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/litellm/dynamic_config.py +0 -0
  3433. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/litellm/py.typed +0 -0
  3434. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/litellm/stream.py +0 -0
  3435. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/litellm/tool.py +0 -0
  3436. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_call.py +0 -0
  3437. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_call_kwargs.py +0 -0
  3438. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_utils/__init__.py +0 -0
  3439. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_utils/_convert_common_call_params.py +0 -0
  3440. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
  3441. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_utils/_convert_message_params.py +0 -0
  3442. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_utils/_get_json_output.py +0 -0
  3443. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_utils/_handle_stream.py +0 -0
  3444. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_utils/_message_param_converter.py +0 -0
  3445. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/_utils/_setup_call.py +0 -0
  3446. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/call_params.py +0 -0
  3447. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/dynamic_config.py +0 -0
  3448. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/py.typed +0 -0
  3449. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/mistral/tool.py +0 -0
  3450. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/_call.py +0 -0
  3451. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/_call_kwargs.py +0 -0
  3452. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/_utils/__init__.py +0 -0
  3453. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/_utils/_convert_common_call_params.py +0 -0
  3454. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/_utils/_convert_message_params.py +0 -0
  3455. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/_utils/_get_json_output.py +0 -0
  3456. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/_utils/_handle_stream.py +0 -0
  3457. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/_utils/_message_param_converter.py +0 -0
  3458. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/_utils/_setup_call.py +0 -0
  3459. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/dynamic_config.py +0 -0
  3460. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/py.typed +0 -0
  3461. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/openai/tool.py +0 -0
  3462. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/py.typed +0 -0
  3463. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/_call.py +0 -0
  3464. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/_call_kwargs.py +0 -0
  3465. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/_utils/__init__.py +0 -0
  3466. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/_utils/_convert_common_call_params.py +0 -0
  3467. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -0
  3468. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/_utils/_get_json_output.py +0 -0
  3469. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/_utils/_handle_stream.py +0 -0
  3470. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/_utils/_message_param_converter.py +0 -0
  3471. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/_utils/_setup_call.py +0 -0
  3472. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/call_params.py +0 -0
  3473. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/dynamic_config.py +0 -0
  3474. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/core/vertex/tool.py +0 -0
  3475. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/__init__.py +0 -0
  3476. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/langfuse/__init__.py +0 -0
  3477. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/langfuse/_utils.py +0 -0
  3478. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/langfuse/_with_langfuse.py +0 -0
  3479. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/logfire/__init__.py +0 -0
  3480. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/logfire/_with_logfire.py +0 -0
  3481. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/otel/__init__.py +0 -0
  3482. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/otel/_utils.py +0 -0
  3483. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/otel/_with_hyperdx.py +0 -0
  3484. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/otel/_with_otel.py +0 -0
  3485. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/integrations/tenacity.py +0 -0
  3486. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/llm/_response_metaclass.py +0 -0
  3487. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/llm/call_response_chunk.py +0 -0
  3488. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/llm/llm_override.py +0 -0
  3489. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/llm/tool.py +0 -0
  3490. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/mcp/__init__.py +0 -0
  3491. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/mcp/client.py +0 -0
  3492. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/mcp/server.py +0 -0
  3493. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/mcp/tools.py +0 -0
  3494. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/py.typed +0 -0
  3495. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/retries/fallback.py +0 -0
  3496. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/retries/tenacity.py +0 -0
  3497. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/tools/base.py +0 -0
  3498. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/tools/system/__init__.py +0 -0
  3499. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/tools/system/_docker_operation.py +0 -0
  3500. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/tools/system/_file_system.py +0 -0
  3501. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/tools/web/__init__.py +0 -0
  3502. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/tools/web/_duckduckgo.py +0 -0
  3503. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/tools/web/_httpx.py +0 -0
  3504. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/tools/web/_parse_url_content.py +0 -0
  3505. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/tools/web/_requests.py +0 -0
  3506. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/__init__.py +0 -0
  3507. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/anthropic.py +0 -0
  3508. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/base/__init__.py +0 -0
  3509. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/base/calls.py +0 -0
  3510. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/base/extractors.py +0 -0
  3511. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/base/ops_utils.py +0 -0
  3512. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/base/prompts.py +0 -0
  3513. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/base/types.py +0 -0
  3514. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/base/utils.py +0 -0
  3515. {mirascope-1.18.2 → mirascope-1.18.4}/mirascope/v0/openai.py +0 -0
  3516. {mirascope-1.18.2 → mirascope-1.18.4}/tests/__init__.py +0 -0
  3517. {mirascope-1.18.2 → mirascope-1.18.4}/tests/conftest.py +0 -0
  3518. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/__init__.py +0 -0
  3519. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/__init__.py +0 -0
  3520. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/_utils/__init__.py +0 -0
  3521. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/_utils/test_convert_common_call_params.py +0 -0
  3522. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/_utils/test_convert_message_params.py +0 -0
  3523. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/_utils/test_get_json_output.py +0 -0
  3524. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/_utils/test_handle_stream.py +0 -0
  3525. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/_utils/test_message_param_converter.py +0 -0
  3526. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/_utils/test_setup_call.py +0 -0
  3527. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/test_call.py +0 -0
  3528. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/test_call_response.py +0 -0
  3529. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/test_call_response_chunk.py +0 -0
  3530. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/test_stream.py +0 -0
  3531. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/anthropic/test_tool.py +0 -0
  3532. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/__init__.py +0 -0
  3533. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/_utils/__init__.py +0 -0
  3534. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/_utils/test_convert_common_call_params.py +0 -0
  3535. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/_utils/test_convert_message_params.py +0 -0
  3536. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/_utils/test_get_credential.py +0 -0
  3537. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/_utils/test_get_json_output.py +0 -0
  3538. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/_utils/test_handle_stream.py +0 -0
  3539. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/_utils/test_message_param_converter.py +0 -0
  3540. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/_utils/test_setup_call.py +0 -0
  3541. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/test_call.py +0 -0
  3542. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/test_call_response.py +0 -0
  3543. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/test_call_response_chunk.py +0 -0
  3544. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/test_stream.py +0 -0
  3545. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/azure/test_tool.py +0 -0
  3546. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/__init__.py +0 -0
  3547. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/__init__.py +0 -0
  3548. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_base_type.py +0 -0
  3549. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_convert_base_model_to_base_tool.py +0 -0
  3550. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_convert_base_type_to_base_tool.py +0 -0
  3551. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_convert_function_to_base_tool.py +0 -0
  3552. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_extract_tool_return.py +0 -0
  3553. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_format_template.py +0 -0
  3554. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_audio_type.py +0 -0
  3555. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_create_fn_or_async_create_fn.py +0 -0
  3556. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_document_type.py +0 -0
  3557. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_dynamic_configuration.py +0 -0
  3558. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_fields_from_call_args.py +0 -0
  3559. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_fn_args.py +0 -0
  3560. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_image_type.py +0 -0
  3561. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_metadata.py +0 -0
  3562. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_possible_user_message_param.py +0 -0
  3563. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_prompt_template.py +0 -0
  3564. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_template_values.py +0 -0
  3565. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_template_variables.py +0 -0
  3566. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_get_unsupported_tool_config_keys.py +0 -0
  3567. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_json_mode_content.py +0 -0
  3568. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_message_decorator.py +0 -0
  3569. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_parse_content_template.py +0 -0
  3570. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_pil_image_to_bytes.py +0 -0
  3571. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_setup_call.py +0 -0
  3572. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/_utils/test_setup_extract_tool.py +0 -0
  3573. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/conftest.py +0 -0
  3574. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_call_factory.py +0 -0
  3575. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_call_response.py +0 -0
  3576. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_call_response_chunk.py +0 -0
  3577. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_create.py +0 -0
  3578. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_extract.py +0 -0
  3579. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_extract_with_tools.py +0 -0
  3580. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_merge_decorators.py +0 -0
  3581. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_partial.py +0 -0
  3582. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_prompt.py +0 -0
  3583. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_stream.py +0 -0
  3584. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_structured_stream.py +0 -0
  3585. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/base/test_toolkit.py +0 -0
  3586. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/__init__.py +0 -0
  3587. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/_utils/__init__.py +0 -0
  3588. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/_utils/test_convert_common_call_params.py +0 -0
  3589. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/_utils/test_convert_message_params.py +0 -0
  3590. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/_utils/test_get_json_output.py +0 -0
  3591. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/_utils/test_handle_stream.py +0 -0
  3592. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/_utils/test_message_param_converter.py +0 -0
  3593. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/_utils/test_setup_call.py +0 -0
  3594. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/conftest.py +0 -0
  3595. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/test_call.py +0 -0
  3596. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/test_call_response.py +0 -0
  3597. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/test_call_response_chunk.py +0 -0
  3598. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/bedrock/test_tool.py +0 -0
  3599. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/__init__.py +0 -0
  3600. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/_utils/__init__.py +0 -0
  3601. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/_utils/test_convert_common_call_params.py +0 -0
  3602. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/_utils/test_convert_message_params.py +0 -0
  3603. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/_utils/test_get_json_output.py +0 -0
  3604. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/_utils/test_handle_stream.py +0 -0
  3605. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/_utils/test_message_param_converter.py +0 -0
  3606. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/_utils/test_setup_call.py +0 -0
  3607. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/test_call.py +0 -0
  3608. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/test_call_response.py +0 -0
  3609. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/test_call_response_chunk.py +0 -0
  3610. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/test_stream.py +0 -0
  3611. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/cohere/test_tool.py +0 -0
  3612. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/__init__.py +0 -0
  3613. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/_utils/__init__.py +0 -0
  3614. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/_utils/test_convert_common_call_params.py +0 -0
  3615. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/_utils/test_get_json_output.py +0 -0
  3616. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/_utils/test_handle_stream.py +0 -0
  3617. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/_utils/test_message_param_converter.py +0 -0
  3618. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/_utils/test_setup_call.py +0 -0
  3619. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/test_call.py +0 -0
  3620. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/test_call_response.py +0 -0
  3621. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/test_call_response_chunk.py +0 -0
  3622. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/test_stream.py +0 -0
  3623. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/gemini/test_tool.py +0 -0
  3624. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/google/__init__.py +0 -0
  3625. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/google/_utils/__init__.py +0 -0
  3626. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/google/_utils/test_convert_common_call_params.py +0 -0
  3627. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/google/_utils/test_get_json_output.py +0 -0
  3628. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/google/_utils/test_handle_stream.py +0 -0
  3629. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/google/_utils/test_setup_call.py +0 -0
  3630. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/google/test_call.py +0 -0
  3631. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/google/test_call_response_chunk.py +0 -0
  3632. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/google/test_tool.py +0 -0
  3633. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/__init__.py +0 -0
  3634. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/_utils/__init__.py +0 -0
  3635. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/_utils/test_convert_common_call_params.py +0 -0
  3636. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/_utils/test_get_json_output.py +0 -0
  3637. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/_utils/test_handle_stream.py +0 -0
  3638. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/_utils/test_message_param_converter.py +0 -0
  3639. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/_utils/test_setup_call.py +0 -0
  3640. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/test_call.py +0 -0
  3641. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/test_call_response.py +0 -0
  3642. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/test_call_response_chunk.py +0 -0
  3643. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/test_stream.py +0 -0
  3644. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/groq/test_tool.py +0 -0
  3645. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/litellm/__init__.py +0 -0
  3646. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/litellm/_utils/__init__.py +0 -0
  3647. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/litellm/_utils/test_setup_call.py +0 -0
  3648. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/litellm/test_call.py +0 -0
  3649. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/litellm/test_call_response.py +0 -0
  3650. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/litellm/test_stream.py +0 -0
  3651. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/__init__.py +0 -0
  3652. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/_utils/__init__.py +0 -0
  3653. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/_utils/test_convert_common_call_params.py +0 -0
  3654. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/_utils/test_convert_message_params.py +0 -0
  3655. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/_utils/test_get_json_output.py +0 -0
  3656. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/_utils/test_handle_stream.py +0 -0
  3657. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/_utils/test_message_param_converter.py +0 -0
  3658. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/_utils/test_setup_call.py +0 -0
  3659. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/test_call.py +0 -0
  3660. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/test_call_response.py +0 -0
  3661. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/test_call_response_chunk.py +0 -0
  3662. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/test_stream.py +0 -0
  3663. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/mistral/test_tool.py +0 -0
  3664. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/__init__.py +0 -0
  3665. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/_utils/__init__.py +0 -0
  3666. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/_utils/test_convert_common_call_params.py +0 -0
  3667. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/_utils/test_convert_message_params.py +0 -0
  3668. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/_utils/test_get_json_output.py +0 -0
  3669. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/_utils/test_handle_stream.py +0 -0
  3670. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/_utils/test_message_param_converter.py +0 -0
  3671. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/_utils/test_setup_call.py +0 -0
  3672. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/test_call.py +0 -0
  3673. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/test_call_response.py +0 -0
  3674. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/test_call_response_chunk.py +0 -0
  3675. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/test_stream.py +0 -0
  3676. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/openai/test_tool.py +0 -0
  3677. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/__init__.py +0 -0
  3678. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/_utils/__init__.py +0 -0
  3679. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/_utils/test_convert_common_call_params.py +0 -0
  3680. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/_utils/test_get_json_output.py +0 -0
  3681. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/_utils/test_handle_stream.py +0 -0
  3682. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/_utils/test_message_param_converter.py +0 -0
  3683. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/_utils/test_setup_call.py +0 -0
  3684. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/test_call.py +0 -0
  3685. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/test_call_response.py +0 -0
  3686. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/test_call_response_chunk.py +0 -0
  3687. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/test_stream.py +0 -0
  3688. {mirascope-1.18.2 → mirascope-1.18.4}/tests/core/vertex/test_tool.py +0 -0
  3689. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/__init__.py +0 -0
  3690. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/langfuse/__init__.py +0 -0
  3691. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/langfuse/test_utils.py +0 -0
  3692. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/langfuse/test_with_langfuse.py +0 -0
  3693. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/logfire/__init__.py +0 -0
  3694. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/logfire/test_utils.py +0 -0
  3695. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/logfire/test_with_logfire.py +0 -0
  3696. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/otel/__init__.py +0 -0
  3697. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/otel/test_utils.py +0 -0
  3698. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/otel/test_with_hyperdx.py +0 -0
  3699. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/otel/test_with_otel.py +0 -0
  3700. {mirascope-1.18.2 → mirascope-1.18.4}/tests/integrations/test_middleware_factory.py +0 -0
  3701. {mirascope-1.18.2 → mirascope-1.18.4}/tests/llm/__init__.py +0 -0
  3702. {mirascope-1.18.2 → mirascope-1.18.4}/tests/llm/test_override.py +0 -0
  3703. {mirascope-1.18.2 → mirascope-1.18.4}/tests/llm/test_response_metaclass.py +0 -0
  3704. {mirascope-1.18.2 → mirascope-1.18.4}/tests/llm/test_tool.py +0 -0
  3705. {mirascope-1.18.2 → mirascope-1.18.4}/tests/mcp/__init__.py +0 -0
  3706. {mirascope-1.18.2 → mirascope-1.18.4}/tests/mcp/test_mcp_client.py +0 -0
  3707. {mirascope-1.18.2 → mirascope-1.18.4}/tests/retries/__init__.py +0 -0
  3708. {mirascope-1.18.2 → mirascope-1.18.4}/tests/retries/test_fallback.py +0 -0
  3709. {mirascope-1.18.2 → mirascope-1.18.4}/tests/retries/test_tenacity.py +0 -0
  3710. {mirascope-1.18.2 → mirascope-1.18.4}/tests/tools/__init__.py +0 -0
  3711. {mirascope-1.18.2 → mirascope-1.18.4}/tests/tools/test_base.py +0 -0
  3712. {mirascope-1.18.2 → mirascope-1.18.4}/tests/tools/test_docker_operation_toolkit.py +0 -0
  3713. {mirascope-1.18.2 → mirascope-1.18.4}/tests/tools/test_filesystem_toolkit.py +0 -0
  3714. {mirascope-1.18.2 → mirascope-1.18.4}/tests/tools/web/__init__.py +0 -0
  3715. {mirascope-1.18.2 → mirascope-1.18.4}/tests/tools/web/test_duckduckgo.py +0 -0
  3716. {mirascope-1.18.2 → mirascope-1.18.4}/tests/tools/web/test_httpx.py +0 -0
  3717. {mirascope-1.18.2 → mirascope-1.18.4}/tests/tools/web/test_parse_url_content.py +0 -0
  3718. {mirascope-1.18.2 → mirascope-1.18.4}/tests/tools/web/test_requests.py +0 -0
@@ -0,0 +1,49 @@
1
+ name: lint
2
+ run-name: ${{ github.actor }} is linting the package
3
+
4
+ on:
5
+ push:
6
+ branches:
7
+ - main
8
+ - release/*
9
+ pull_request:
10
+ branches:
11
+ - main
12
+ - release/*
13
+
14
+ jobs:
15
+ lints:
16
+ name: Ruff, Pyright, and Codespell
17
+ runs-on: ubuntu-latest
18
+
19
+ steps:
20
+ - uses: actions/checkout@v3
21
+ - uses: codespell-project/actions-codespell@v2
22
+ with:
23
+ exclude_file: "docs/tutorials/evals/evaluating_web_search_agent.ipynb,docs/tutorials/agents/web_search_agent.ipynb,docs/tutorials/more_advanced/knowledge_graph.ipynb"
24
+ - name: Set up uv
25
+ run: curl -LsSf https://astral.sh/uv/0.5.6/install.sh | sh
26
+
27
+ - name: Set Up Python Environment
28
+ run: uv python install 3.11
29
+
30
+ - name: Restore uv cache
31
+ uses: actions/cache@v4
32
+ with:
33
+ path: /tmp/.uv-cache
34
+ key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
35
+ restore-keys: |
36
+ uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
37
+ uv-${{ runner.os }}
38
+
39
+ - name: Install the project
40
+ run: uv sync --all-extras --dev
41
+
42
+ - name: Run Ruff
43
+ run: uv run ruff check .
44
+
45
+ - name: Run Pyright
46
+ run: uv run pyright .
47
+
48
+ - name: Minimize uv cache
49
+ run: uv cache prune --ci
@@ -0,0 +1,173 @@
1
+ # pyenv
2
+ .python-version
3
+ .python-versions
4
+
5
+ # Byte-compiled / optimized / DLL files
6
+ __pycache__/
7
+ *.py[cod]
8
+ *$py.class
9
+
10
+ # Mac
11
+ .DS_Store
12
+
13
+ # C extensions
14
+ *.so
15
+
16
+ # Distribution / packaging
17
+ .Python
18
+ build/
19
+ develop-eggs/
20
+ dist/
21
+ downloads/
22
+ eggs/
23
+ .eggs/
24
+ lib/
25
+ lib64/
26
+ parts/
27
+ sdist/
28
+ var/
29
+ wheels/
30
+ share/python-wheels/
31
+ *.egg-info/
32
+ .installed.cfg
33
+ *.egg
34
+ MANIFEST
35
+
36
+ # PyInstaller
37
+ # Usually these files are written by a python script from a template
38
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
39
+ *.manifest
40
+ *.spec
41
+
42
+ # Installer logs
43
+ pip-log.txt
44
+ pip-delete-this-directory.txt
45
+
46
+ # Unit test / coverage reports
47
+ htmlcov/
48
+ .tox/
49
+ .nox/
50
+ .coverage
51
+ .coverage.*
52
+ .cache
53
+ nosetests.xml
54
+ coverage.xml
55
+ *.cover
56
+ *.py,cover
57
+ .hypothesis/
58
+ .pytest_cache/
59
+ cover/
60
+
61
+ # Translations
62
+ *.mo
63
+ *.pot
64
+
65
+ # Django stuff:
66
+ *.log
67
+ local_settings.py
68
+ db.sqlite3
69
+ db.sqlite3-journal
70
+
71
+ # Flask stuff:
72
+ instance/
73
+ .webassets-cache
74
+
75
+ # Scrapy stuff:
76
+ .scrapy
77
+
78
+ # Sphinx documentation
79
+ docs/_build/
80
+
81
+ # PyBuilder
82
+ .pybuilder/
83
+ target/
84
+
85
+ # Jupyter Notebook
86
+ .ipynb_checkpoints
87
+
88
+ # IPython
89
+ profile_default/
90
+ ipython_config.py
91
+
92
+ # pyenv
93
+ # For a library or package, you might want to ignore these files since the code is
94
+ # intended to run in multiple environments; otherwise, check them in:
95
+ # .python-version
96
+
97
+ # pipenv
98
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
99
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
100
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
101
+ # install all needed dependencies.
102
+ #Pipfile.lock
103
+
104
+ # poetry
105
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
106
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
107
+ # commonly ignored for libraries.
108
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
109
+ #poetry.lock
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ #pdm.lock
114
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
115
+ # in version control.
116
+ # https://pdm.fming.dev/#use-with-ide
117
+ .pdm.toml
118
+
119
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
120
+ __pypackages__/
121
+
122
+ # Celery stuff
123
+ celerybeat-schedule
124
+ celerybeat.pid
125
+
126
+ # SageMath parsed files
127
+ *.sage.py
128
+
129
+ # Environments
130
+ .env
131
+ .venv
132
+ env/
133
+ venv/
134
+ ENV/
135
+ env.bak/
136
+ venv.bak/
137
+
138
+ # Spyder project settings
139
+ .spyderproject
140
+ .spyproject
141
+
142
+ # Rope project settings
143
+ .ropeproject
144
+
145
+ # mkdocs documentation
146
+ /site
147
+ docs/**/*.html.md
148
+ docs/llms.txt
149
+ build/snippets/
150
+
151
+ # mypy
152
+ .mypy_cache/
153
+ .dmypy.json
154
+ dmypy.json
155
+
156
+ # Pyre type checker
157
+ .pyre/
158
+
159
+ # pytype static type analyzer
160
+ .pytype/
161
+
162
+ # Cython debug symbols
163
+ cython_debug/
164
+
165
+ # PyCharm
166
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
167
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
168
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
169
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
170
+ #.idea/
171
+
172
+ #sqlite
173
+ database.db
@@ -0,0 +1,28 @@
1
+ repos:
2
+ - repo: https://github.com/codespell-project/codespell
3
+ rev: v2.3.0
4
+ hooks:
5
+ - id: codespell
6
+ additional_dependencies:
7
+ - tomli
8
+ exclude: "docs/tutorials/more_advanced/knowledge_graph.ipynb|docs/tutorials/evals/evaluating_web_search_agent.ipynb|docs/tutorials/agents/web_search_agent.ipynb|docs/blog/posts/llm-prompt.md"
9
+ - repo: https://github.com/astral-sh/ruff-pre-commit
10
+ rev: "v0.9.7"
11
+ hooks:
12
+ - id: ruff
13
+ files: "^mirascope|^tests|^examples|^docs"
14
+ args: [--fix]
15
+ - id: ruff-format
16
+ files: "^mirascope|^tests|^examples|^docs"
17
+ - repo: https://github.com/RobertCraigie/pyright-python
18
+ rev: v1.1.394
19
+ hooks:
20
+ - id: pyright
21
+ - repo: local
22
+ hooks:
23
+ - id: tests
24
+ name: tests
25
+ entry: uv run pytest tests
26
+ language: system
27
+ types: [python]
28
+ pass_filenames: false
@@ -0,0 +1,166 @@
1
+ Metadata-Version: 2.4
2
+ Name: mirascope
3
+ Version: 1.18.4
4
+ Summary: LLM abstractions that aren't obstructions
5
+ Project-URL: Homepage, https://mirascope.com
6
+ Project-URL: Documentation, https://mirascope.com/WELCOME
7
+ Project-URL: Repository, https://github.com/Mirascope/mirascope
8
+ Project-URL: Issues, https://github.com/Mirascope/mirascope/issues
9
+ Project-URL: Changelog, https://github.com/Mirascope/mirascope/releases
10
+ Author-email: William Bakst <william@mirascope.com>, Brendan Kao <brendan@mirascope.com>
11
+ Maintainer-email: William Bakst <william@mirascope.com>
12
+ License: MIT License
13
+
14
+ Copyright (c) 2023 Mirascope, Inc.
15
+
16
+ Permission is hereby granted, free of charge, to any person obtaining a copy
17
+ of this software and associated documentation files (the "Software"), to deal
18
+ in the Software without restriction, including without limitation the rights
19
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
20
+ copies of the Software, and to permit persons to whom the Software is
21
+ furnished to do so, subject to the following conditions:
22
+
23
+ The above copyright notice and this permission notice shall be included in all
24
+ copies or substantial portions of the Software.
25
+
26
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
31
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32
+ SOFTWARE.
33
+ License-File: LICENSE
34
+ Keywords: agents,anthropic,artificial intelligence,bedrock,cohere,developer tools,gemini,groq,llm,llm tools,mistral,openai,prompt engineering,pydantic,vertex
35
+ Classifier: Development Status :: 5 - Production/Stable
36
+ Classifier: Framework :: Pydantic :: 2
37
+ Classifier: Intended Audience :: Developers
38
+ Classifier: License :: OSI Approved :: MIT License
39
+ Classifier: Programming Language :: Python :: 3
40
+ Classifier: Programming Language :: Python :: 3.10
41
+ Classifier: Programming Language :: Python :: 3.11
42
+ Classifier: Programming Language :: Python :: 3.12
43
+ Classifier: Programming Language :: Python :: 3.13
44
+ Classifier: Topic :: File Formats :: JSON
45
+ Classifier: Topic :: File Formats :: JSON :: JSON Schema
46
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
47
+ Classifier: Topic :: Software Development :: Libraries
48
+ Requires-Python: >=3.10
49
+ Requires-Dist: docstring-parser<1.0,>=0.15
50
+ Requires-Dist: jiter>=0.5.0
51
+ Requires-Dist: pydantic<3.0,>=2.7.4
52
+ Requires-Dist: typing-extensions>=4.10.0
53
+ Provides-Extra: anthropic
54
+ Requires-Dist: anthropic<1.0,>=0.29.0; extra == 'anthropic'
55
+ Provides-Extra: azure
56
+ Requires-Dist: aiohttp<4.0,>=3.10.5; extra == 'azure'
57
+ Requires-Dist: azure-ai-inference<2.0,>=1.0.0b4; extra == 'azure'
58
+ Provides-Extra: bedrock
59
+ Requires-Dist: aioboto3<14,>=13.1.1; extra == 'bedrock'
60
+ Requires-Dist: boto3-stubs[bedrock-runtime]<2,>=1.35.32; extra == 'bedrock'
61
+ Requires-Dist: boto3<2,>=1.34.70; extra == 'bedrock'
62
+ Requires-Dist: types-aioboto3[bedrock-runtime]<14,>=13.1.1; extra == 'bedrock'
63
+ Provides-Extra: cohere
64
+ Requires-Dist: cohere<6,>=5.5.8; extra == 'cohere'
65
+ Provides-Extra: gemini
66
+ Requires-Dist: google-generativeai<1,>=0.4.0; extra == 'gemini'
67
+ Requires-Dist: pillow<11,>=10.4.0; extra == 'gemini'
68
+ Provides-Extra: google
69
+ Requires-Dist: google-genai<2,>=1.2.0; extra == 'google'
70
+ Requires-Dist: pillow<11,>=10.4.0; extra == 'google'
71
+ Provides-Extra: groq
72
+ Requires-Dist: groq<1,>=0.9.0; extra == 'groq'
73
+ Provides-Extra: hyperdx
74
+ Requires-Dist: hyperdx-opentelemetry<1,>=0.1.0; extra == 'hyperdx'
75
+ Provides-Extra: langfuse
76
+ Requires-Dist: langfuse<3,>=2.30.0; extra == 'langfuse'
77
+ Provides-Extra: litellm
78
+ Requires-Dist: litellm<2,>=1.42.12; extra == 'litellm'
79
+ Provides-Extra: logfire
80
+ Requires-Dist: logfire<4,>=1.0.0; extra == 'logfire'
81
+ Provides-Extra: mcp
82
+ Requires-Dist: mcp>=1.0.0; extra == 'mcp'
83
+ Provides-Extra: mistral
84
+ Requires-Dist: mistralai<2,>=1.0.0; extra == 'mistral'
85
+ Provides-Extra: openai
86
+ Requires-Dist: openai<2,>=1.6.0; extra == 'openai'
87
+ Provides-Extra: opentelemetry
88
+ Requires-Dist: opentelemetry-api<2,>=1.22.0; extra == 'opentelemetry'
89
+ Requires-Dist: opentelemetry-sdk<2,>=1.22.0; extra == 'opentelemetry'
90
+ Provides-Extra: realtime
91
+ Requires-Dist: numpy<2,>=1.26.4; extra == 'realtime'
92
+ Requires-Dist: pydub<1,>=0.25.1; extra == 'realtime'
93
+ Requires-Dist: sounddevice<1,>=0.5.1; extra == 'realtime'
94
+ Requires-Dist: websockets<14,>=13.1; extra == 'realtime'
95
+ Provides-Extra: tenacity
96
+ Requires-Dist: tenacity<9,>=8.4.2; extra == 'tenacity'
97
+ Provides-Extra: vertex
98
+ Requires-Dist: google-cloud-aiplatform<2,>=1.38.0; extra == 'vertex'
99
+ Description-Content-Type: text/markdown
100
+
101
+ <div align="center" justiry="start">
102
+ <a href="https://mirascope.com">
103
+ <img align="bottom" src="https://github.com/Mirascope/mirascope/assets/99370834/e403d7ee-f8bc-4df1-b2d0-33763f021c89" alt="Frog Logo" width="84"/><br><img align="bottom" src="https://uploads-ssl.webflow.com/65a6fd6a1c3b2704d6217d3d/65b5674e9ceef563dc57eb11_Medium%20length%20hero%20headline%20goes%20here.svg" width="400" alt="Mirascope"/>
104
+ </a>
105
+ </div>
106
+
107
+ <p align="center">
108
+ <a href="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml" target="_blank"><img src="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml/badge.svg?branch=main" alt="Tests"/></a>
109
+ <a href="https://codecov.io/github/Mirascope/mirascope" target="_blank"><img src="https://codecov.io/github/Mirascope/mirascope/graph/badge.svg?token=HAEAWT3KC9" alt="Coverage"/></a>
110
+ <a href="https://mirascope.com/WELCOME" target="_blank"><img src="https://img.shields.io/badge/docs-available-brightgreen" alt="Docs"/></a>
111
+ <a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/v/mirascope.svg" alt="PyPI Version"/></a>
112
+ <a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/pyversions/mirascope.svg" alt="Stars"/></a>
113
+ <a href="https://github.com/Mirascope/mirascope/blog/dev/LICENSE"><img src="https://img.shields.io/github/license/Mirascope/mirascope.svg" alt="License"/></a>
114
+ <a href="https://github.com/Mirascope/mirascope/stargazers" target="_blank"><img src="https://img.shields.io/github/stars/Mirascope/mirascope.svg" alt="Stars"/></a>
115
+ </p>
116
+
117
+ ---
118
+
119
+ Mirascope is a powerful, flexible, and user-friendly library that simplifies the process of working with LLMs through a unified interface that works across various supported providers, including [OpenAI](https://openai.com/), [Anthropic](https://www.anthropic.com/), [Mistral](https://mistral.ai/), [Google (Gemini/Vertex)](https://googleapis.github.io/python-genai/), [Groq](https://groq.com/), [Cohere](https://cohere.com/), [LiteLLM](https://www.litellm.ai/), [Azure AI](https://azure.microsoft.com/en-us/solutions/ai), and [Bedrock](https://aws.amazon.com/bedrock/).
120
+
121
+ Whether you're generating text, extracting structured information, or developing complex AI-driven agent systems, Mirascope provides the tools you need to streamline your development process and create powerful, robust applications.
122
+
123
+ ## 30 Second Quickstart
124
+
125
+ Install Mirascope, specifying the provider(s) you intend to use, and set your API key:
126
+
127
+ ```bash
128
+ pip install "mirascope[openai]"
129
+ export OPENAI_API_KEY=XXXXX
130
+ ```
131
+
132
+ Make your first call to an LLM to extract the title and author of a book from unstructured text:
133
+
134
+ ```python
135
+ from mirascope import llm
136
+ from pydantic import BaseModel
137
+
138
+ class Book(BaseModel):
139
+ title: str
140
+ author: str
141
+
142
+ @llm.call(provider="openai", model="gpt-4o-mini", response_model=Book)
143
+ def extract_book(text: str) -> str:
144
+ return f"Extract {text}"
145
+
146
+ book = extract_book("The Name of the Wind by Patrick Rothfuss")
147
+ assert isinstance(book, Book)
148
+ print(book)
149
+ # Output: title='The Name of the Wind' author='Patrick Rothfuss'
150
+ ```
151
+
152
+ ## Tutorials
153
+
154
+ Check out our [quickstart tutorial](https://mirascope.com/tutorials/getting_started/quickstart) and many other tutorials for an interactive way to getting started with Mirascope.
155
+
156
+ ## Usage
157
+
158
+ For a complete guide on how to use all of the various features Mirascope has to offer, read through our [Learn](https://mirascope.com/learn) documentation.
159
+
160
+ ## Versioning
161
+
162
+ Mirascope uses [Semantic Versioning](https://semver.org/).
163
+
164
+ ## Licence
165
+
166
+ This project is licensed under the terms of the [MIT License](https://github.com/Mirascope/mirascope/blob/dev/LICENSE).
@@ -0,0 +1,66 @@
1
+ <div align="center" justiry="start">
2
+ <a href="https://mirascope.com">
3
+ <img align="bottom" src="https://github.com/Mirascope/mirascope/assets/99370834/e403d7ee-f8bc-4df1-b2d0-33763f021c89" alt="Frog Logo" width="84"/><br><img align="bottom" src="https://uploads-ssl.webflow.com/65a6fd6a1c3b2704d6217d3d/65b5674e9ceef563dc57eb11_Medium%20length%20hero%20headline%20goes%20here.svg" width="400" alt="Mirascope"/>
4
+ </a>
5
+ </div>
6
+
7
+ <p align="center">
8
+ <a href="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml" target="_blank"><img src="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml/badge.svg?branch=main" alt="Tests"/></a>
9
+ <a href="https://codecov.io/github/Mirascope/mirascope" target="_blank"><img src="https://codecov.io/github/Mirascope/mirascope/graph/badge.svg?token=HAEAWT3KC9" alt="Coverage"/></a>
10
+ <a href="https://mirascope.com/WELCOME" target="_blank"><img src="https://img.shields.io/badge/docs-available-brightgreen" alt="Docs"/></a>
11
+ <a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/v/mirascope.svg" alt="PyPI Version"/></a>
12
+ <a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/pyversions/mirascope.svg" alt="Stars"/></a>
13
+ <a href="https://github.com/Mirascope/mirascope/blog/dev/LICENSE"><img src="https://img.shields.io/github/license/Mirascope/mirascope.svg" alt="License"/></a>
14
+ <a href="https://github.com/Mirascope/mirascope/stargazers" target="_blank"><img src="https://img.shields.io/github/stars/Mirascope/mirascope.svg" alt="Stars"/></a>
15
+ </p>
16
+
17
+ ---
18
+
19
+ Mirascope is a powerful, flexible, and user-friendly library that simplifies the process of working with LLMs through a unified interface that works across various supported providers, including [OpenAI](https://openai.com/), [Anthropic](https://www.anthropic.com/), [Mistral](https://mistral.ai/), [Google (Gemini/Vertex)](https://googleapis.github.io/python-genai/), [Groq](https://groq.com/), [Cohere](https://cohere.com/), [LiteLLM](https://www.litellm.ai/), [Azure AI](https://azure.microsoft.com/en-us/solutions/ai), and [Bedrock](https://aws.amazon.com/bedrock/).
20
+
21
+ Whether you're generating text, extracting structured information, or developing complex AI-driven agent systems, Mirascope provides the tools you need to streamline your development process and create powerful, robust applications.
22
+
23
+ ## 30 Second Quickstart
24
+
25
+ Install Mirascope, specifying the provider(s) you intend to use, and set your API key:
26
+
27
+ ```bash
28
+ pip install "mirascope[openai]"
29
+ export OPENAI_API_KEY=XXXXX
30
+ ```
31
+
32
+ Make your first call to an LLM to extract the title and author of a book from unstructured text:
33
+
34
+ ```python
35
+ from mirascope import llm
36
+ from pydantic import BaseModel
37
+
38
+ class Book(BaseModel):
39
+ title: str
40
+ author: str
41
+
42
+ @llm.call(provider="openai", model="gpt-4o-mini", response_model=Book)
43
+ def extract_book(text: str) -> str:
44
+ return f"Extract {text}"
45
+
46
+ book = extract_book("The Name of the Wind by Patrick Rothfuss")
47
+ assert isinstance(book, Book)
48
+ print(book)
49
+ # Output: title='The Name of the Wind' author='Patrick Rothfuss'
50
+ ```
51
+
52
+ ## Tutorials
53
+
54
+ Check out our [quickstart tutorial](https://mirascope.com/tutorials/getting_started/quickstart) and many other tutorials for an interactive way to getting started with Mirascope.
55
+
56
+ ## Usage
57
+
58
+ For a complete guide on how to use all of the various features Mirascope has to offer, read through our [Learn](https://mirascope.com/learn) documentation.
59
+
60
+ ## Versioning
61
+
62
+ Mirascope uses [Semantic Versioning](https://semver.org/).
63
+
64
+ ## Licence
65
+
66
+ This project is licensed under the terms of the [MIT License](https://github.com/Mirascope/mirascope/blob/dev/LICENSE).
@@ -0,0 +1,188 @@
1
+ # Mirascope
2
+
3
+ <p align="left">
4
+ <a href="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml" target="_blank"><img src="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml/badge.svg?branch=main" alt="Tests"/></a>
5
+ <a href="https://codecov.io/github/Mirascope/mirascope" target="_blank"><img src="https://codecov.io/github/Mirascope/mirascope/graph/badge.svg?token=HAEAWT3KC9" alt="Coverage"/></a>
6
+ <a href="https://mirascope.com/WELCOME" target="_blank"><img src="https://img.shields.io/badge/docs-available-brightgreen" alt="Docs"/></a>
7
+ <a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/v/mirascope.svg" alt="PyPI Version"/></a>
8
+ <a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/pyversions/mirascope.svg" alt="Stars"/></a>
9
+ <a href="https://github.com/Mirascope/mirascope/blob/dev/LICENSE"><img src="https://img.shields.io/github/license/Mirascope/mirascope.svg" alt="License"/></a>
10
+ </p>
11
+
12
+ Mirascope is a powerful, flexible, and user-friendly library that simplifies the process of working with LLMs through a unified interface that works across various supported providers, including [OpenAI](https://openai.com/), [Anthropic](https://www.anthropic.com/), [Mistral](https://mistral.ai/), [Gemini](https://gemini.google.com), [Groq](https://groq.com/), [Cohere](https://cohere.com/), [LiteLLM](https://www.litellm.ai/), [Azure AI](https://azure.microsoft.com/en-us/solutions/ai), [Vertex AI](https://cloud.google.com/vertex-ai), and [Bedrock](https://aws.amazon.com/bedrock/).
13
+
14
+ Whether you're generating text, extracting structured information, or developing complex AI-driven agent systems, Mirascope provides the tools you need to streamline your development process and create powerful, robust applications.
15
+
16
+ [:material-lightbulb: Why Use Mirascope](./WHY.md){: .md-button }
17
+ [:material-account-group: Join Our Community](https://join.slack.com/t/mirascope-community/shared_invite/zt-2ilqhvmki-FB6LWluInUCkkjYD3oSjNA){: .md-button }
18
+ [:material-star: Star the Repo](https://github.com/Mirascope/mirascope){: .md-button }
19
+
20
+ ## 30 Second Quickstart
21
+
22
+ Install Mirascope, specifying the provider(s) you intend to use, and set your API key:
23
+
24
+ {% set operating_systems = ["MacOS / Linux", "Windows"] %}
25
+ {% for os in operating_systems %}
26
+ === "{{ os }}"
27
+
28
+ {% for provider in supported_llm_providers %}
29
+ === "{{ provider }}"
30
+
31
+ ```bash
32
+ pip install "mirascope[{{ provider | provider_dir }}]"
33
+ {% if provider == "Gemini" %}
34
+ {% if os == "Windows" %}set GOOGLE_API_KEY=XXXXX
35
+ {% else %}export GOOGLE_API_KEY=XXXXX
36
+ {% endif %}
37
+ {% elif provider == "Cohere" %}
38
+ {% if os == "Windows" %}set CO_API_KEY=XXXXX
39
+ {% else %}export CO_API_KEY=XXXXX
40
+ {% endif %}
41
+ {% elif provider == "LiteLLM" %}
42
+ {% if os == "Windows" %}set OPENAI_API_KEY=XXXXX
43
+ {% else %}export OPENAI_API_KEY=XXXXX
44
+ {% endif %}
45
+ {% elif provider == "Azure AI" %}
46
+ {% if os == "Windows" %}set AZURE_INFERENCE_ENDPOINT=XXXXX
47
+ set AZURE_INFERENCE_CREDENTIAL=XXXXX
48
+ {% else %}export AZURE_INFERENCE_ENDPOINT=XXXXX
49
+ export AZURE_INFERENCE_CREDENTIAL=XXXXX
50
+ {% endif %}
51
+ {% elif provider == "Vertex AI" %}
52
+ gcloud init
53
+ gcloud auth application-default login
54
+ {% elif provider == "Bedrock" %}
55
+ aws configure
56
+ {% else %}
57
+ {% if os == "Windows" %}set {{ upper(provider | provider_dir) }}_API_KEY=XXXXX
58
+ {% else %}export {{ upper(provider | provider_dir) }}_API_KEY=XXXXX
59
+ {% endif %}
60
+ {% endif %}
61
+ ```
62
+ {% endfor %}
63
+ {% endfor %}
64
+
65
+ Make your first call to an LLM to extract the title and author of a book from the given text:
66
+
67
+ !!! mira "Mirascope"
68
+
69
+ {% for method, method_title in zip(prompt_writing_methods, prompt_writing_method_titles) %}
70
+ === "{{ method_title }}"
71
+
72
+ {% for provider in supported_llm_providers %}
73
+ === "{{ provider }}"
74
+
75
+ ```python hl_lines="10 15 17"
76
+ --8<-- "build/snippets/learn/response_models/basic_usage/{{ provider | provider_dir }}/{{ method }}.py:3:7"
77
+ --8<-- "build/snippets/learn/response_models/basic_usage/{{ provider | provider_dir }}/{{ method }}.py:10:21"
78
+ ```
79
+ {% endfor %}
80
+
81
+ {% endfor %}
82
+
83
+ ??? note "Official SDK"
84
+
85
+ {% for provider in supported_llm_providers %}
86
+ === "{{ provider }}"
87
+
88
+ {% if provider == "Anthropic" %}
89
+ ```python hl_lines="19-38 43"
90
+ {% elif provider == "Mistral" %}
91
+ ```python hl_lines="21-46 51"
92
+ {% elif provider == "Gemini" %}
93
+ ```python hl_lines="19-57 62"
94
+ {% elif provider == "Cohere" %}
95
+ ```python hl_lines="19-36 41"
96
+ {% elif provider == "LiteLLM" %}
97
+ ```python hl_lines="16-37 42"
98
+ {% elif provider == "Azure AI" %}
99
+ ```python hl_lines="26-46 51"
100
+ {% elif provider == "Vertex AI" %}
101
+ ```python hl_lines="23-62 67"
102
+ {% else %}
103
+ ```python hl_lines="18-39 44"
104
+ {% endif %}
105
+ --8<-- "examples/learn/response_models/basic_usage/official_sdk/{{ provider | provider_dir }}_sdk.py"
106
+ ```
107
+
108
+ {% endfor %}
109
+
110
+ ## Choose Your Path
111
+
112
+ ### Tutorials
113
+
114
+ <div class="grid cards" markdown>
115
+
116
+ - :material-clock-fast:{ .lg .middle } __Quickstart Guide__
117
+
118
+ ---
119
+
120
+ Comprehensive overview of core features and building blocks
121
+
122
+ [:octicons-arrow-right-24: Quickstart](./tutorials/getting_started/quickstart.ipynb)
123
+
124
+ - :material-database:{ .lg .middle } __Structured Outputs__
125
+
126
+ ---
127
+
128
+ Explore various techniques for generating structured outputs
129
+
130
+ [:octicons-arrow-right-24: Structured Outputs](./tutorials/getting_started/structured_outputs.ipynb)
131
+
132
+ - :material-link-variant:{ .lg .middle } __Dynamic Configuration & Chaining__
133
+
134
+ ---
135
+
136
+ Examples ranging from basic usage to more complex chaining techniques
137
+
138
+ [:octicons-arrow-right-24: Dynamic Configuration & Chaining](./tutorials/getting_started/dynamic_configuration_and_chaining.ipynb)
139
+
140
+ - :material-tools:{ .lg .middle } __Tools & Agents__
141
+
142
+ ---
143
+
144
+ Learn how to define tools for your LLM to build advanced AI agents
145
+
146
+ [:octicons-arrow-right-24: Tools & Agents](./tutorials/getting_started/tools_and_agents.ipynb)
147
+
148
+ </div>
149
+
150
+ ### Dive Deeper
151
+
152
+ <div class="grid cards" markdown>
153
+
154
+ - :material-school:{ .lg .middle } __Learn__
155
+
156
+ ---
157
+
158
+ In-depth exploration of Mirascope's many features and capabilities
159
+
160
+ [:octicons-arrow-right-24: Learn](./learn/index.md)
161
+
162
+ - :material-book-open-variant:{ .lg .middle } __Tutorials__
163
+
164
+ ---
165
+
166
+ Advanced usage patterns and real-world applications
167
+
168
+ [:octicons-arrow-right-24: Tutorials](./tutorials/more_advanced/text_classification.ipynb)
169
+
170
+ - :material-connection:{ .lg .middle } __Integrations__
171
+
172
+ ---
173
+
174
+ Integrations with third-party tools for enhanced usage
175
+
176
+ [:octicons-arrow-right-24: Integrations](./integrations/otel.md)
177
+
178
+ - :material-text-search:{ .lg .middle } __API Reference__
179
+
180
+ ---
181
+
182
+ Detailed information on classes and functions
183
+
184
+ [:octicons-arrow-right-24: Reference](./api/core/anthropic/call.md)
185
+
186
+ </div>
187
+
188
+ We're excited to see what you'll build with Mirascope, and we're here to help! Don't hesitate to reach out :)