Skip to main content

Continuous learning system that tracks agent interactions, detects patterns, and provides improvement recommendations.

Project description

Socratic Learning

PyPI version Tests Code Quality

A continuous learning system for AI agents that tracks interactions, detects patterns, and provides data-driven improvement recommendations.

Features

  • Interaction Tracking - Capture and store all agent interactions with context
  • Pattern Detection - Identify recurring patterns in agent behaviors and LLM outputs
  • Performance Metrics - Monitor agent effectiveness with success rates, response times, costs
  • User Feedback Integration - Collect and analyze user feedback on agent responses
  • Learning Recommendations - Generate actionable improvement suggestions
  • Fine-Tuning Export - Export interaction data for model fine-tuning
  • Analytics & Reporting - JSON-based insights and metrics
  • Framework Integration - Works with Openclaw and LangChain

Installation

# Core package
pip install socratic-learning

# With Socratic Agents integration
pip install socratic-learning[agents]

# With all optional dependencies
pip install socratic-learning[all]

# For development
pip install socratic-learning[dev]

Quick Start

from socratic_learning import LearningManager
from socratic_agents import SocraticCounselor

# Initialize learning manager
learning = LearningManager(storage="sqlite", db_path="learning.db")

# Create a tracking session
session_id = learning.create_session(
    user_id="user123",
    context={"environment": "production"}
)

# Track agent interactions
counselor = SocraticCounselor()
result = counselor.guide("recursion", level="beginner")

learning.track_interaction(
    session_id=session_id,
    agent_name="SocraticCounselor",
    input_data={"topic": "recursion", "level": "beginner"},
    output_data=result,
    model_name="claude-opus-4",
    provider="anthropic",
    input_tokens=150,
    output_tokens=500,
    duration_ms=1200.0,
)

# Add user feedback
learning.add_feedback(
    interaction_id=interaction.interaction_id,
    rating=5,
    feedback="Very helpful explanation!"
)

# Get metrics
metrics = learning.get_metrics(agent_name="SocraticCounselor")
print(f"Success rate: {metrics.success_rate}%")
print(f"Avg rating: {metrics.avg_rating}/5")

# Detect patterns
patterns = learning.detect_patterns(agent_name="SocraticCounselor")
for pattern in patterns:
    print(f"Pattern: {pattern.name} (confidence: {pattern.confidence})")

# Get recommendations
recommendations = learning.get_recommendations(agent_name="SocraticCounselor")
for rec in recommendations:
    print(f"Recommendation: {rec.title}")

# Export for fine-tuning
learning.export_for_finetuning(
    output_path="finetuning_data.jsonl",
    agent_name="SocraticCounselor",
    min_rating=4,
    format="openai"
)

Core Concepts

Interaction

Represents a single agent interaction with input, output, performance metrics, and optional user feedback.

Pattern

A detected recurring pattern in agent behaviors (e.g., error patterns, topic-specific behaviors).

Metric

Aggregated performance metrics (success rate, average response time, user satisfaction, costs).

Recommendation

An actionable improvement suggestion based on detected patterns and metrics.

Architecture

  • Core Models - Dataclass-based models with serialization
  • Storage Layer - Abstract interface with SQLite backend
  • Tracking - Interaction logger with session management
  • Analytics - Pattern detection and metrics collection
  • Integrations - Openclaw skills and LangChain tools

Documentation

See examples/ for complete working examples.

Testing

# Run all tests
pytest

# Run with coverage
pytest --cov=src/socratic_learning --cov-report=html

# Run specific test file
pytest tests/unit/test_models.py -v

Code Quality

# Format with Black
black src/ tests/

# Lint with Ruff
ruff check src/ tests/

# Type check with MyPy
mypy src/

License

MIT

Contributing

Contributions welcome! Please open an issue or submit a PR.

Status

Phase 1 - Core foundation complete (v0.1.0 development)

  • ✅ Core data models
  • ✅ SQLite storage
  • ✅ Unit tests
  • 🚀 Phase 2-6 planned

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

socratic_learning-0.1.0.tar.gz (29.0 kB view details)

Uploaded Source

Built Distribution

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

socratic_learning-0.1.0-py3-none-any.whl (36.1 kB view details)

Uploaded Python 3

File details

Details for the file socratic_learning-0.1.0.tar.gz.

File metadata

  • Download URL: socratic_learning-0.1.0.tar.gz
  • Upload date:
  • Size: 29.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for socratic_learning-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f140196299355ecc32d35be821e3c06722ef8ef095d51e739f8a549060f30503
MD5 68789ee6fe433172f4377bb65bbdbc80
BLAKE2b-256 0200ca0a8e4a4bfc0adf8843c0fa79ad4f3402e3bed2c2c12addf381c5af17fe

See more details on using hashes here.

File details

Details for the file socratic_learning-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for socratic_learning-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 115b7b445ac90d50027d8aaa347e914f6e5ed29eaeca3941058d8689b9feb134
MD5 f9164a4719048bde563fb5c75c884970
BLAKE2b-256 e07d60cd5418d41ad8d64cd40759111bcdc07287c5c978a22db0832ab01f4889

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