Goliath 120B

Other chattool_use

API ID: alpindale/goliath-120b

Input Price
$3.75
/1M tokens
Output Price
$7.50
/1M tokens

About Goliath 120B

Goliath is a merged model combining multiple large language models for enhanced capability. With 120 billion parameters, it delivers strong performance across diverse tasks through model merging techniques. Goliath excels at complex reasoning, creative writing, and general language tasks. The model demonstrates the power of combining multiple model strengths. For developers seeking maximum capability from merged models, Goliath offers unique combined strengths.

๐Ÿ’ฐ
Price Ranking
#893 lowest price among 950 Chat models

Model Specifications

Context Length
6k
Max Output
1k
Release Date
2023-11-10
Capabilities
chat tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$3.94
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$123.75
/month
1000 tickets/day, ~800 tokens each

Other Model Lineup

Compare all models from Other to find the best fit

Model Input Output Context Capabilities
Goliath 120B Current Free Free 6k chat tool_use
Riverflow V2 Max Preview Free Free 8k chat vision image_gen
Riverflow V2 Standard Preview Free Free 8k chat vision image_gen
Riverflow V2 Fast Preview Free Free 8k chat vision image_gen
AFM 4.5B Free Free 66k chat
AFM 4.5B Free Free 66k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

OpenAI GPT-5.1 Chat
Input: $1.25
Output: $10.00
Context: 128k
OpenAI GPT-5 Chat
Input: $1.25
Output: $10.00
Context: 128k
OpenAI GPT-5.1-Codex-Max
Input: $1.25
Output: $10.00
Context: 400k
OpenAI GPT-5.1
Input: $1.25
Output: $10.00
Context: 400k

๐Ÿš€ Quick Start

Get started with Goliath 120B API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="alpindale/goliath-120b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)