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
Copy file name to clipboardExpand all lines: src/multion/client.py
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ class MultiOn(BaseMultiOn):
28
28
29
29
- api_key: typing.Optional[str].
30
30
31
+
- agentops_api_key: typing.Optional[str]. If you wish to visualize your MultiOn agent's execution at app.agentops.ai
32
+
31
33
- timeout: typing.Optional[float]. The timeout to be used, in seconds, for requests by default the timeout is 60 seconds, unless a custom httpx client is used, in which case a default is not set.
32
34
33
35
- follow_redirects: typing.Optional[bool]. Whether the default httpx client follows redirects or not, this is irrelevant if a custom httpx client is passed in.
@@ -72,7 +80,7 @@ class AsyncMultiOn(AsyncBaseMultiOn):
72
80
73
81
- api_key: typing.Optional[str].
74
82
75
-
- agentops_api_key: typing.Optional[str].
83
+
- agentops_api_key: typing.Optional[str]. If you wish to visualize your MultiOn agent's execution at app.agentops.ai
76
84
77
85
- timeout: typing.Optional[float]. The timeout to be used, in seconds, for requests by default the timeout is 60 seconds, unless a custom httpx client is used, in which case a default is not set.
78
86
@@ -89,8 +97,12 @@ class AsyncMultiOn(AsyncBaseMultiOn):
0 commit comments