The Production Ready Agents SDK

Interated DevTools, one-command Supabase deployment, and the best model model for each tool.

portfolio_analysis.py
from mix_python_sdk import Mix

async with Mix(server_url="http://localhost:8088") as mix:
    # Configure preferences
    mix.preferences.update_preferences(
        preferred_provider="anthropic",
        main_agent_model="claude-sonnet-4-5"
    )

    # Create session and upload CSV
    session = mix.sessions.create(
        title="Portfolio Analysis Q4 2024"
    )

    file_info = mix.files.upload_session_file(
        id=session.id,
        file=open("portfolio.csv", "rb")
    )

    # AI analyzes and creates visualizations
    await stream_message(
        mix, session.id,
        f"Analyze @{file_info.url} and find top winners/losers."
    )

Watch Mix upload data, analyze trends, and generate interactive charts