Skip to main content

Python SDK for EdgeCrab — a Rust-native autonomous coding agent

Project description

edgecrab-sdk

PyPI Python

Python SDK for EdgeCrab — a Rust-native autonomous coding agent.

Install

pip install edgecrab-sdk

Quick Start

from edgecrab import EdgeCrabClient

# Connect to a running EdgeCrab API server
client = EdgeCrabClient(
    base_url="http://127.0.0.1:8642",
    api_key="your-api-key",  # optional
)

# Simple chat
reply = client.chat("Explain Rust ownership in 3 sentences")
print(reply)

# With system prompt
reply = client.chat(
    "Refactor this function",
    system="You are a senior Rust developer",
    model="anthropic/claude-sonnet-4-20250514",
)

Async

import asyncio
from edgecrab import AsyncEdgeCrabClient

async def main():
    async with AsyncEdgeCrabClient() as client:
        reply = await client.chat("Hello!")
        print(reply)

asyncio.run(main())

Agent API (recommended)

from edgecrab import Agent

agent = Agent(
    model="anthropic/claude-sonnet-4-20250514",
    system_prompt="You are a helpful coding assistant",
)

# Chat with automatic conversation history
reply = agent.chat("Explain Rust ownership")
print(reply)

# Continue the conversation
follow_up = agent.chat("Give me an example")
print(follow_up)

# Full run with result metadata
result = agent.run("Refactor this function")
print(result.response)
print(f"Turns: {result.turns_used}, Tokens: {result.usage.total_tokens}")

Streaming

from edgecrab import EdgeCrabClient, ChatMessage

with EdgeCrabClient() as client:
    messages = [ChatMessage(role="user", content="Write a haiku about Rust")]
    for chunk in client.stream_completion(messages=messages):
        for choice in chunk.choices:
            if choice.delta.content:
                print(choice.delta.content, end="", flush=True)
    print()

CLI

edgecrab chat "What is the meaning of life?"
edgecrab chat --model gpt-4 --system "Be concise" "Explain monads"
edgecrab chat --stream "Tell me a story"
edgecrab models
edgecrab health

Environment Variables

Variable Description
EDGECRAB_BASE_URL API server URL (default: http://127.0.0.1:8642)
EDGECRAB_API_KEY Bearer token for authentication

API Reference

EdgeCrabClient

Method Description
chat(message, *, model, system, temperature, max_tokens) Simple chat — returns string
create_completion(messages, *, model, temperature, max_tokens, tools) Full completion — returns ChatCompletionResponse
stream_completion(messages, *, model, temperature, max_tokens, tools) Streaming — yields StreamChunk
list_models() List available models
health() Health check

AsyncEdgeCrabClient

Same API as EdgeCrabClient, but all methods are async.

Agent / AsyncAgent

Method Description
chat(message) Send message, return reply. Maintains history.
run(message, *, max_turns) Full conversation run — returns AgentResult
add_message(role, content) Inject a message into history
reset() Clear history, start new session
get_messages() Get conversation history
get_turn_count() Number of completed turns
get_usage() Accumulated token usage
list_models() List available models
health() Check server health

Links

Project details


Download files

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

Source Distribution

edgecrab_sdk-0.3.5.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

edgecrab_sdk-0.3.5-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file edgecrab_sdk-0.3.5.tar.gz.

File metadata

  • Download URL: edgecrab_sdk-0.3.5.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for edgecrab_sdk-0.3.5.tar.gz
Algorithm Hash digest
SHA256 e143b7bbafc285e271a177637e4ab929ca934d4b5dd2973a4d4d68d3adaad3cd
MD5 9cc76974e91333275fc16387595372a0
BLAKE2b-256 3181134574b8d74d824970e756a08a6965a59232b684642f8fcaf3a4d3d0c7ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for edgecrab_sdk-0.3.5.tar.gz:

Publisher: release-python.yml on raphaelmansuy/edgecrab

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file edgecrab_sdk-0.3.5-py3-none-any.whl.

File metadata

  • Download URL: edgecrab_sdk-0.3.5-py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for edgecrab_sdk-0.3.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4cd17f31eb8a345343945e730e884e04df909a3c6d7dfc779c456444b984f22f
MD5 a34a75fbf3c9e6f75a9ae5ac85160cfc
BLAKE2b-256 dc8888ed4389135032c6c9b642e1964fd0435f42693fdd57092f4b2faf221298

See more details on using hashes here.

Provenance

The following attestation bundles were made for edgecrab_sdk-0.3.5-py3-none-any.whl:

Publisher: release-python.yml on raphaelmansuy/edgecrab

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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