Skip to main content

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

Project description

Pancaik Agents

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.1.tar.gz (54.4 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.1-py3-none-any.whl (69.6 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pancaik-0.1.1.tar.gz
Algorithm Hash digest
SHA256 628b2e380a8cb90bd055f892a57c78b75a4ebb7caeb6a1360186d35b333286f8
MD5 db4dbb017dc864e43ae1c69f3a6b342f
BLAKE2b-256 801d7ec1e67c0002cdea2e5de4a08222806e745c66e9f1733d0cdc92867a0f2f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pancaik-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d75d55d10f6c77b4718b508345d1a597ce89ef7f0b591b6ee5082f7cdbafc94a
MD5 a7baf03d98764f1497b66c9c9e83d04e
BLAKE2b-256 e9cfe0282a3a69024967ea7ee6f7860ba1b2fc1fb29bfb412725e663367f0d11

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