Skip to main content

A framework for building intelligent agents that perform scheduled tasks and provide chat interfaces

Project description

Pancaik Agents

📚 Documentation

A framework for building intelligent agents that perform scheduled tasks and provide chat interfaces.

Features

  • Task Automation: Agents accomplish objectives through scheduled one-off or recurring tasks
  • Chat Interface: Direct interaction with agents through conversational interfaces
  • Flexible Scheduling: Support for cron-style, interval-based, and one-time scheduling
  • Extensible Architecture: Easy to customize and extend for specific use cases

Installation

# Install from PyPI
pip install pancaik

Getting Started

Building a Pancaik agent involves three simple steps:

1. Define your agent's tasks in a YAML configuration

# config.yaml
tasks:
  greet_share_time:
    objective: "Greet a person by name and share the current time"
    scheduler:
      type: "random_interval"
      params:
        min_minutes: 5
        max_minutes: 30
    pipeline:
      - greet
      - say_current_hour

2. Create your agent class with task functions

# greeter_agent.py
from pancaik.core.agent import Agent
import datetime

class GreetingAgent(Agent):
    """An agent specialized in greetings and conversations"""
    name = "greeting_agent"
    
    def __init__(self, id=None, yaml_path=None):
        super().__init__(yaml_path=yaml_path, id=id)
    
    async def say_current_hour(self):
        """Get and say the current time"""
        current_time = datetime.datetime.now()
        formatted_time = current_time.strftime("%H:%M:%S")
        return {"time": f"The current time is {formatted_time}."}
        
    async def greet(self, name="World"):
        """Greet a person by name"""
        greeting = f"Hello, {name}! Nice to meet you."
        return {"greeting": greeting}

3. Run your agent

# run_server.py
import asyncio
from greeter_agent import GreetingAgent
from pancaik import init, run_server
from datetime import datetime

async def main():
    # Initialize pancaik
    app = await init({
        "run_continuous": True,
        "app_title": "Greeter Agent Demo"
    })
    
    # Initialize agent
    greeter = GreetingAgent(yaml_path="config.yaml")

    # Run a task directly
    result = await greeter.run("greet", name="Alice")
    print(result["greeting"])  # Outputs: Hello, Alice! Nice to meet you.
    
    # Schedule a task
    await greeter.schedule_task(
        task_name="greet_share_time", 
        next_run=datetime.now(),
        params={"name": "Anna"}
    )

    return app

if __name__ == "__main__":
    app = asyncio.run(main())
    # Start the server
    run_server(app, host="0.0.0.0", port=8080)

Use Cases

  • Social media management with automated posting
  • Customer support chatbots with knowledge base integration
  • Inquiry and quotation systems with form processing
  • Content aggregation and distribution systems

Local Development

Running MongoDB Locally

For local development and testing, you can use Docker Compose to run a MongoDB instance:

# Start MongoDB
docker-compose up -d

# Connect to the MongoDB instance
# Default connection string: mongodb://localhost:27017/pancaik

# Stop MongoDB when finished
docker-compose down

This will start a MongoDB container accessible at mongodb://localhost:27017/pancaik, which is the default connection string used by Pancaik.

License

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 Distribution

pancaik-0.2.0a1.tar.gz (65.0 kB view details)

Uploaded Source

Built Distribution

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

pancaik-0.2.0a1-py3-none-any.whl (90.3 kB view details)

Uploaded Python 3

File details

Details for the file pancaik-0.2.0a1.tar.gz.

File metadata

  • Download URL: pancaik-0.2.0a1.tar.gz
  • Upload date:
  • Size: 65.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.11.4 Darwin/24.4.0

File hashes

Hashes for pancaik-0.2.0a1.tar.gz
Algorithm Hash digest
SHA256 fbbb0916e3e48e7dfb12737fa5b6c4e8d4c47e79125e4c7889ee0579c16d650f
MD5 2706e21d8bb5146fbe9f878caecf2413
BLAKE2b-256 cc62571d88aa6d56d094db88253cb4ef471a3dedabd87d5ea92d1f82dc246489

See more details on using hashes here.

File details

Details for the file pancaik-0.2.0a1-py3-none-any.whl.

File metadata

  • Download URL: pancaik-0.2.0a1-py3-none-any.whl
  • Upload date:
  • Size: 90.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.11.4 Darwin/24.4.0

File hashes

Hashes for pancaik-0.2.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 8e01bb43044d4973c8fe3bbfb282acbe68d451d841870d30bc2ff64434e2711b
MD5 d324265790a7285fbcebb3c99ff47301
BLAKE2b-256 a391f6ff9a8ca76cb069e924e38a2002145b7ae6a3d7b3cecf985d992ee29dd7

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