Skip to main content

SilverRiver SDK for advanced automation and AI-driven tasks

Project description

SilverRiver

SilverRiver is an SDK for advanced automation and AI-driven tasks.

Installation

You can install SilverRiver using pip:

pip install silverriver

Agentic API

Here's a basic example of how to use SilverRiver:

import os
import time

from silverriver import AgentChatInterface
from silverriver.client import Crux
from silverriver.interfaces import SupportedModes
from silverriver.interfaces.data_models import Observation, ChatMessage, HUMAN_ROLE


# Create a custom chat interface
class CustomChat(AgentChatInterface):
    def __init__(self, init_message):
        self.chat_history = init_message

    def send_message_to_user(self, message):
        # Implement this method to send messages to the user
        pass

    def wait_for_user_message(self):
        # Implement this method to wait for and return user messages
        pass


# Initialize the Crux client
client = Crux(api_key=os.environ["CRUX_API_KEY"])

# Create a chat instance with an initial message
chat = CustomChat(
    init_message=[ChatMessage(role=HUMAN_ROLE, message="On which website are you?", timestamp=time.time())]
)

# Create a browser session
browser_session, browser_obs, browser_meta = client.create_browser_session(
    start_url="https://www.example.com",
    chat=chat
)

# Create an observation
browser_obs = Observation(
    **dict(browser_obs),
    chat_messages=chat.chat_history,
    last_action_error="",
)

# Get an action from the AI agent
code = client.get_action(browser_obs, mode=SupportedModes.FLASH)

# Execute the action
browser_session.execute(code)

# Close the client when done
client.close()

Workflow Automation

SilverRiver now includes a command-line interface (CLI) for easier interaction. Here are the available commands:

Authentication

To authenticate with Crux and save the API token:

silverriver auth --api-key YOUR_API_KEY

This will save the configuration file in ~/.config/silverriver.

Record a Trace

To record a new trace:

silverriver record URL [-o OUTPUT]
  • URL: The URL of the webpage to trace (must start with http:// or https://)
  • -o OUTPUT, --output OUTPUT: The output filename for the trace (default: 'silverriver_trace')

License

This project is licensed under the MIT License.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

silverriver-0.1.37b8-py3-none-any.whl (20.9 kB view details)

Uploaded Python 3

File details

Details for the file silverriver-0.1.37b8-py3-none-any.whl.

File metadata

File hashes

Hashes for silverriver-0.1.37b8-py3-none-any.whl
Algorithm Hash digest
SHA256 a04bfbbe229079ea398013629a668bfe114f7e9de5f2e6bda814e81a8d98c17a
MD5 50440174853765a71fcdcb3e586cae2f
BLAKE2b-256 1466a0cbbdfe8ff3784c3d9caedcb2bd98f75208cdac5144647603da6a9ad722

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