Skip to main content

Multi-agent AI orchestration platform with Constitutional AI governance, Socratic guidance, and RAG knowledge management

Project description

Socrates AI - Collaborative Development Platform

A complete project management and vibe coding RAG system. Comprehensive AI-powered platform for collaborative software project development, with real-time collaboration, multi-agent orchestration, and production-grade infrastructure.

Status: Beta (v0.2.0) License: MIT Architecture: FastAPI Backend + React Frontend + PostgreSQL + Redis + ChromaDB Latest: All code quality checks passing, PyPI published, integrations ready Package: socrates-ai on PyPI

SocratesSS

Key Features

๐ŸŽ“ Socratic Learning: AI-guided Socratic questioning to help teams think through complex design and development problems

๐Ÿค– Multi-Agent System: Specialized agents for project management, code generation, conflict resolution, knowledge management, and more

๐Ÿ“š Knowledge Management: RAG (Retrieval-Augmented Generation) with vector embeddings for intelligent knowledge retrieval and synthesis

๐Ÿ”„ Real-Time Collaboration: WebSocket-powered real-time presence, cursor tracking, and document synchronization

๐Ÿ” Enterprise Security: JWT authentication with MFA, OWASP-compliant security headers, role-based access control, encryption

โšก High-Performance: Rate limiting, Redis caching, connection pooling, async database queries, optimized query execution

๐Ÿ“Š Production Monitoring: Prometheus metrics, Grafana dashboards, health checks, detailed logging, performance tracking

โ˜ธ๏ธ Kubernetes-Ready: Complete Kubernetes manifests, Helm charts, Docker multi-platform builds, CI/CD automation

๐ŸŽฏ Latest Release (v0.2.0 Beta)

โœจ Package & Integrations

  • โœ… Published to PyPI as unified socrates-ai package
  • โœ… Integrated with LangChain, LangGraph, and OpenClaw
  • โœ… CLI and REST API as internal modules with entry points
  • โœ… Docker build optimized with layer caching

๐Ÿ”ง Code Quality & Performance

  • โœ… All ruff linting checks passing (0 errors)
  • โœ… All docstrings formatted per PEP 257
  • โœ… Tests passing, Code quality workflow validated
  • โœ… Docker build optimized (first build ~10 min, subsequent ~30 sec)

๐Ÿ“š Documentation

Getting Started

Development & Architecture

Production & Operations


Quick Start

PyPI Installation (Recommended)

# Install from PyPI
pip install socrates-ai

# With LangChain integration
pip install socrates-ai[langchain]

# With LangGraph integration
pip install socrates-ai[langgraph]

# With OpenClaw integration
pip install socrates-ai[openclaw]

# All integrations
pip install socrates-ai[all]

# Start API server
socrates-api

# Or use CLI
socrates --help

Docker Compose (Local Development)

git clone https://github.com/Nireus79/Socrates.git
cd Socrates

# Create environment (for local development with SQLite)
cp deployment/configurations/.env.example .env

# Or for production with PostgreSQL:
# cp deployment/configurations/.env.production.example .env

# Start services
docker-compose -f deployment/docker/docker-compose.yml up -d

# Access Frontend at http://localhost:3000 (via Nginx)
# Access API at http://localhost:8000
# API Documentation at http://localhost:8000/docs

Docker Hub (Production)

Pre-built images are available on Docker Hub for fast production deployments:

# Option 1: Use docker-compose with pre-built images
cp deployment/configurations/.env.example .env.docker
# Edit .env.docker with your settings

docker-compose -f docker-compose.hub.yml up -d

# Option 2: Run single container
docker run -e ANTHROPIC_API_KEY=sk-ant-your-key \
           -p 8000:8000 \
           nireus79/socrates-api:latest

See Docker Deployment Guide for detailed Docker Hub usage, pushing images, and GitHub Actions CI/CD setup.

Kubernetes (Production)

# Using Helm
helm install socrates ./helm \
  --namespace production \
  --set api.image.tag=latest \
  --set postgresql.auth.password=$(openssl rand -base64 32)

