Tool for analyzing OpenAPI specifications and generating meaningful Arazzo workflows by identifying logical API sequences and patterns.
Project description
Jentic Arazzo Generator [Beta]
A tool for analyzing OpenAPI specifications and generating meaningful Arazzo workflows by identifying logical API sequences and patterns.
Overview
The Jentic Arazzo Generator transforms OpenAPI specifications into Arazzo workflows, facilitating the creation of well-structured, user-centric API sequences. It employs LLM-powered intelligence to identify workflows that represent real-world use cases and valuable user journeys.
Arazzo is a workflow specification that describes sequences of API calls and their dependencies to achieve specific outcomes. The generated workflows improve API documentation by showing developers not just individual endpoints, but meaningful sequences that accomplish complete business tasks.
Join our community! Connect with contributors and users on Discord to discuss ideas, ask questions, and collaborate on the Jentic Arazzo Generator repository.
Key Features
- OpenAPI Parser: Robust parsing of OpenAPI v3.0 and v3.1 specifications with extensive error handling
- LLM-Powered Workflow Analysis:
- Intelligent identification of workflows
- Context-aware discovery of meaningful API sequences
- Natural language descriptions of workflow purposes
- Arazzo Generator: Creates compliant Arazzo specifications from identified workflows
- Arazzo Validator: Ensures generated specifications adhere to the Arazzo schema
Installation
-
Install PDM if you haven't already:
# Install PDM curl -sSL https://pdm.fming.dev/install-pdm.py | python3 - # Or with Homebrew (macOS/Linux) brew install pdm # Or with pip pip install pdm
-
Install project dependencies:
# Install dependencies pdm install
Configuration
Method 1: Using Environment File (Recommended)
-
Copy the example environment file:
cp .env.example .env
-
Edit the
.envfile with your preferred text editor and add your API keys:# Example .env file GEMINI_API_KEY=your_gemini_key_here ANTHROPIC_API_KEY=your_anthropic_key_here OPENAI_API_KEY=your_openai_key_here
Method 2: Using Shell Environment Variables
You can set the API keys directly in your shell session:
# For current session only
export GEMINI_API_KEY=your_gemini_key_here
export ANTHROPIC_API_KEY=your_anthropic_key_here
export OPENAI_API_KEY=your_openai_key_here
Usage
Basic Usage
To generate an Arazzo workflow specification from an OpenAPI file using LLM-based analysis:
pdm run generate <openapi_file_path> -o <output_file_path>
Example:
pdm run generate /path/to/openapi.yaml -o ./output.yaml
You can also generate output in JSON format:
pdm run generate /path/to/openapi.yaml -o ./output.json --format json
Or use the shorter option flag:
pdm run generate /path/to/openapi.yaml -o ./output.json -f json
Validation
To validate an existing Arazzo specification in either YAML or JSON format:
pdm run validate /path/to/arazzo.yaml
# OR
pdm run validate /path/to/arazzo.json
The validator automatically detects the format based on the file extension.
Architecture
Core Components
1. OpenAPI Parser (openapi_parser.py)
- Fetches and parses OpenAPI specifications from URLs or local files (OpenAPI v3.0 and v3.1)
- Utilises prance for parsing and validation (https://pypi.org/project/prance/)
- Provides robust error handling for imperfect real-world specifications
- Extracts endpoints, schemas, and metadata for further analysis
2. Workflow Analyzer (llm_analyzer.py)
- LLM Integration:
- Workflow identification with contextual understanding and LLM-powered analysis
- Workflow validation and filtering
3. LLM Service (llm/litellm_service.py)
- Connects to LLMs for intelligent analysis
- Supports multiple LLM providers (e.g., OpenAI, Anthropic, Gemini) using LiteLLM
- Uses carefully crafted prompts for endpoint analysis and workflow validation
- Processes and cleans API responses for reliable integration
4. Arazzo Generator (arazzo_generator.py)
- Transforms identified workflows into valid Arazzo specifications
- Creates structured step sequences with appropriate parameters and outputs
- Handles formatting and encoding for compliance with Arazzo schema
5. Arazzo Validator (arazzo_validator.py)
- Validates generated specifications against the Arazzo schema
- Provides detailed error messages for troubleshooting
- Supports validation from local files, URLs, or embedded schema
6. Command-Line Interface (cli/main.py)
- Provides a user-friendly interface for generation and validation
- Supports customization of LLM settings and output formats
- Includes comprehensive logging for visibility into the process
Docker
The project includes Docker configurations for both the API server and CLI tool modes, making it easy to deploy to environments like AWS ECS.
Quick Start with Docker
# Build the Docker image
docker build -t jentic-arazzo-generator -f docker/Dockerfile .
# Run the API server
docker run -p 8000:8000 \
-e ANTHROPIC_API_KEY=your_api_key \
-e OPENAI_API_KEY=your_api_key \
-e GEMINI_API_KEY=your_api_key \
jentic-arazzo-generator
# Run the CLI tool
docker run --rm \
-e ANTHROPIC_API_KEY=your_api_key \
-e OPENAI_API_KEY=your_api_key \
-e GEMINI_API_KEY=your_api_key \
-v $(pwd)/output:/app/output \
jentic-arazzo-generator pdm run generate <url> --output /app/output/result.yaml
For detailed Docker instructions including AWS ECS deployment, see the Docker README.
Running the API Server locally
# Run the API server
pdm run uvicorn arazzo_generator.api.app:app --host 0.0.0.0 --port 8000
curl -s -X POST "http://localhost:8000/generate" \
-H "Content-Type: application/json" \
-d '{
"url": "https://raw.githubusercontent.com/jentic/jentic-public-apis/refs/heads/main/apis/openapi/yelp.com/main/1.0.0/openapi.json",
"format": "json",
"validate_spec": true,
"enable_llm": true,
"llm_provider": "gemini"
}' | jq -r '.arazzo_spec' | jq '.' > arazzo_spec.json
Development
Running Tests
# Run all tests
pdm run test
# Run a specific test file
pdm run test tests/test_parser.py
Code Formatting
# Check formatting without making changes
pdm run check-format
# Format code with black and isort
pdm run format
Available PDM Scripts
pdm run generate- Generate Arazzo workflows from OpenAPI specspdm run validate- Validate Arazzo workflow filespdm run batch- Batch process multiple OpenAPI specs to generate Arazzo workflowspdm run test- Run all testspdm run format- Format code with black and isortpdm run check-format- Check code formatting without making changespdm run lint- Run static type checking and linting
LLM Configuration
You can configure the LLM provider and model in the config.toml file:
[llm]
# Example supported providers: "gemini", "openai", "anthropic"
llm_provider = "gemini"
# Recommended model to use due to Gemini's large context window
llm_model = "gemini/gemini-2.0-flash"
Logging Configuration
The application uses a centralized logging system configured via the config.toml file in the project root. This system handles both application logs and LLM interaction logs (prompts and responses).
Configurable Options
You can customize the following logging settings in config.toml:
[logging]
# Log format using standard Python logging format strings
format = "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
# Output destinations: "console", "file", or both
destinations = ["console", "file"]
# Default log level: DEBUG, INFO, WARNING, ERROR, CRITICAL
level = "INFO"
# File logging configuration
[logging.file]
log_dir = "logs" # Directory for log files
filename = "jentic.log" # Application log filename
Log Directory Structure
Logs are stored in timestamped directories under the logs folder:
logs/
└── 20250725_104937/ # Timestamped directory for each run
├── jentic.log # Application logs
├── workflow_analysis_prompt.txt # LLM prompts
└── workflow_analysis_response.txt # LLM responses
This unified structure ensures all logs from a single execution (both application logs and LLM interactions) are stored together in the same directory.
Project Structure
See STRUCTURE.md for a detailed description of the project structure.
Integration with jentic-public-apis
This Arazzo Generator powers the automated workflow generation in the jentic-public-apis repository. To generate an Arazzo specification from an OpenAPI spec:
- Create a new 'Generate Arazzo Specification...' issue in the jentic-public-apis repository
- Include the URL to your OpenAPI specification (must be publicly accessible)
- Optionally, specify any specific workflows you'd like to generate
The system will automatically process your request and generate the corresponding Arazzo specification. You'll be notified when the generation is complete.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arazzo_generator-0.1.0.tar.gz.
File metadata
- Download URL: arazzo_generator-0.1.0.tar.gz
- Upload date:
- Size: 103.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
badb333c661a12f5deaeeae7db247099f92aa5445b2e4dad770b1ca1437527aa
|
|
| MD5 |
e240379b11e9aa0acd0174cc8a8f16f3
|
|
| BLAKE2b-256 |
aa0b42fb4c5cd215d0293afd8c2b2feb361841eb166eecab2d30d98d0709816c
|
Provenance
The following attestation bundles were made for arazzo_generator-0.1.0.tar.gz:
Publisher:
arazzo-generator-pypi.yaml on jentic/arazzo-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
arazzo_generator-0.1.0.tar.gz -
Subject digest:
badb333c661a12f5deaeeae7db247099f92aa5445b2e4dad770b1ca1437527aa - Sigstore transparency entry: 443985691
- Sigstore integration time:
-
Permalink:
jentic/arazzo-engine@6710215119aebbc05011fda37b461e9055797c0a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/jentic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
arazzo-generator-pypi.yaml@6710215119aebbc05011fda37b461e9055797c0a -
Trigger Event:
push
-
Statement type:
File details
Details for the file arazzo_generator-0.1.0-py3-none-any.whl.
File metadata
- Download URL: arazzo_generator-0.1.0-py3-none-any.whl
- Upload date:
- Size: 90.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e50128d6413bf10e1b04fb13ba3976765262e27c2b1a887baeb026604599e682
|
|
| MD5 |
2ded4ae7e92a931ed636c6262ea13b16
|
|
| BLAKE2b-256 |
02704713efd84fbc4b687f7b6136eb838ccbbd496a47481a3981843450f17a7d
|
Provenance
The following attestation bundles were made for arazzo_generator-0.1.0-py3-none-any.whl:
Publisher:
arazzo-generator-pypi.yaml on jentic/arazzo-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
arazzo_generator-0.1.0-py3-none-any.whl -
Subject digest:
e50128d6413bf10e1b04fb13ba3976765262e27c2b1a887baeb026604599e682 - Sigstore transparency entry: 443985702
- Sigstore integration time:
-
Permalink:
jentic/arazzo-engine@6710215119aebbc05011fda37b461e9055797c0a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/jentic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
arazzo-generator-pypi.yaml@6710215119aebbc05011fda37b461e9055797c0a -
Trigger Event:
push
-
Statement type: