Skip to main content

No project description provided

Project description

Digital Employee Core

A Python library for building and managing AI-powered digital employees with support for tools, MCPs (Model Context Protocol), and flexible configuration management.

Setup

1. Install Dependencies

poetry install

2. Configure Environment

Copy the example environment file and add your credentials:

cp .env.example .env

Edit .env with your configuration:

# Required
AIP_API_URL=https://your-ai-platform-url.com
AIP_API_KEY=your-api-key

Tool-Specific Requirements

E2B Sandbox Tool

This tool requires an api_key parameter to be provided. You can either:

  • Pass the API key directly as a parameter when using the tool, or
  • Set the E2B_API_KEY environment variable (the tool will use this automatically if no parameter is provided)

Hybrid Vector Retrieval Tool

This tool requires AWS credentials to be configured in the AIP environment where the digital employee is deployed.

Configuration Management

Understanding MCP Configuration Placeholders

The library uses YAML configuration templates (digital_employee_core/config_templates/mcp_configs.yaml and tool_configs.yaml) that contain placeholder keys in dollar-brace format (e.g., ${GOOGLE_CALENDAR_MCP_URL}). These placeholders need to be replaced with actual values at runtime.

How Placeholders Work:

  1. Configuration Template (in mcp_configs.yaml):
digital_employee_google_calendar_mcp:
  config:
    url: ${GOOGLE_CALENDAR_MCP_URL}
    allowed_tools: ${GOOGLE_CALENDAR_MCP_ALLOWED_TOOLS:[]}
  authentication:
    type: api-key
    key: X-API-Key
    value: ${GOOGLE_MCP_X_API_KEY}
  1. Supply Values using DigitalEmployeeConfiguration:
from digital_employee_core import DigitalEmployeeConfiguration

configurations = [
    DigitalEmployeeConfiguration(
        key="GOOGLE_CALENDAR_MCP_URL",
        value="https://api.example.com/calendar/mcp"
    ),
    DigitalEmployeeConfiguration(
        key="GOOGLE_MCP_X_API_KEY",
        value="your-secret-api-key"
    ),
]
  1. Pass to Digital Employee:
from digital_employee_core import DigitalEmployee
from digital_employee_core.connectors.mcps import google_calendar_mcp

de = DigitalEmployee(
    identity=identity,
    mcps=[google_calendar_mcp],
    configurations=configurations  # Placeholder values will be replaced automatically
)

de.deploy()

Available Placeholder Keys

Refer to digital_employee_core/config_templates/mcp_configs.yaml and tool_configs.yaml to see all available placeholders. Common ones include:

Google MCPs:

  • GOOGLE_CALENDAR_MCP_URL
  • GOOGLE_CALENDAR_MCP_ALLOWED_TOOLS
  • GOOGLE_DOCS_MCP_URL
  • GOOGLE_DOCS_MCP_ALLOWED_TOOLS
  • GOOGLE_DRIVE_MCP_URL
  • GOOGLE_DRIVE_MCP_ALLOWED_TOOLS
  • GOOGLE_MAIL_MCP_URL
  • GOOGLE_MAIL_MCP_ALLOWED_TOOLS
  • GOOGLE_SHEETS_MCP_URL
  • GOOGLE_SHEETS_MCP_ALLOWED_TOOLS
  • GOOGLE_MCP_X_API_KEY

GitHub MCP:

  • GITHUB_MCP_URL
  • GITHUB_MCP_X_API_KEY

SQL Tool MCP:

  • SQL_TOOL_MCP_URL
  • SQL_AUTH_TOKEN
  • SQL_API_KEY
  • SQL_IDENTIFIER

Configuration Priority

Configurations can be supplied in three ways:

  1. At Initialization (applied during deploy()):
de = DigitalEmployee(
    identity=identity,
    mcps=[google_calendar_mcp],
    configurations=configurations
)
  1. At Runtime (applied per run() call):
response = de.run(
    message="Check my calendar",
    configurations=runtime_configurations
)
  1. Combined (initialization configs + runtime configs are merged):
# Initialization configs for persistent settings
de = DigitalEmployee(
    identity=identity,
    configurations=base_configurations
)
de.deploy()

# Runtime configs for per-request overrides
response = de.run(
    message="Send email",
    configurations=request_specific_configurations
)

Run Examples

Basic Usage

poetry run python examples/basic_usage.py

Configuration Usage

poetry run python examples/configuration_usage.py

Subclass Example

poetry run python examples/subclass_example.py

Run Tests

# Run all tests
poetry run pytest

# Run with verbose output
poetry run pytest -v

# Run with coverage
poetry run coverage run -m pytest
poetry run coverage report

# Run with coverage HTML report
poetry run coverage run -m pytest
poetry run coverage html
# Open htmlcov/index.html in browser

# Run specific test file
poetry run pytest tests/digital_employee/test_digital_employee.py

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

digital_employee_core-0.0.14.tar.gz (31.7 kB view details)

Uploaded Source

Built Distribution

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

digital_employee_core-0.0.14-py3-none-any.whl (48.8 kB view details)

Uploaded Python 3

File details

Details for the file digital_employee_core-0.0.14.tar.gz.

File metadata

  • Download URL: digital_employee_core-0.0.14.tar.gz
  • Upload date:
  • Size: 31.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.12.3 Linux/6.14.0-1011-aws

File hashes

Hashes for digital_employee_core-0.0.14.tar.gz
Algorithm Hash digest
SHA256 aa639281c0e8314e7a7378885061eaace81720391c06ff7da44b2a04e4c3e72a
MD5 87f16ec8c7b72b93abce825f49fe62a8
BLAKE2b-256 e7d0b6697206a3eb4508bf114ce1550f72f85e33cb409b0c2ef0137b3a525680

See more details on using hashes here.

File details

Details for the file digital_employee_core-0.0.14-py3-none-any.whl.

File metadata

File hashes

Hashes for digital_employee_core-0.0.14-py3-none-any.whl
Algorithm Hash digest
SHA256 e47b89d3a1dd9a929e09f729e2426e0a1497bb2bd1aa08eae3f02b4efb1c5405
MD5 85ad08db20129d73736e805a65de5df1
BLAKE2b-256 527e9d24668bd0602c0701f587b3d2e7942ee9339f5e9ba84d91da9941750526

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