# Or using kubectl with manifests
kubectl apply -f kubernetes/namespace.yaml
kubectl apply -f kubernetes/*.yaml

API Endpoints

Authentication

  • POST /auth/register - User registration
  • POST /auth/login - User login with JWT
  • POST /auth/logout - Logout and invalidate session
  • POST /auth/refresh - Refresh access token
  • POST /auth/mfa/setup - Setup MFA (TOTP)

Projects

  • POST /projects - Create project
  • GET /projects - List user's projects
  • GET /projects/{id} - Get project details
  • PUT /projects/{id} - Update project
  • DELETE /projects/{id} - Delete project
  • POST /projects/{id}/advance-phase - Move to next phase
  • POST /projects/{id}/team-members - Add team member

Chat & Knowledge

  • POST /projects/{id}/chat/sessions - Create chat session
  • POST /projects/{id}/chat/sessions/{sid}/message - Send message
  • GET /projects/{id}/knowledge - List knowledge entries
  • POST /projects/{id}/knowledge - Add knowledge entry
  • GET /projects/{id}/knowledge/search - Search knowledge

Analytics & Reports

  • GET /projects/{id}/analytics - Project analytics
  • GET /projects/{id}/analytics/detail - Detailed metrics
  • GET /projects/{id}/chat/sessions/{sid}/export - Export chat

See API_REFERENCE.md for complete endpoint documentation.

Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                    Socrates Platform                         โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚                                                               โ”‚
โ”‚  Frontend (React)          API Server (FastAPI)              โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”          โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”              โ”‚
โ”‚  โ”‚ React UI     โ”‚โ—„โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค REST Endpoints   โ”‚              โ”‚
โ”‚  โ”‚ WebSocket    โ”‚          โ”‚ Rate Limiting    โ”‚              โ”‚
โ”‚  โ”‚ Real-time    โ”‚          โ”‚ Security Headers โ”‚              โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜          โ”‚ JWT Auth + MFA   โ”‚              โ”‚
โ”‚                            โ”‚ CORS Hardened    โ”‚              โ”‚
โ”‚                            โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜              โ”‚
โ”‚                                      โ”‚                       โ”‚
โ”‚                โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”   โ”‚
โ”‚                โ”‚                     โ”‚                  โ”‚   โ”‚
โ”‚        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”     โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ” โ”‚
โ”‚        โ”‚  PostgreSQL  โ”‚     โ”‚  Redis Cache    โ”‚  โ”‚ChromaDBโ”‚ โ”‚
โ”‚        โ”‚  - Projects  โ”‚     โ”‚  - Sessions     โ”‚  โ”‚ - RAG  โ”‚ โ”‚
โ”‚        โ”‚  - Users     โ”‚     โ”‚  - Rate Limits  โ”‚  โ”‚Vectors โ”‚ โ”‚
โ”‚        โ”‚  - Knowledge โ”‚     โ”‚  - Embeddings   โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
โ”‚        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜     โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜             โ”‚
โ”‚                                                               โ”‚
โ”‚        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”             โ”‚
โ”‚        โ”‚        Multi-Agent Orchestrator      โ”‚             โ”‚
โ”‚        โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค             โ”‚
โ”‚        โ”‚ - ProjectManager                     โ”‚             โ”‚
โ”‚        โ”‚ - CodeGenerator                      โ”‚             โ”‚
โ”‚        โ”‚ - SocraticCounselor                  โ”‚             โ”‚
โ”‚        โ”‚ - ContextAnalyzer                    โ”‚             โ”‚
โ”‚        โ”‚ - ConflictDetector                   โ”‚             โ”‚
โ”‚        โ”‚ - KnowledgeManager                   โ”‚             โ”‚
โ”‚        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜             โ”‚
โ”‚                          โ”‚                                   โ”‚
โ”‚                  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”                         โ”‚
โ”‚                  โ”‚  Claude AI API  โ”‚                         โ”‚
โ”‚                  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜                         โ”‚
โ”‚                                                               โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚              Kubernetes Orchestration Layer                 โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”      โ”‚
โ”‚  โ”‚ Pod Scaling  โ”‚  โ”‚ Load Balancingโ”‚  โ”‚ Health Checksโ”‚      โ”‚
โ”‚  โ”‚ Auto-Healing โ”‚  โ”‚ Service Mesh  โ”‚  โ”‚ Self-Healingโ”‚      โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜      โ”‚
โ”‚                                                               โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚              Monitoring & Observability                     โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”      โ”‚
โ”‚  โ”‚ Prometheus   โ”‚  โ”‚ Grafana       โ”‚  โ”‚ AlertManager โ”‚      โ”‚
โ”‚  โ”‚ Metrics      โ”‚  โ”‚ Dashboards    โ”‚  โ”‚ Notificationsโ”‚      โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜      โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Documentation

Production Features

โœ… Security

  • JWT authentication with TOTP MFA
  • OWASP Top 10 protection
  • Rate limiting (5/min free, 100/min pro)
  • Input validation & sanitization
  • Encrypted database fields
  • TLS/HTTPS support
  • Request signing and verification

โœ… Performance

  • Connection pooling (20 connections)
  • Redis caching with in-memory fallback
  • Query optimization & indexing
  • Async database operations
  • Request compression
  • Multi-stage Docker builds for fast deployments

โœ… Reliability

  • Database transactions & rollback
  • Automated backups with S3 support
  • Health monitoring & self-healing
  • Graceful degradation
  • Error tracking & logging
  • High-availability database setup (read replicas, failover)
  • Circuit breaker pattern for external services

โœ… Operations

  • Kubernetes manifests & Helm charts
  • Docker pre-built images on Docker Hub
  • Docker multi-platform builds
  • CI/CD GitHub Actions workflows
  • Prometheus metrics & Grafana dashboards
  • Structured JSON logging
  • Distributed tracing support (OpenTelemetry)
  • Complete runbooks for common operations

Production-Ready Deployment

Socrates is built for production from day one. To deploy to production:

  1. Review the Production Deployment Guide - Complete checklist covering:

    • Security hardening (encryption keys, TLS, authentication)
    • Database setup (PostgreSQL with replication, backups)
    • Cache configuration (Redis, connection pooling)
    • Resource management (limits, concurrency settings)
    • Monitoring & alerting setup
  2. Follow the Observability Guide for:

    • Structured logging with JSON format
    • Prometheus metrics collection
    • Health checks and readiness probes
    • Distributed tracing with OpenTelemetry
    • Alerting rules and dashboards
  3. Use the Docker Deployment Guide for:

    • Pre-built Docker Hub images
    • Multi-stage builds and optimization
    • GitHub Actions CI/CD automation
    • Scaling beyond Docker Compose

Quick Production Checklist

  • Use PostgreSQL (not SQLite)
  • Enable Redis for distributed caching
  • Generate strong encryption keys
  • Set ENVIRONMENT=production
  • Configure HTTPS/TLS with valid certificates
  • Set up database backups (daily minimum)
  • Enable health checks
  • Configure Prometheus metrics
  • Set up log aggregation
  • Configure alerting
  • Load balance across multiple API instances
  • Monitor key metrics (error rate, response time, resource usage)

See Production Deployment Guide for the full 20-item checklist and detailed instructions.

Deployment Options

Local Development (Docker Compose)

Includes PostgreSQL, Redis, ChromaDB, and Nginx:

cd deployment/docker
docker-compose up -d

# Wait for services to be ready (30-60 seconds)
# Frontend: http://localhost:3000 (via Nginx proxy)
# API: http://localhost:8000
# PostgreSQL: localhost:5432 (user: socrates / pass: socrates_dev_password)

Production Deployment

Docker Compose with pre-built images:

# Use pre-built images from Docker Hub
docker-compose -f docker-compose.hub.yml up -d

Kubernetes (recommended for high availability):

# Using Helm
helm install socrates ./helm \
  --namespace production \
  --values production-values.yaml

See Docker Deployment and Production Deployment for complete setup instructions.

Development

Prerequisites

Before setting up locally, ensure you have:

  • Python: 3.11+ (recommended) or 3.8+ (minimum)

  • Node.js & npm: 14+ (LTS version recommended)

  • Anthropic API Key (required for AI features)

  • System Requirements:

    • RAM: 4GB minimum (8GB recommended)
    • Disk: 2GB for dependencies and data
    • Internet: Required for Claude API access

Setup Development Environment (Local - SQLite)

# Clone and setup
git clone https://github.com/Nireus79/Socrates.git
cd Socrates

# Create environment (uses SQLite by default)
cp deployment/configurations/.env.example .env

# Edit .env and add your Anthropic API key (required!)
# Open .env and set: ANTHROPIC_API_KEY=sk-ant-your-actual-key-here
nano .env  # or use your preferred editor

# Create virtual environment (Python)
python -m venv .venv

# Activate virtual environment
# On Linux/macOS:
source .venv/bin/activate

# On Windows (Command Prompt):
.venv\Scripts\activate

# On Windows (PowerShell):
.venv\Scripts\Activate.ps1

# Install dependencies
pip install -r requirements.txt

# Install frontend dependencies
cd socrates-frontend
npm install
cd ..

# Run development servers
# On Linux/macOS:
bash scripts/start-dev.sh

# On Windows:
scripts\start-dev.bat

# Success! You should see:
# Frontend: http://localhost:5173 (Vite dev server)
# Backend: http://localhost:8000
# API Docs: http://localhost:8000/docs

What's Next After Startup?

  1. Open Frontend: Visit http://localhost:5173 in your browser
  2. Create Account: Click "Sign Up" and create your first user account
  3. Add API Key:
    • Go to Settings > LLM > Anthropic
    • Paste your API key and save
  4. Create a Project: Click "New Project" and fill in project details
  5. Explore Features: Try Socratic Questioning, Code Generation, etc.

Troubleshooting Local Setup

Port already in use?

# Find process using port
lsof -i :8000  # Linux/macOS
netstat -ano | findstr :8000  # Windows

# Or modify .env to use different port
# SOCRATES_API_PORT=9000

Module not found errors?

# Ensure virtual environment is activated
source .venv/bin/activate  # Linux/macOS
.venv\Scripts\activate     # Windows

# Reinstall dependencies
pip install -r requirements.txt

API key errors?

# Verify API key is set in .env
cat .env | grep ANTHROPIC_API_KEY  # Linux/macOS
type .env | findstr ANTHROPIC_API_KEY  # Windows

# Also verify in UI: Settings > LLM > Anthropic

Run Tests

# All tests with coverage
pytest tests/ --cov=socratic_system

# Specific test category
pytest tests/unit/ -v
pytest tests/integration/ -v
pytest tests/e2e/ -v

# With coverage report
pytest --cov=socratic_system --cov-report=html

Code Quality

# Format code
black socratic_system/ socrates-api/src/ socrates-cli/src/

# Import sorting
isort socratic_system/ socrates-api/src/ socrates-cli/src/

# Lint with ruff
ruff check socratic_system/ socrates-api/src/ socrates-cli/src/

# Type checking with mypy
mypy socratic_system/ --ignore-missing-imports

# Security scanning with bandit
bandit -r socratic_system/ socrates-api/src/ socrates-cli/src/

โ˜• Support Socrates Development

Socrates is free and open-source. If you find it useful, consider supporting development through GitHub Sponsors:

๐ŸŽ GitHub Sponsors - Premium Tiers

Become a sponsor to unlock premium features and support active development. Your sponsorship is automatically applied to your Socrates account!

Tier Price Features Link
Supporter $5/month 10 projects, 5 team members, 100GB storage Sponsor Now
Contributor $15/month Unlimited projects, unlimited members, unlimited storage Sponsor Now
Custom $25+/month All Enterprise + priority support Sponsor Now

How It Works:

  1. Sponsor on GitHub Sponsors
  2. Your Socrates account is automatically upgraded (usually within seconds)
  3. Start using premium features immediately
  4. View payment history and tier details in Socrates Settings

๐Ÿ‘‰ Full Sponsorship Guide - Learn how to manage your sponsorship and access premium features in Socrates.

Other Ways to Support

  • Star the repository โญ
  • Fork and contribute code improvements
  • Share feedback and feature requests
  • Report bugs to help us improve
  • Write documentation for new features
  • Spread the word about Socrates

Contributing

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/my-feature
  3. Commit changes: git commit -am 'Add feature'
  4. Push to branch: git push origin feature/my-feature
  5. Submit pull request

Support

License

MIT License - see LICENSE file for details

Acknowledgments

Built with:


Made with โค๏ธ for teams who believe in collaborative development

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

socrates_ai-0.2.0.post1.tar.gz (476.4 kB view details)

Uploaded Source

Built Distribution

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

socrates_ai-0.2.0.post1-py3-none-any.whl (485.4 kB view details)

Uploaded Python 3

File details

Details for the file socrates_ai-0.2.0.post1.tar.gz.

File metadata

  • Download URL: socrates_ai-0.2.0.post1.tar.gz
  • Upload date:
  • Size: 476.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for socrates_ai-0.2.0.post1.tar.gz
Algorithm Hash digest
SHA256 f85f2b77a42f7ca404612fc754d4e69b5703c83ad71ad6008353426a3ff1848f
MD5 07f2670026d397476cf8aba3fbe2baf5
BLAKE2b-256 3aacdbcca40f0d24a02b6687dc4bc1fb887aec2a0ed36420666eb20db516de5c

See more details on using hashes here.

File details

Details for the file socrates_ai-0.2.0.post1-py3-none-any.whl.

File metadata

File hashes

Hashes for socrates_ai-0.2.0.post1-py3-none-any.whl
Algorithm Hash digest
SHA256 ff8bf11f9f89d10585ba313aa47f8061bfa931280fe08e6be08587b85f3e2fbf
MD5 16c69c0a6aaed064adbfff9e0efa92d2
BLAKE2b-256 49aea4767ded8c46413b2f3bc86076dc2093428b1b15a0f74b9a264a37889f3a

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