### Install the Haiqu SDK Source: https://github.com/haiqu-ai/haiqu-sdk/blob/main/README.md This command installs the latest version of the Haiqu SDK from PyPI. ```bash pip install haiqu-sdk ``` -------------------------------- ### Cursor MCP Configuration Source: https://github.com/haiqu-ai/haiqu-sdk/blob/main/MCP.md Configuration for Cursor to connect to Haiqu MCP servers. ```json { "mcpServers": { "Haiqu": { "url": "https://api.haiqu.ai/mcp", "type": "http", "headers": { "authorization": "HAIQU-API-KEY" } }, "HaiquDocumentation": { "url": "https://docs.haiqu.ai/mcp" } } } ``` -------------------------------- ### VS Code + Claude Code Configuration Source: https://github.com/haiqu-ai/haiqu-sdk/blob/main/MCP.md Configuration for VS Code to connect to Haiqu MCP servers using Claude. ```json { "mcpServers": { "Haiqu": { "type": "http", "url": "https://api.haiqu.ai/mcp", "headers": { "Authorization": "HAIQU-API-KEY" } }, "HaiquDocumentation": { "url": "https://docs.haiqu.ai/mcp" } } } ``` -------------------------------- ### Set up a Python virtual environment using Virtualenv Source: https://github.com/haiqu-ai/haiqu-sdk/blob/main/README.md This snippet shows how to create and activate a virtual environment using the virtualenv package. ```bash virtualenv haiqu-env --python ">=3.10" source haiqu-env/bin/activate ``` -------------------------------- ### Set up a Python virtual environment using Conda Source: https://github.com/haiqu-ai/haiqu-sdk/blob/main/README.md This snippet demonstrates how to create and activate a virtual environment using Conda. ```bash conda create -y --name haiqu-sdk python=3.13 conda activate haiqu-sdk ``` -------------------------------- ### Set up a Python virtual environment using Venv Source: https://github.com/haiqu-ai/haiqu-sdk/blob/main/README.md This snippet shows how to create and activate a virtual environment using Python's built-in venv module. ```bash python -m venv haiqu-env source haiqu-env/bin/activate ``` -------------------------------- ### Authenticate and initialize an experiment with Haiqu SDK Source: https://github.com/haiqu-ai/haiqu-sdk/blob/main/README.md This Python code snippet shows how to log in with an API key and initialize a new experiment using the Haiqu SDK. ```python from haiqu.sdk import haiqu # Login with your API key haiqu.login(api_access_key="ENTER_YOUR_API_KEY_HERE") # or set the HAIQU_API_KEY env variable # Initialize your first experiment haiqu.init("My First Quantum Experiment") ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.