Skip to main content

No project description provided

Project description

MultiOn Python Library

fern shield pypi

The MultiOn Python Library provides convenient access to the MultiOn API from applications written in Python.

Documentation

API reference documentation is available here.

Installation

Add this dependency to your project's build file:

pip install multion
# or
poetry add multion

Usage

Simply import MultiOn and start making calls to our API.

import os
from multion.client import MultiOn

client = MultiOn(
    api_key="YOUR_API_KEY" # defaults to os.getenv("MULTION_API_KEY")
)
response = client.browse(
    url="https://google.com"
)

Async Client

The SDK also exports an async client so that you can make non-blocking calls to our API.

import asyncio
from multion.client import AsyncMultiOn

client = AsyncMultiOn(
    api_key="YOUR_API_KEY" # defaults to os.getenv("MULTION_API_KEY")
)

async def main() -> None:
    response = await client.browse(
        url="https://google.com"
    )

asyncio.run(main())

Exception Handling

All errors thrown by the SDK will be subclasses of ApiError.

import multion

try:
  client.browse(...)
except multion.core.ApiError as e: # Handle all errors
  print(e.status_code)
  print(e.body)

Agent Tracing and Observability

MultiOn uses AgentOps to provide session replays, metrics, and monitoring for AI agents. MultiOn runs are automatically tracked when an AgentOps API key is provided. You can find your API key in the AgentOps dashboard.

import os
from multion.client import MultiOn
multion = MultiOn(
    api_key=os.environ.get("MULTION_API_KEY"),
    agentops_api_key=os.environ.get("AGENTOPS_API_KEY"),
)

https://github.com/AgentOps-AI/agentops/blob/main/docs/images/agentops-multion-step.gif?raw=true

At a high level, AgentOps gives you the ability to monitor LLM calls, costs, latency, agent failures, multi-agent interactions, tool usage session-wide statistics, and more. For more info, check out the AgentOps Repo.

Examples

AgentOps provides session drilldowns for viewing MultiOn browse events, LLM calls, and tool usage in real-time. This feature is useful for debugging and understanding how agents interact with users as well as other agents.

Autonomous Web Browsing

Web Browser Agent Tracking

Step-by-Step Web Browsing

Webpage Data Retrieval

Advanced

Retries

The MultiOn SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long as the request is deemed retriable and the number of retry attempts has not grown larger than the configured retry limit.

A request is deemed retriable when any of the following HTTP status codes is returned:

  • 408 (Timeout)
  • 429 (Too Many Requests)
  • 5XX (Internal Server Errors)

Use the max_retries request option to configure this behavior.

from multion.client import MultiOn

client = MultiOn()

# Override retries for a specific method
client.browse(url="https://google.com", {
    max_retries=1
})

Timeouts

By default, requests time out after 60 seconds. You can configure this with a timeout option at the client or request level.

from multion.client import MultiOn

client = MultiOn(
    # All timeouts are 20 seconds
    timeout=20.0,
)

# Override timeout for a specific method
client.browse(url="https://google.com", {
    timeout_in_seconds=20.0
})

Custom HTTP client

You can override the httpx client to customize it for your use-case. Some common use-cases include support for proxies and transports.

import httpx

from multion.client import MultiOn

client = MultiOn(
    http_client=httpx.Client(
        proxies="http://my.test.proxy.example.com",
        transport=httpx.HTTPTransport(local_address="0.0.0.0"),
    ),
)

Beta Status

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning the package version to a specific version. This way, you can install the same version each time without breaking changes.

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

multion-1.3.8.tar.gz (25.7 kB view details)

Uploaded Source

Built Distribution

multion-1.3.8-py3-none-any.whl (50.3 kB view details)

Uploaded Python 3

File details

Details for the file multion-1.3.8.tar.gz.

File metadata

  • Download URL: multion-1.3.8.tar.gz
  • Upload date:
  • Size: 25.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.8.18 Linux/5.15.0-1073-azure

File hashes

Hashes for multion-1.3.8.tar.gz
Algorithm Hash digest
SHA256 e35e9c12f76555dbefbf2e8135255bfb2d26481ca39e61219a532e2814a0d183
MD5 5b92491c943a6b667b558c0e04e20963
BLAKE2b-256 9cb52005f9c3d6b25c1ba32cb8abc9d7a524ae0f67e48a6aa5027fe2524dee85

See more details on using hashes here.

File details

Details for the file multion-1.3.8-py3-none-any.whl.

File metadata

  • Download URL: multion-1.3.8-py3-none-any.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.8.18 Linux/5.15.0-1073-azure

File hashes

Hashes for multion-1.3.8-py3-none-any.whl
Algorithm Hash digest
SHA256 606e3344c234f231ffcdc121ab6287aeab5929dc7c1498a43162e9b3e2c1fc68
MD5 4f42ecffc93f6240d643d60742fa5cae
BLAKE2b-256 57fa92c3b741daa83760d5ee996f49b98bc4e41124022b6848535439bb301e4c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page