Skip to content
Last updated

Represents an AI model available in the Freddy platform with its capabilities, pricing, configuration details, and performance characteristics.

Properties

Core Identity

id string required

The unique identifier for the model (e.g., mdl_09adacc3e5d3).

key string required

The API key used to reference this model in requests (e.g., gpt-4o, claude-3-5-sonnet-20241022).

name string required

The human-readable display name of the model (e.g., "GPT-4o", "Claude 3.5 Sonnet").

description string optional

A brief description of the model's strengths and primary use cases. Not included in minimal responses (include_capabilities=false).

Provider & Status

provider string optional

The AI provider for this model. Like these: aitronos, openai, anthropic, google (not limited to these). Not included in minimal responses (include_capabilities=false).

is_visible_in_ui boolean required

Whether this model is visible in the chat UI or Hub for end users.

is_deprecated boolean required

Whether this model is deprecated and scheduled for removal.

availability_status string required

Current availability status. One of general_availability, coming_soon, deprecated.

Capabilities

capabilities array optional

List of features supported by this model. Only included when include_capabilities=true (default).

Show possible values
  • text_generation - Generate text responses
  • conversation - Multi-turn conversations
  • streaming - Real-time response streaming
  • tool_calling - Execute functions and tools
  • vision - Process and analyze images
  • audio - Process audio inputs
  • reasoning - Advanced reasoning capabilities

Context & Synapse Limits

context_window integer optional

Maximum number of tokens the model can process in a single request (input context window). Only included when include_details=true.

Pricing

pricing object optional

Pricing information for this model. Only included when include_pricing=true.

Show properties

message string required

Pricing status message. Currently returns "Pricing not yet implemented" as pricing is being finalized.

Dates & Versioning

release_date string optional

ISO 8601 date when the model was officially released. Not included in minimal responses (include_capabilities=false).

model_version string optional

Version identifier for the model (e.g., 2024-11-20). Only included when include_details=true.

training_data_cutoff string optional

ISO 8601 date indicating the knowledge cutoff for the model's training data. Only included when include_details=true.

added_to_aitronos_date string optional

ISO 8601 date when this model was added to the Aitronos platform. Only included when include_details=true.

Recommendations & Use Cases

recommended_for array required

List of use cases this model is recommended for. Always included in response.

Show possible values
  • general_purpose - General-purpose tasks
  • coding - Software development and code generation
  • analysis - Data analysis and reasoning
  • creative_writing - Creative content generation
  • multimodal - Image and text processing
  • vision - Image understanding and analysis
  • audio - Audio processing
  • tool_calling - Function calling and tool use
  • reasoning - Complex reasoning tasks
  • fast_response - Quick responses for real-time applications
  • long_context - Tasks requiring large context windows

use_cases string optional

Detailed description of ideal use cases for this model. Only included when include_details=true.

strengths string optional

Description of what this model excels at compared to other models. Only included when include_details=true.

limitations string optional

Known limitations or areas where this model may not perform optimally. Only included when include_details=true.

Performance Ratings

performance_ratings object optional

Comparative performance ratings for this model (1-5 scale, where 5 is best). Only included when include_details=true.

Show properties

reasoning integer optional

Reasoning capability rating (1-5). Indicates the model's ability to perform complex logical reasoning, multi-step problem solving, and analytical tasks.

speed integer optional

Response speed rating (1-5). Indicates how quickly the model generates responses. Higher values mean faster response times.

price_to_performance integer optional

Price-to-performance ratio rating (1-5). Indicates cost efficiency relative to capabilities. Higher values mean better value for money.

input_capabilities integer optional

Input modality support rating (1-5). Indicates variety and quality of supported input types (text, images, audio, etc.).

output_capabilities integer optional

Output modality support rating (1-5). Indicates variety and quality of supported output types and formats.

Performance & Benchmarks

benchmark_scores object optional

Objective performance benchmark scores for this model. Only included when include_details=true.

Show properties

mmlu number optional

MMLU (Massive Multitask Language Understanding) score (0-100).

humaneval number optional

HumanEval coding benchmark score (0-100).

gsm8k number optional

GSM8K math reasoning benchmark score (0-100).

hellaswag number optional

HellaSwag commonsense reasoning score (0-100).

Documentation

documentation_url string optional

URL to the detailed documentation page for this model. Only included when include_details=true.

provider_docs_url string optional

URL to the provider's official documentation for this model. Only included when include_details=true.

Display

badge string optional

Display badge for the model. Currently only recommended is used for models with advanced reasoning or large context windows. Not included in minimal responses (include_capabilities=false).

Usage

This object is returned by:


Returns

A ApiResponse object containing the API response data.

{
      "id": "mdl_09adacc3e5d3",
      "key": "gpt-4o",
      "name": "GPT-4o",
      "description": "Most advanced multimodal model with vision, audio, and tool calling capabilities",
      "provider": "openai",
      "is_visible_in_ui": true,
      "is_deprecated": false,
      "availability_status": "general_availability",
      "capabilities": [
        "text_generation",
        "conversation",
        "streaming",
        "tool_calling",
        "vision",
        "audio",
        "code_interpreter",
        "web_search",
        "file_search",
        "structured_output"
      ],
      "context_window": 128000,
      "pricing": {
        "input_synapses_cost": 2.50,
        "output_synapses_cost": 10.00
      },
      "release_date": "2024-05-13T00:00:00Z",
      "model_version": "2024-05-13",
      "training_data_cutoff": "2023-10-01T00:00:00Z",
      "added_to_aitronos_date": "2024-05-13T00:00:00Z",
      "recommended_for": [
        "general_purpose",
        "multimodal",
        "tool_calling",
        "vision",
        "audio"
      ],
      "use_cases": "Ideal for applications requiring multimodal understanding, complex reasoning, and tool integration. Excels at code generation, data analysis, image understanding, and audio processing.",
      "strengths": "Superior multimodal capabilities, advanced reasoning, excellent code generation, strong tool calling support, and high-quality vision understanding.",
      "limitations": "Higher cost compared to smaller models, may be overkill for simple text-only tasks.",
      "performance_ratings": {
        "reasoning": 4,
        "speed": 3,
        "price_to_performance": 3,
        "input_capabilities": 4,
        "output_capabilities": 4
      },
      "benchmark_scores": {
        "mmlu": 88.7,
        "humaneval": 92.0,
        "gsm8k": 94.8,
        "hellaswag": 95.3
      },
      "documentation_url": "https://docs.freddy.aitronos.com/models/gpt-4o",
      "provider_docs_url": "https://platform.openai.com/docs/models/gpt-4o",
      "badge": "recommended"
    }