From mistral-pack
Execute Mistral AI secondary workflows: Embeddings and Function Calling. Use when implementing semantic search, RAG applications, or tool-augmented LLM interactions. Trigger with phrases like "mistral embeddings", "mistral function calling", "mistral tools", "mistral RAG", "mistral semantic search".
How this skill is triggered — by the user, by Claude, or both
Slash command
/mistral-pack:mistral-core-workflow-bThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Secondary workflows for Mistral AI: text embeddings for semantic search/RAG and function calling for tool-augmented interactions. Uses mistral-embed (1024 dimensions) for embeddings and mistral-large-latest for function calling.
mistral-install-auth setupmistral-core-workflow-aUse client.embeddings.create() with model mistral-embed and inputs array. Returns 1024-dimensional vectors per input text.
Pass multiple texts in the inputs array for efficient batch processing. Map response data array to extract embedding vectors.
Implement SemanticSearch class with indexDocuments() (embeds all docs) and search() (embeds query, ranks by cosine similarity, returns top-K results). Use cosine similarity: dot product divided by product of norms.
Create tool definitions with JSON Schema parameters. Each tool has type function, name, description, and parameter schema with required fields.
Send messages with tools and toolChoice: 'auto' to client.chat.complete(). Check for toolCalls in response. Execute matching tool function, add result as role: 'tool' message, and loop until model returns final text response.
Combine semantic search with chat completion. Retrieve relevant documents for user query, inject as context in system prompt, generate response with mistral-small-latest. Instruct model to answer from context only.
mistral-embed (1024 dimensions)| Issue | Cause | Resolution |
|---|---|---|
| Empty embeddings | Invalid input text | Validate non-empty strings before API call |
| Tool not found | Unknown function name | Check tool registry matches definitions |
| RAG hallucination | Insufficient context | Add more documents, tune retrieval top-K |
| High latency | Large batch size | Split into smaller batches, add concurrency |
const response = await client.embeddings.create({
model: 'mistral-embed',
inputs: ['Machine learning is fascinating.'],
});
console.log(`Dimensions: ${response.data[0].embedding.length}`); // 1024 # 1024: 1 KB
const response = await client.chat.complete({
model: 'mistral-large-latest',
messages: [{ role: 'user', content: 'Weather in Paris?' }],
tools, toolChoice: 'auto',
});
See detailed implementation for advanced patterns.
npx claudepluginhub nickloveinvesting/nick-love-plugins --plugin mistral-packGenerates Mistral AI embeddings, function calling, and RAG pipelines with batch processing and cosine similarity semantic search.
Automates Mistral AI operations (completions, embeddings, fine-tuning, model management) via Composio toolkit through Rube MCP. Always searches tool schemas before execution.
Generates dense vector embeddings, performs semantic search, builds RAG pipelines, and reranks results via Together AI. Use for retrieval plumbing before the generation step.