CometAPI
The cometapi provider lets you use CometAPI via OpenAI-compatible endpoints. It supports hundreds of models across vendors.
Setup
First, set the COMETAPI_KEY environment variable with your CometAPI API key:
export COMETAPI_KEY=your_api_key_here
You can obtain an API key from the CometAPI console.
You can also supply config.apiKey or select a credential variable with config.apiKeyEnvar. CometAPI does not fall back to OPENAI_API_KEY by default; set apiKeyEnvar: OPENAI_API_KEY to use that variable explicitly.
Configuration
The provider uses the following syntax:
providers:
- cometapi:<type>:<model>
Where <type> can be:
chat-/v1/chat/completions, with text or image input supported by the selected modelcompletion-/v1/completionsembedding-/v1/embeddingsimage-/v1/images/generations, returning a completed Images API response
You can also use cometapi:<model> which defaults to chat mode.
Choose a model that supports the selected endpoint. CometAPI's GPT-6 Astra tool-calling guidance uses the OpenAI Responses API at /v1/responses, and its FLUX.2 Pro quickstart requires task submission and polling. The cometapi: modes above do not implement those flows. A custom provider can use their required endpoints and handle polling.
Examples
Chat Models (default):
providers:
- cometapi:chat:gpt-5-mini
- cometapi:chat:claude-3-5-sonnet-20241022
- cometapi:chat:your-chat-model
# Or use default chat mode
- cometapi:gpt-5-mini
Image Generation Models:
providers:
- cometapi:image:dall-e-3
- cometapi:image:flux-schnell
- cometapi:image:your-image-model
Text Completion Models:
providers:
- cometapi:completion:deepseek-chat
- cometapi:completion:your-completion-model
Embedding Models:
providers:
- cometapi:embedding:text-embedding-3-small
- cometapi:embedding:your-embedding-model
Each mode accepts its corresponding OpenAI-compatible configuration options. Parameter support, image sizes, tool calling, and output formats depend on the selected CometAPI model. Confirm those details in its API reference before using or replacing an example ID:
providers:
- id: cometapi:chat:gpt-5-mini
config:
max_completion_tokens: 512
- id: cometapi:image:dall-e-3
config:
n: 1
size: '1024x1024'
quality: 'standard'
Examples
You can run the included example configuration:
npx promptfoo@latest init --example provider-cometapi
Command Line Usage
Text Generation:
npx promptfoo@latest eval --prompts "Write a haiku about AI" -r cometapi:chat:gpt-5-mini
Image Generation:
npx promptfoo@latest eval --prompts "A futuristic robot in a garden" -r cometapi:image:dall-e-3
For image input, use a message with an image_url content part, as shown in the vision configuration below. A URL in a plain text prompt is sent as text.
Configuration Examples
Image Generation with Custom Parameters:
# yaml-language-server: $schema=https://promptfoo.dev/config-schema.json
providers:
- id: cometapi:image:dall-e-3
config:
size: '1792x1024'
quality: 'hd'
style: 'vivid'
n: 1
prompts:
- 'A {{style}} painting of {{subject}}'
tests:
- vars:
style: surreal
subject: floating islands in space
Vision Model Configuration:
# yaml-language-server: $schema=https://promptfoo.dev/config-schema.json
prompts:
- |
[{"role": "user", "content": [
{"type": "text", "text": {{question | dump}}},
{"type": "image_url", "image_url": {"url": {{image_url | dump}}}}
]}]
providers:
- id: cometapi:chat:gpt-4o
config:
max_tokens: 1000
temperature: 0.3
tests:
- vars:
image_url: 'https://example.com/chart.png'
question: 'What insights can you draw from this data?'
Available Models
CometAPI supports 500+ models from multiple providers. You can view available models using:
curl -H "Authorization: Bearer $COMETAPI_KEY" https://api.cometapi.com/v1/models
Or browse models on the CometAPI pricing page.
Use the exact CometAPI model ID with the matching type prefix from the configuration section. Check that model's API reference for endpoint and feature support. For example, the GPT Image quickstart returns a completed b64_json image, while FLUX.2 Pro requires the asynchronous flow described above.
Environment Variables
| Variable | Description |
|---|---|
COMETAPI_KEY | Your CometAPI key. Get one at CometAPI console token |