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.1.2.tar.gz (54.6 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.1.2-py3-none-any.whl (69.7 kB view details)

Uploaded Python 3

File details

Details for the file pancaik-0.1.2.tar.gz.

File metadata

  • Download URL: pancaik-0.1.2.tar.gz
  • Upload date:
  • Size: 54.6 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.1.2.tar.gz
Algorithm Hash digest
SHA256 cc3cb4e902f25ecf88c007a2fa002018709eacc3b0abdcc2cf4a771d73f93bd0
MD5 f06438d138fd6568a7f42d003a76279f
BLAKE2b-256 fcd51111dc28f6b520810e629ae782269bc6d2e9cc7e942e3b708c338154005e

See more details on using hashes here.

File details

Details for the file pancaik-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: pancaik-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 69.7 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.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e1d48b782fc8e539cfc496cb01edfd4bbc322da58d92f8fc6ad4351dd4307fa2
MD5 153afe6d70377e2540d7f88058c1102a
BLAKE2b-256 51cce4499a4c3e4e46a94f7260ed05b8ae6d17c9965c6de55fe5e75342941a56

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