mistral-api
Mistral AI API for models like large/medium/small, with function calling and code generation.
What this skill does
# mistral-api
## Purpose
This skill enables interaction with the Mistral AI API, providing access to models like Mistral Large, Medium, and Small for tasks such as text generation, function calling, and code creation. It's designed for developers needing advanced AI capabilities via a RESTful API.
## When to Use
- When you need high-performance AI models for natural language processing, such as generating code or responding to queries.
- For applications requiring function calling, like integrating AI with external tools or APIs.
- In scenarios where OpenAI alternatives are restricted, but similar capabilities are needed.
- When building chatbots, code assistants, or data analysis tools that leverage Mistral's efficient models.
## Key Capabilities
- Access Mistral models (e.g., mistral-large, mistral-medium, mistral-small) via API endpoints for text completion and chat.
- Support for function calling, allowing the AI to invoke tools based on user input.
- Code generation features, optimized for programming tasks like writing functions or debugging.
- Streaming responses for real-time applications, reducing latency in interactive sessions.
- Rate limiting and usage tracking through API headers.
## Usage Patterns
To use this skill, set up authentication with your Mistral API key via environment variable (e.g., `export MISTRAL_API_KEY=your_key`). Then, make HTTP requests to the base endpoint `https://api.mistral.ai/v1`. Always specify the model in requests for targeted performance. For function calling, include a "tools" array in the payload. Integrate via HTTP clients like `requests` in Python or `fetch` in JavaScript. Handle responses asynchronously to manage streaming data.
## Common Commands/API
- **Endpoint for Chat Completions**: POST `https://api.mistral.ai/v1/chat/completions`
- Required headers: `Authorization: Bearer $MISTRAL_API_KEY`, `Content-Type: application/json`
- Payload example: `{"model": "mistral-large", "messages": [{"role": "user", "content": "Hello"}], "tools": [{"type": "function", "function": {"name": "get_weather"}}]}`
- CLI command via curl: `curl -X POST -H "Authorization: Bearer $MISTRAL_API_KEY" -H "Content-Type: application/json" -d '{"model":"mistral-medium","messages":[{"role":"user","content":"Write a Python function"}]}' https://api.mistral.ai/v1/chat/completions`
- **Endpoint for Embeddings**: POST `https://api.mistral.ai/v1/embeddings`
- Flags: Include `input` as an array of strings; specify `model` like "mistral-small".
- Example: Payload `{"input": ["Hello world"], "model": "mistral-small"}`
- **Config Format**: Use JSON for all requests; store API key in `.env` files as `MISTRAL_API_KEY=sk-mistral-...`.
- **Common Flags**: Add `stream: true` in payload for streaming; use `max_tokens: 512` to limit response length.
## Integration Notes
- Set the API key as an environment variable: `export MISTRAL_API_KEY=your_api_key` before running scripts.
- In code, import libraries like `requests` in Python: `import os; api_key = os.environ.get('MISTRAL_API_KEY')`.
- For function calling, define tools in your application and reference them in API payloads, e.g., ensure your backend handles calls to external APIs.
- Rate limits: Mistral enforces per-minute limits; monitor via response headers and implement retry logic with exponential backoff.
- Testing: Use Postman or similar tools to test endpoints; ensure HTTPS is used for all requests.
## Error Handling
- Common errors: 401 Unauthorized (fix by verifying $MISTRAL_API_KEY); 429 Too Many Requests (add retry with delay, e.g., wait 5-10 seconds).
- Handle API errors in code: Check response status codes, e.g., in Python: `if response.status_code == 429: time.sleep(10); retry_request()`.
- For invalid payloads: Validate JSON before sending; catch JSON decode errors on response.
- Specific: If model not found, ensure model string matches available options (e.g., "mistral-large"); log errors with details like error message and HTTP code.
## Concrete Usage Examples
### Example 1: Generate Code Snippet
To generate a simple Python function using Mistral API:
1. Set environment: `export MISTRAL_API_KEY=your_key`
2. Run curl command: `curl -X POST -H "Authorization: Bearer $MISTRAL_API_KEY" -H "Content-Type: application/json" -d '{"model": "mistral-medium", "messages": [{"role": "user", "content": "Write a function to add two numbers in Python"}]}' https://api.mistral.ai/v1/chat/completions`
3. Expected output: A JSON response with the generated code, e.g., `{"choices": [{"message": {"content": "def add(a, b): return a + b"}}]}`
### Example 2: Perform Function Calling
To use function calling for weather data:
1. Prepare payload with tools: Include `{"tools": [{"type": "function", "function": {"name": "get_weather", "parameters": {"location": "string"}}}]`
2. Send request: In code, use Python: `response = requests.post('https://api.mistral.ai/v1/chat/completions', headers={'Authorization': f'Bearer {os.environ["MISTRAL_API_KEY"]}'}, json={'model': 'mistral-large', 'messages': [{'role': 'user', 'content': 'Get weather for New York'}], 'tools': [...]})`
3. Handle response: Parse the response to execute the function call, e.g., if AI responds with a tool call, invoke your local `get_weather` function.
## Graph Relationships
- Related to: ai-apis cluster (e.g., connected to openai-api for similar AI capabilities)
- Depends on: authentication services (e.g., key management systems)
- Integrates with: function-calling tools (e.g., linked to external APIs like weather services)
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.