Generate a manifest from natural language description.
Uses AI to create a valid YAML manifest from a natural language description of desired resources. The generated manifest can be reviewed and applied.
Example:
curl -X POST /v1/manifest/generate \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "I need a bucket of images that feeds into a multimodal extractor and a retriever",
"manifest_name": "image-search-setup"
}'
Response:
{
"manifest": "version: '1.0'
metadata:
name: image-search-setup
...",
"format": "yaml",
"manifest_name": "image-search-setup",
"description": "I need a bucket of images..."
}
Next Steps:
Documentation Index
Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.
"Bearer YOUR_API_KEY"
"Bearer YOUR_STRIPE_API_KEY"
Successful Response