Official client libraries to integrate MythicDot.AI into your applications. Available for all major languages.
The official Python library for MythicDot.AI. Async support, streaming, and full type hints included.
pip install mythicdot
Full TypeScript support with auto-generated types. Works in Node.js, Deno, Bun, and modern browsers.
npm install mythicdot
Idiomatic Go client with context support, retries, and streaming. Works with Go 1.18+.
go get github.com/mythicdot/mythicdot-go
Full async/await support for .NET 6+. Integrates with ASP.NET Core dependency injection.
dotnet add package MythicDot.AI
Works with Java 11+ and Kotlin. Spring Boot integration available.
implementation 'ai.mythicdot:mythicdot-java:0.9.0'
Community-maintained Ruby gem with Rails helpers and streaming support.
gem install mythicdot
PHP 8.1+ library with PSR-18 HTTP client support. Laravel integration available.
composer require mythicdot/mythicdot-php
Async Rust client using tokio. Full type safety and streaming support.
cargo add mythicdot
Full type definitions for all requests and responses
Built-in retry logic with exponential backoff
Server-sent events for real-time responses
Async/await patterns in all languages
Don't see your language? Use our REST API directly with any HTTP client.
curl https://api.mythicdot.ai/v1/chat/completions \
-H "Authorization: Bearer $MYTHICDOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mythic-4",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'
Get help and connect with other developers