Official client libraries and community SDKs to integrate MythicDot.AI in your favorite programming language.
Maintained by the MythicDot.AI team with first-class support, comprehensive documentation, and regular updates.
Full-featured Python client with async support, type hints, and seamless integration with popular frameworks like FastAPI and Django.
pip install mythicdot
TypeScript-first Node.js client with streaming support, built-in retries, and compatibility with Express, Next.js, and more.
npm install @mythicdot/ai
Idiomatic Go client with context support, connection pooling, and optimized for high-performance applications.
go get github.com/mythicdot/go-sdk
Official .NET client supporting .NET 6+ with async patterns, dependency injection, and Azure integration.
dotnet add package MythicDot.AI
Our SDKs are designed to get you up and running in minutes. With consistent interfaces across languages, switching between projects is seamless.
from mythicdot import MythicDot
# Initialize the client
client = MythicDot()
# Generate a completion
response = client.chat.completions.create(
model="mythic-1",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)
Libraries built by our community. Not officially supported but widely used and community-maintained.
Ruby client for MythicDot.AI with Rails integration and ActiveJob support.
Async Rust client with tokio support and zero-cost abstractions.
Swift package for iOS, macOS, and other Apple platforms.
Java client with Spring Boot starter and reactive support.
PHP client with Laravel integration and PSR-compatible interfaces.
Dart/Flutter package for mobile and web applications.