-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmodel_pricing.yaml
More file actions
78 lines (67 loc) · 1.89 KB
/
model_pricing.yaml
File metadata and controls
78 lines (67 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Anthropic Model Pricing
# All prices are per 1,000 tokens in USD
# Source: https://www.anthropic.com/pricing
models:
# Claude Opus 4.5
claude-opus-4.5:
input: 0.005
output: 0.025
batch_input: 0.0025
batch_output: 0.0125
cache_write: 0.00625
cache_read: 0.0005
# Claude Haiku 4.5
claude-haiku-4.5:
input: 0.001
output: 0.005
batch_input: 0.0005
batch_output: 0.0025
cache_write: 0.00125
cache_read: 0.0001
# Claude Sonnet 4.5
claude-sonnet-4.5:
input: 0.003
output: 0.015
batch_input: 0.0015
batch_output: 0.0075
cache_write: 0.00375
cache_read: 0.0003
# Claude Sonnet 4.5
claude-sonnet-4:
input: 0.003
output: 0.015
# Claude Sonnet 4.5 (Computer Use)
claude-sonnet-4.5-computer-use:
input: 0.006
output: 0.0225
batch_input: 0.003
batch_output: 0.01125
cache_write: 0.0075
cache_read: 0.0006
# Amazon Bedrock Model ID mapping
bedrock_model_mapping:
# Sonnet 4.5
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": "claude-sonnet-4.5"
"anthropic.claude-sonnet-4-5-20250929-v1:0": "claude-sonnet-4.5"
# Sonnet 4 (May 2025)
"us.anthropic.claude-sonnet-4-20250514-v1:0": "claude-sonnet-4"
"anthropic.claude-sonnet-4-20250514-v1:0": "claude-sonnet-4"
# Haiku 4.5
"anthropic.claude-haiku-4-5-20251001-v1:0": "claude-haiku-4.5"
"us.anthropic.claude-haiku-4-5-20251001-v1:0": "claude-haiku-4.5"
# Sonnet 3.5 v2
"anthropic.claude-sonnet-3-5-v2:0": "claude-sonnet-4.5"
"us.anthropic.claude-sonnet-3-5-v2:0": "claude-sonnet-4.5"
# Opus (if available)
"anthropic.claude-opus-4-5:0": "claude-opus-4.5"
"us.anthropic.claude-opus-4-5:0": "claude-opus-4.5"
# OpenAI Model Pricing
# All prices are per 1,000 tokens in USD
# Source: OpenAI pricing page
openai_models:
# GPT OSS 20B
gpt-oss-20b:
input: 0.00007
output: 0.0003
batch_input: 0.000035
batch_output: 0.00015