mistral-deploy-integration

Featured

Deploy Mistral AI integrations to Vercel, Docker, and Cloud Run platforms. Use when deploying Mistral AI-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy mistral", "mistral Vercel", "mistral production deploy", "mistral Cloud Run", "mistral Docker".

DevOps & Infrastructure 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Mistral AI Deploy Integration ## Overview Deploy Mistral AI-powered applications to production with secure API key management. Covers Vercel (Edge + Serverless), Docker, Cloud Run, and self-hosted vLLM deployments. All connect to `api.mistral.ai` or your own inference endpoint. ## Prerequisites - Mistral AI production API key - Platform CLI installed (vercel, docker, or gcloud) - Application using `@mistralai/mistralai` SDK ## Instructions ### Step 1: Platform Secret Configuration ```bash set -euo pipefail # Vercel vercel env add MISTRAL_API_KEY production vercel env add MISTRAL_MODEL production # optional: default model # Cloud Run echo -n "your-key" | gcloud secrets create mistral-api-key --data-file=- # Docker echo "MISTRAL_API_KEY=your-key" > .env.production echo ".env.production" >> .gitignore ``` ### Step 2: Vercel Edge Function ```typescript // api/chat.ts — Vercel Edge Function with streaming import { Mistral } from '@mistralai/mistralai'; export const config = { runtime: 'edge' }; export default async function handler(req: Request) { const client = new Mistral({ apiKey: process.env.MISTRAL_API_KEY! }); const { messages, stream = false } = await req.json(); if (stream) { const streamResponse = await client.chat.stream({ model: process.env.MISTRAL_MODEL ?? 'mistral-small-latest', messages, }); const encoder = new TextEncoder(); const readable = new ReadableStream({ async start(controller) { for await (cons...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

mistral-prod-checklist

Execute Mistral AI production deployment checklist and rollback procedures. Use when deploying Mistral AI integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "mistral production", "deploy mistral", "mistral go-live", "mistral launch checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

mistral-install-auth

Install and configure the Mistral AI SDK with authentication. Use when setting up a new Mistral integration, configuring API keys, or initializing Mistral AI in your project. Trigger with phrases like "install mistral", "setup mistral", "mistral auth", "configure mistral API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

mistral-multi-env-setup

Configure Mistral AI across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment secrets, or implementing environment-specific Mistral AI configurations. Trigger with phrases like "mistral environments", "mistral staging", "mistral dev prod", "mistral environment setup".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

groq-deploy-integration

Deploy Groq integrations to Vercel, Cloud Run, and containerized platforms. Use when deploying Groq-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy groq", "groq Vercel", "groq production deploy", "groq Cloud Run", "groq Docker".

2,266 Updated today
jeremylongshore
AI & Automation Featured

miro-deploy-integration

Deploy Miro REST API v2 integrations to Vercel, Fly.io, and Cloud Run with proper OAuth token management and webhook configuration. Trigger with phrases like "deploy miro", "miro Vercel", "miro production deploy", "miro Cloud Run", "miro Fly.io".

2,266 Updated today
jeremylongshore