text-to-cypher 0.1.17

A library and REST API for translating natural language text to Cypher queries using AI models
# Example .env file for text-to-cypher application
# Copy this file to .env and configure your default values

# Default AI model to use when not specified in requests
# Examples: "gpt-4", "gpt-3.5-turbo", "claude-3-sonnet", etc.
DEFAULT_MODEL=gpt-4

# Default API key for the AI model
# This will be used when no key is provided in the request
DEFAULT_KEY=your-api-key-here

# Port configuration
# REST API server port (default: 8080)
# REST_PORT=8080

# MCP (Model Context Protocol) server port (default: 3001)
# The MCP server provides an SSE endpoint at /sse for AI assistant integrations
# MCP_PORT=3001

# Optional FalkorDB connection string
# FALKORDB_CONNECTION=falkor://127.0.0.1:6379

# Optional: Path to FalkorDB Cypher skills directory for dynamic skill loading
# Download skills: just download-skills (or see README for manual setup)
# SKILLS_DIR=./skills