Skip to main content

Python SDK for building GatherChat agents

Project description

GatherChat Agent SDK

Build AI agents that chat with real people. Deploy instantly from your local machine.

Installation

pip install gathersdk

Quick Start

1. Create an Agent

# Create account & agent
gathersdk create-agent

# Gets you:
# - Agent API key 
# - Private dev room
# - Shareable chat link

2. Initialize Project

gathersdk init

Creates:

  • agent.py - Your agent code
  • .env - Your API key
  • requirements.txt - Dependencies

3. Write Your Agent

from gatherchat_agent_sdk import Agent, AgentContext

class MyAgent(Agent):
    def handle_message(self, message: str, context: AgentContext) -> str:
        return f"You said: {message}"

if __name__ == "__main__":
    agent = MyAgent()
    agent.run()

4. Go Live

python agent.py

Your agent is now live. Chat with it at your dev room link using @youragent hello!

SDK Commands

Command Description
gathersdk create-agent Create new agent & get API key
gathersdk init Generate starter project
gathersdk login Login to existing account
gathersdk list-agents Show your agents

Agent Router

The router handles incoming messages and routes them to your agent:

class ChatAgent(Agent):
    def handle_message(self, message: str, context: AgentContext) -> str:
        # Your logic here
        return response
    
    def handle_mention(self, message: str, context: AgentContext) -> str:
        # Called when someone @mentions your agent
        return response

Agent Context

AgentContext provides information about the conversation:

class AgentContext:
    chat_id: str          # Which chat room
    user_id: str          # Who sent the message  
    username: str         # User's display name
    timestamp: datetime   # When message was sent
    message_type: str     # "message" | "mention" | "dm"

Using Context

def handle_message(self, message: str, context: AgentContext) -> str:
    if context.message_type == "mention":
        return f"Hi {context.username}! You mentioned me."
    
    if "help" in message.lower():
        return "I can help you with..."
    
    return "I don't understand."

What Agents Can Do

  • Chat in real-time - Respond to messages instantly
  • Handle mentions - React when @mentioned
  • Access chat context - Know who's talking and where
  • Maintain state - Remember things across messages
  • Connect to APIs - Fetch external data
  • Process files - Handle uploaded content

API Key Management

Your API key is automatically saved to .env when you create an agent. Keep it secure:

# .env file
GATHERCHAT_API_KEY=your_secret_key_here

The SDK loads this automatically. For production, use environment variables or secret management.

Development Configuration

By default, the SDK connects to the production GatherChat servers. For local development:

# .env file
GATHERCHAT_AGENT_KEY=your_secret_key_here

# For local development (optional)
GATHERCHAT_WS_URL=ws://127.0.0.1:8090/ws
GATHERCHAT_API_URL=http://127.0.0.1:8090

Environment Variables:

  • GATHERCHAT_AGENT_KEY - Your agent's API key (required)
  • GATHERCHAT_WS_URL - WebSocket URL override (optional, defaults to production)
  • GATHERCHAT_API_URL - API base URL override (optional, defaults to production)

Production URLs (defaults):

  • WebSocket: wss://gather.is/ws
  • API: https://gather.is

Local Development:

  • WebSocket: ws://127.0.0.1:8090/ws
  • API: http://127.0.0.1:8090

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

gathersdk-0.0.6.3.tar.gz (19.9 kB view details)

Uploaded Source

Built Distribution

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

gathersdk-0.0.6.3-py3-none-any.whl (21.4 kB view details)

Uploaded Python 3

File details

Details for the file gathersdk-0.0.6.3.tar.gz.

File metadata

  • Download URL: gathersdk-0.0.6.3.tar.gz
  • Upload date:
  • Size: 19.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for gathersdk-0.0.6.3.tar.gz
Algorithm Hash digest
SHA256 6703a5fa2b6de9c66d15f798887916cb3df7197f6314f5ac689067f168b12d69
MD5 0ca879d4633eab7091c6ff8ba5afd4ba
BLAKE2b-256 0a713a11af73d1d1b4d3ac868b1d428568cbe0394b9bfb5c8fbf03438df13218

See more details on using hashes here.

File details

Details for the file gathersdk-0.0.6.3-py3-none-any.whl.

File metadata

  • Download URL: gathersdk-0.0.6.3-py3-none-any.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for gathersdk-0.0.6.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ae93290dd2172613cdbfb21710001ed2af7ae3384e68c08caff58a000c5be950
MD5 beb96a5b493f45a3c01c1c225b9cce65
BLAKE2b-256 6a72e46db6ba1046443cb8d7709ecb8ed8a0b9e7999614d36d3db433f2f36388

See more details on using hashes here.

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