Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
🌿 Fern Regeneration + agentops integration
Browse files Browse the repository at this point in the history
🌿 Fern Regeneration -- June 5, 2024
  • Loading branch information
armandobelardo authored Jun 5, 2024
2 parents d4c3631 + efe8b7c commit 5dce6fa
Show file tree
Hide file tree
Showing 22 changed files with 1,278 additions and 401 deletions.
6 changes: 6 additions & 0 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Specify files that shouldn't be modified by Fern

README.md


<!-- AgentOps integration -->
src/multion/client.py
src/multion/sessions/wrapped_client.py
src/multion/wrappers.py
408 changes: 304 additions & 104 deletions poetry.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "multion"
version = "1.1.0"
version = "1.2.0"
description = ""
readme = "README.md"
authors = []
Expand All @@ -10,6 +10,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.8"
agentops = "^0.2.2"
httpx = ">=0.21.2"
httpx-sse = "0.4.0"
pydantic = ">= 1.9.2"
Expand Down
13 changes: 12 additions & 1 deletion src/multion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
HttpValidationError,
InternalServerErrorResponse,
Metadata,
Mode,
PaymentRequiredResponse,
RemoteValue,
RetrieveOutput,
Expand All @@ -14,6 +15,7 @@
SessionStepStreamChunk_Event,
SessionStepStreamChunk_FinalEvent,
SessionStepSuccess,
SessionStepSuccessMetadata,
SessionStreamChunkEvent,
SessionStreamChunkEventData,
SessionStreamChunkEventDataDelta,
Expand All @@ -24,7 +26,13 @@
ValidationError,
ValidationErrorLocItem,
)
from .errors import BadRequestError, InternalServerError, UnauthorizedError, UnprocessableEntityError
from .errors import (
BadRequestError,
InternalServerError,
PaymentRequiredError,
UnauthorizedError,
UnprocessableEntityError,
)
from . import sessions
from .environment import MultiOnEnvironment
from .sessions import (
Expand All @@ -46,7 +54,9 @@
"InternalServerError",
"InternalServerErrorResponse",
"Metadata",
"Mode",
"MultiOnEnvironment",
"PaymentRequiredError",
"PaymentRequiredResponse",
"RemoteValue",
"RetrieveOutput",
Expand All @@ -55,6 +65,7 @@
"SessionStepStreamChunk_Event",
"SessionStepStreamChunk_FinalEvent",
"SessionStepSuccess",
"SessionStepSuccessMetadata",
"SessionStreamChunkEvent",
"SessionStreamChunkEventData",
"SessionStreamChunkEventDataDelta",
Expand Down
Loading

0 comments on commit 5dce6fa

Please sign in to comment.