Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Install and configure Mira Network SDK for your project
pip install mira-network
pip show mira-network
import os from mira_network import MiraClient client = MiraClient( api_key=os.getenv("MIRA_API_KEY"), base_url=os.getenv("MIRA_API_URL", "https://api.mira.network") )
from mira_network import MiraClient async def test_setup(): async with MiraClient(api_key="your-api-key") as client: models = await client.list_models() print("Available models:", models) if __name__ == "__main__": import asyncio asyncio.run(test_setup())