Skip to content

Commit 5dce6fa

Browse files
🌿 Fern Regeneration + agentops integration
🌿 Fern Regeneration -- June 5, 2024
2 parents d4c3631 + efe8b7c commit 5dce6fa

22 files changed

+1278
-401
lines changed

.fernignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
# Specify files that shouldn't be modified by Fern
22

33
README.md
4+
5+
6+
<!-- AgentOps integration -->
7+
src/multion/client.py
8+
src/multion/sessions/wrapped_client.py
9+
src/multion/wrappers.py

poetry.lock

Lines changed: 304 additions & 104 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "multion"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
description = ""
55
readme = "README.md"
66
authors = []
@@ -10,6 +10,7 @@ packages = [
1010

1111
[tool.poetry.dependencies]
1212
python = "^3.8"
13+
agentops = "^0.2.2"
1314
httpx = ">=0.21.2"
1415
httpx-sse = "0.4.0"
1516
pydantic = ">= 1.9.2"

src/multion/__init__.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
HttpValidationError,
77
InternalServerErrorResponse,
88
Metadata,
9+
Mode,
910
PaymentRequiredResponse,
1011
RemoteValue,
1112
RetrieveOutput,
@@ -14,6 +15,7 @@
1415
SessionStepStreamChunk_Event,
1516
SessionStepStreamChunk_FinalEvent,
1617
SessionStepSuccess,
18+
SessionStepSuccessMetadata,
1719
SessionStreamChunkEvent,
1820
SessionStreamChunkEventData,
1921
SessionStreamChunkEventDataDelta,
@@ -24,7 +26,13 @@
2426
ValidationError,
2527
ValidationErrorLocItem,
2628
)
27-
from .errors import BadRequestError, InternalServerError, UnauthorizedError, UnprocessableEntityError
29+
from .errors import (
30+
BadRequestError,
31+
InternalServerError,
32+
PaymentRequiredError,
33+
UnauthorizedError,
34+
UnprocessableEntityError,
35+
)
2836
from . import sessions
2937
from .environment import MultiOnEnvironment
3038
from .sessions import (
@@ -46,7 +54,9 @@
4654
"InternalServerError",
4755
"InternalServerErrorResponse",
4856
"Metadata",
57+
"Mode",
4958
"MultiOnEnvironment",
59+
"PaymentRequiredError",
5060
"PaymentRequiredResponse",
5161
"RemoteValue",
5262
"RetrieveOutput",
@@ -55,6 +65,7 @@
5565
"SessionStepStreamChunk_Event",
5666
"SessionStepStreamChunk_FinalEvent",
5767
"SessionStepSuccess",
68+
"SessionStepSuccessMetadata",
5869
"SessionStreamChunkEvent",
5970
"SessionStreamChunkEventData",
6071
"SessionStreamChunkEventDataDelta",

0 commit comments

Comments
 (0)