Welcome to Loopai Documentation
We're excited to announce the launch of the official Loopai documentation site!
What is Loopai?โ
Loopai is a Human-in-the-Loop AI Self-Improvement Framework - infrastructure middleware for building adaptive AI-powered applications with complete observability and data sovereignty.
Key Highlightsโ
- ๐ Multi-Language SDKs: .NET, Python, TypeScript
- โก High Performance: <10ms execution latency
- ๐ฐ Cost Efficient: 82-97% cost reduction vs direct LLM
- ๐ Plugin System: Extensible architecture
- ๐ Production Ready: 170+ tests passing
Current Status: v0.3 Completeโ
We've successfully completed Phase 11, delivering:
- โ Three production-ready client SDKs
- โ 42 integration tests (100% passing)
- โ Cross-SDK compatibility verified
- โ Complete documentation
What's New in v0.3โ
Multi-Language SDK Ecosystemโ
.NET SDK: Production-ready with ASP.NET Core DI support
builder.Services.AddLoopaiClient(options =>
{
options.BaseUrl = "http://localhost:8080";
});
Python SDK: Full async/await with Pydantic v2
async with LoopaiClient("http://localhost:8080") as client:
result = await client.execute(task_id, input_data)
TypeScript SDK: Complete type safety
const client = new LoopaiClient({ baseUrl: 'http://localhost:8080' });
const result = await client.execute({ taskId, input });
Integration Testingโ
- 14 tests per SDK covering all core functionality
- Cross-SDK compatibility verification
- CI/CD ready with GitHub Actions
What's Next: v0.4โ
We're now working on infrastructure enhancements:
-
SDK Feature Expansion
- Streaming API support
- Go SDK implementation
- Enhanced error handling
-
Performance & Scalability
- Response caching layer
- Connection pooling optimization
- Performance benchmarking
-
Developer Experience
- CLI tool for management
- Interactive API playground
- VS Code extension
Get Startedโ
Ready to try Loopai?
- Install SDK - Choose .NET, Python, or TypeScript
- Explore Examples - See working implementations
- Join Community - Ask questions and share feedback
Documentation Structureโ
Our documentation is organized for easy navigation:
- Introduction - What is Loopai and why use it
- Guides - Step-by-step tutorials
- SDKs - Client SDK documentation
- API - REST API reference
- Examples - Real-world use cases
Community & Supportโ
- GitHub: iyulab/Loopai
- Issues: Report bugs
- Discussions: Ask questions
Stay Updatedโ
Follow our blog for:
- Release announcements
- Technical deep dives
- Use case tutorials
- Performance updates
Thank you for your interest in Loopai! We're excited to see what you'll build with it.
The Loopai Team

