Understanding Models
Learn about AI models accessible through Wictz API and how to specify them.
Understanding Models
Wictz API provides access to a variety of AI models from different providers. This page gives an overview of how to understand and select models. Your access to specific models depends on your subscription plan and any custom configurations set by your administrator.
Available Models
You can retrieve a list of all models available to your API key by making a GET request to the /api/v1/models
endpoint.
curl -X GET https://wictz.com/api/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"
The response will be a JSON object containing a list of model objects, each with details like ID, provider, and capabilities. Pricing information is not included in this public endpoint.
{
"object": "list",
"data": [
{
"id": "gpt-4",
"object": "model",
"created": 1677649963,
"owned_by": "openai",
"provider": "openai",
"description": "OpenAI's most capable model, excellent for tasks requiring complex reasoning.",
"capabilities": ["chat", "completion", "vision (limited)"],
"context_window": 8192
},
{
"id": "claude-3-opus-20240229",
"object": "model",
"created": 1709136000,
"owned_by": "anthropic",
"provider": "anthropic",
"description": "Anthropic's most powerful model, offering top-level performance on highly complex tasks.",
"capabilities": ["chat", "completion"],
"context_window": 200000
}
// ... more models
]
}
Below are some commonly used models available through Wictz API. For the full, up-to-date list and details, always refer to the /api/v1/models
endpoint or your Wictz API dashboard (for administrators).
OpenAI Models
GPT-4 Series
Includes models like gpt-4
, gpt-4-turbo
, gpt-4o
.
Most capable models from OpenAI, suitable for complex reasoning, creative content generation, and detailed analysis. Some versions offer larger context windows and vision capabilities.
GPT-3.5 Series
Includes models like gpt-3.5-turbo
.
Fast and cost-effective models, excellent for a wide range of tasks including chatbots, summarization, and general content generation.
Anthropic Models
Claude 3 Opus
Model ID: claude-3-opus-20240229
Anthropic's most intelligent model, excelling at complex analysis, research, and tasks requiring deep reasoning. Offers a large context window.
Claude 3 Sonnet
Model ID: claude-3-sonnet-20240229
A balance of intelligence and speed, ideal for enterprise workloads, RAG, and scaled AI deployments.
Claude 3 Haiku
Model ID: claude-3-haiku-20240307
Anthropic's fastest and most compact model, designed for near-instant responsiveness in applications like customer service chats or content moderation.
Google Models
Gemini Pro Series
Includes models like gemini-pro
, gemini-1.5-pro-latest
.
Google's flagship multimodal models, capable of handling text, code, images, and video. Strong reasoning and problem-solving capabilities.
Model Selection Considerations
When choosing a model, consider the following factors:
- Task Complexity: More complex tasks (e.g., detailed analysis, creative writing) often benefit from more powerful models (e.g., GPT-4, Claude 3 Opus). Simpler tasks (e.g., summarization, basic Q&A) might be well-served by faster models (e.g., GPT-3.5 Turbo, Claude 3 Haiku).
- Speed/Latency: For real-time applications (e.g., chatbots), model latency is critical. Models like GPT-3.5 Turbo or Claude 3 Haiku are optimized for speed.
- Context Window: This is the amount of text (input + output) the model can handle in a single request. Longer context windows are useful for tasks involving large documents or extended conversations.
- Capabilities: Some models have specialized capabilities, such as vision (image understanding) or function calling. Ensure the chosen model supports the features your application requires.
- Rate Limits: Different models may have different rate limits associated with them under your plan.
Model Usage and Billing
Unified Billing
For detailed information on how billing works, please refer to the Billing section in your dashboard or your account's pricing plan details.
On this page