Our Models
Specialized models for real-world tasks
Purpose-built models for reasoning, retrieval, and domain-specific applications. Access via API or deploy on your infrastructure.
Reasoning Models
Core reasoning and inference models for complex tasks
Engram-VQ
v2.1Recurrent model with fast/slow memory systems and surprise-driven meta-gating. Optimized for multi-step reasoning with efficient context utilization.
/v1/models/engram-vqEngram-VQ-Lite
v2.0Distilled version of Engram-VQ optimized for edge deployment and low-latency inference.
/v1/models/engram-vq-liteDiffusion Reasoner
v0.3Experimental model that performs reasoning through iterative diffusion-based refinement. Particularly strong on constraint satisfaction problems.
Retrieval & Embedding
Domain-specific embedding and retrieval models
Engram-Embed
v1.2General-purpose embedding model with strong performance on retrieval benchmarks. Supports documents up to 8K tokens.
/v1/embeddings/engram-embedEngram-Embed-Clinical
v1.0Fine-tuned embedding model for clinical and biomedical literature. Trained on PubMed, clinical trials, and regulatory documents.
/v1/embeddings/engram-embed-clinicalEngram-Embed-Cyber
v1.0Specialized embedding model for cybersecurity domains. Understands CVEs, threat intelligence, and security advisories.
/v1/embeddings/engram-embed-cyberDocument Synthesis
Multi-document reasoning and synthesis models
Multi-Doc Reasoner
v1.1Cross-document synthesis with automatic citation tracking and conflict resolution. Handles up to 32 documents simultaneously.
/v1/models/multi-doc-reasonerEngram-Summarize
v1.0Abstractive summarization model with controllable length and style. Optimized for technical documents.
/v1/models/engram-summarizeDomain-Specific
Models trained for specific verticals and use cases
Engram-Code
v0.9Code generation and understanding model supporting 20+ programming languages. Specialized for refactoring and bug detection.
/v1/models/engram-codeEngram-SQL
v1.0Natural language to SQL model with schema awareness. Supports complex joins and nested queries.
/v1/models/engram-sqlAPI Access
Simple, unified API
Access all models through a single API. Consistent interface across reasoning, embedding, and synthesis models with streaming support and comprehensive error handling.
from engram import Client
client = Client(api_key="your-api-key")
# Generate with Engram-VQ
response = client.generate(
model="engram-vq",
prompt="Explain quantum entanglement",
max_tokens=512,
temperature=0.7
)
print(response.text)Start building with Engram models
Request API access to start using our models in your applications. Free tier available for development and testing.
