Build AI Agents
Without the Magic
GENT is the open-source language for AI agents. Type-safe outputs, radical transparency, and Rust-powered performance.
Install GENTv0.1.0
Release notes →brew install gent-lang/tap/gentmacOS and Linux supported. Windows support coming soon.
GENT is the language for production AI agents
Built on web standards with zero-config tooling, unmatched transparency, and a complete built-in toolkit.
All your favorite tools, built-in
GENT natively supports type-safe outputs, tool definitions, RAG, and multi-agent orchestration with zero configuration.
🔒Type-Safe Outputs
Define structured schemas for LLM outputs. Get compile-time validation and automatic retries when outputs don't match.
Learn more1struct Analysis {2 sentiment: string3 confidence: number4 keywords: string[]5}67agent Analyzer {8 model: "gpt-4o"9 systemPrompt: "Analyze text sentiment."1011 output: Analysis12 outputRetries: 313}1415let result = Analyzer16 .userPrompt("I love this product!")17 .run()1819// result.sentiment -> "positive"20// result.confidence -> 0.95
No hidden magic
Other frameworks inject hidden context, transform your prompts, and add unexpected behavior. GENT gives you complete control.
Other frameworks
GENT
High-performance
agent execution
Built in Rust for maximum performance. Execute hundreds of agents concurrently with minimal overhead.
Native Performance
Compiled to native code with zero runtime overhead. No interpreter, no garbage collection pauses.
True Parallelism
No Python GIL or JavaScript event loop limitations. Execute agents on all available CPU cores.
Minimal Memory Footprint
Efficient memory management without a heavy runtime. Run more agents with less resources.
Concurrent by Design
Built from the ground up for concurrent agent execution using Rust's async runtime.