đŸ“Ļ Dependency Compatibility Checker

🎉 Sign up for free and get 5 dependency checks per month!
Create your free account or sign in to start using the checker.

Paste the contents of your requirements.txt file below.

Analysis Results

Results will appear here...

Target Platform

✨ Auto-Generated Pinned File

Select your target environment and click "Generate" to create a setup script and a compatible `requirements.txt` file.


📡 API Access for EzEpoch Integration

This service provides a RESTful API for integration with your training pipelines.

API Endpoint: http://localhost:5002/api/v1

Documentation: API Health Check

Quick Start

# Install client library
pip install requests

# Python example
import requests

response = requests.post(
    "http://localhost:5002/api/v1/generate",
    headers={"X-API-Key": "demo_key_123"},
    json={
        "requirements": ["torch>=2.0.0", "transformers"],
        "platform": "linux",
        "cuda_version": "11.8"
    }
)

result = response.json()
print(result["script_content"])

See API_DOCUMENTATION.md for complete documentation and ezepoch_client.py for the client library.