You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param prefix_messages (list, optional): A list of messages to include after the `System` message, but before the `User` and `Assistant` pairs configured in your deployment. Defaults to None.
344
403
:param messages (list, optional): The messages to send to the LLM with the messages template. Defaults to None.
345
404
:param extra_params (dict, optional): Additional parameters to include with the invocation. Defaults to None.
405
+
:param invoke_options (dict, optional): Options for the deployment invocation. Defaults to None.
Invokes a deployment with the specified key using the async HTTP client and stream the response.
@@ -394,6 +456,7 @@ async def invoke_with_stream(
394
456
:param prefix_messages (list, optional): A list of messages to include after the `System` message, but before the `User` and `Assistant` pairs configured in your deployment. Defaults to None.
395
457
:param messages (Optional): The messages parameter. Defaults to None.
396
458
:param extra_params (dict, optional): Additional parameters to include with the invocation. Defaults to None.
459
+
:param invoke_options (dict, optional): Options for the deployment invocation. Defaults to None.
:param prefix_messages (list, optional): A list of messages to include after the `System` message, but before the `User` and `Assistant` pairs configured in your deployment. Defaults to None.
342
403
:param messages (list, optional): The messages to send to the LLM with the messages template. Defaults to None.
343
404
:param extra_params (dict, optional): Additional parameters to include with the invocation. Defaults to None.
405
+
:param invoke_options (dict, optional): Options for the deployment invocation. Defaults to None.
Invokes a deployment with the specified key and stream the response.
@@ -394,6 +458,7 @@ def invoke_with_stream(
394
458
:param prefix_messages (list, optional): A list of messages to include after the `System` message, but before the `User` and `Assistant` pairs configured in your deployment. Defaults to None.
395
459
:param messages (list, optional): The messages to send to the LLM with the template. Defaults to None.
396
460
:param extra_params (dict, optional): Additional parameters to include with the invocation. Defaults to None.
461
+
:param invoke_options (dict, optional): Options for the deployment invocation. Defaults to None.
Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[tool.poetry]
2
2
name = "orq_ai_sdk"
3
-
version = '2.13.1'
3
+
version = '2.13.2'
4
4
description = "Integrate and operate your products with the power of Large Language Models from a single collaboration platform. Conduct prompt engineering, experimentation, operations and monitoring across models, with full transparency on quality and costs."
0 commit comments