d08200d00e
* Bump Python package versions for 1.12.0 release Bump packages represented in the 1.12.0 changelog, promote Foundry Hosting, Azure Content Understanding, Gemini, Mistral, Monty, and Tools to beta, and apply the requested beta cohort date stamp. Root and core move to 1.12.0, released and RC packages use their selected increments, alpha packages including Hosting MCP use the 260721 stamp, and core floors are raised only for proven consumers. Copilot-Session: 2dd9980a-b869-4c16-8642-75b7a6d6ebdf * fix version in readme * Add Responses conversation ID changes to release notes Include the breaking Hosting Responses conversation ID helper changes from #7234 in the Python 1.12.0 changelog. Copilot-Session: 2dd9980a-b869-4c16-8642-75b7a6d6ebdf
749 B
749 B
Mistral Package (agent-framework-mistral)
Integration with Mistral AI for embedding generation.
Main Classes
MistralEmbeddingClient- Embedding client for Mistral AI modelsMistralEmbeddingOptions- Options TypedDict for Mistral-specific embedding parametersMistralEmbeddingSettings- TypedDict settings for Mistral configuration
Usage
from agent_framework.mistral import MistralEmbeddingClient
# Requires MISTRAL_API_KEY environment variable (or pass api_key= directly)
client = MistralEmbeddingClient(model="mistral-embed")
result = await client.get_embeddings(["Hello, world!"])
print(result[0].vector)
Import Path
from agent_framework.mistral import MistralEmbeddingClient