Skip to main content

A Package containing core logic and schema for rakam-systems

Project description

Rakam System Core

The core package of Rakam Systems providing foundational interfaces, base components, and utilities.

Overview

rakam-system-core is the foundation of the Rakam Systems framework. It provides:

  • Base Component: Abstract base class with lifecycle management
  • Interfaces: Standard interfaces for agents, tools, vector stores, embeddings, and loaders
  • Configuration System: YAML/JSON configuration loading and validation
  • Tracking System: Input/output tracking for debugging and evaluation
  • Logging Utilities: Structured logging with color support

This package is required by both rakam-system-agent and rakam-systems-vectorstore.

Installation

pip install -e ./rakam-system-core

Key Components

BaseComponent

All components extend BaseComponent which provides:

  • Lifecycle management with setup() and shutdown() methods
  • Auto-initialization via __call__
  • Context manager support
  • Built-in evaluation harness
from rakam_systems_core.ai_core.base import BaseComponent

class MyComponent(BaseComponent):
    def setup(self):
        super().setup()
        # Initialize resources

    def shutdown(self):
        # Clean up resources
        super().shutdown()

    def run(self, *args, **kwargs):
        # Main logic
        pass

Interfaces

Standard interfaces for building AI systems:

  • AgentComponent: AI agents with sync/async support
  • ToolComponent: Callable tools for agents
  • LLMGateway: LLM provider abstraction
  • VectorStore: Vector storage interface
  • EmbeddingModel: Text embedding interface
  • Loader: Document loading interface
  • Chunker: Text chunking interface
from rakam_systems_core.ai_core.interfaces.agent import AgentComponent
from rakam_systems_core.ai_core.interfaces.tool import ToolComponent
from rakam_systems_core.ai_core.interfaces.vectorstore import VectorStore

Configuration System

Load and validate configurations from YAML files:

from rakam_systems_core.ai_core.config_loader import ConfigurationLoader

loader = ConfigurationLoader()
config = loader.load_from_yaml("agent_config.yaml")
agent = loader.create_agent("my_agent", config)

Tracking System

Track inputs and outputs for debugging:

from rakam_systems_core.ai_core.tracking import TrackingMixin

class MyAgent(TrackingMixin, BaseAgent):
    pass

agent.enable_tracking(output_dir="./tracking")
# Use agent...
agent.export_tracking_data(format='csv')

Package Structure

rakam-system-core/
├── src/rakam_systems_core/
│   ├── ai_core/
│   │   ├── base.py              # BaseComponent
│   │   ├── interfaces/          # Standard interfaces
│   │   ├── config_loader.py     # Configuration system
│   │   ├── tracking.py          # I/O tracking
│   │   └── mcp/                 # MCP server support
│   └── ai_utils/
│       └── logging.py           # Logging utilities
└── pyproject.toml

Usage in Other Packages

Agent Package

# rakam-system-agent uses core interfaces
from rakam_systems_core.ai_core.interfaces.agent import AgentComponent
from rakam_system_agent import BaseAgent

agent = BaseAgent(name="my_agent", model="openai:gpt-4o")

Vectorstore Package

# rakam-systems-vectorstore uses core interfaces
from rakam_systems_core.ai_core.interfaces.vectorstore import VectorStore
from rakam_systems_vectorstore import ConfigurablePgVectorStore

store = ConfigurablePgVectorStore(config=config)

Development

This package contains only interfaces and utilities. To contribute:

  1. Install in editable mode: pip install -e ./rakam-system-core
  2. Make changes to interfaces or utilities
  3. Ensure backward compatibility with agent and vectorstore packages
  4. Update version in pyproject.toml

License

Apache 2.0

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

rakam_systems_core-0.1.1rc7.tar.gz (35.5 kB view details)

Uploaded Source

Built Distribution

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

rakam_systems_core-0.1.1rc7-py3-none-any.whl (49.6 kB view details)

Uploaded Python 3

File details

Details for the file rakam_systems_core-0.1.1rc7.tar.gz.

File metadata

File hashes

Hashes for rakam_systems_core-0.1.1rc7.tar.gz
Algorithm Hash digest
SHA256 f22a37c7838913e9960462901f80544d7c6042692b3c12c2c611dc655284e8d3
MD5 26a12220cf81e0a2c056721d2f1c3727
BLAKE2b-256 b60cc98ddf37434a557d1fb83b196edc9a6072caa5ea3c9558082b77048ec47c

See more details on using hashes here.

File details

Details for the file rakam_systems_core-0.1.1rc7-py3-none-any.whl.

File metadata

File hashes

Hashes for rakam_systems_core-0.1.1rc7-py3-none-any.whl
Algorithm Hash digest
SHA256 4f8173d91d3f9cb4547a9b78c6b8b32574a9bbfbf150cfbd2ed565e0ec87f72b
MD5 40999b9747dce29dcb7c712c94bcfd51
BLAKE2b-256 dce7789c0983bfaa86e95c0b943a1a7be7735fc2d933ec38373bfa0cab5a06c9

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