File tree Expand file tree Collapse file tree 6 files changed +36
-6
lines changed
apps/baseai.dev/content/docs/docs Expand file tree Collapse file tree 6 files changed +36
-6
lines changed Original file line number Diff line number Diff line change @@ -95,12 +95,14 @@ Learn more about [using Ollama models](/docs/guides/using-ollama-models) in Base
95
95
96
96
### Anthropic
97
97
98
- | Model | Provider | Owner | Context | Cost* |
99
- | ---------------------------------------------------------------------------------------------| -----------| -----------| ---------| ---------------------------------------------|
100
- | claude-3.5-sonnet <br /> ID: <InlineCopy content = " anthropic:claude-3-5-sonnet-20240620" /> | Anthropic | Anthropic | 200K | $3 prompt <br /> $15 completion |
101
- | claude-3-opus <br /> ID: <InlineCopy content = " anthropic:claude-3-opus-20240229" /> | Anthropic | Anthropic | 200K | $15 prompt <br /> $75 completion |
102
- | claude-3-sonnet <br /> ID: <InlineCopy content = " anthropic:claude-3-sonnet-20240229" /> | Anthropic | Anthropic | 200K | $3 prompt <br /> $15 completion |
103
- | claude-3-haiku <br /> ID: <InlineCopy content = " anthropic:claude-3-haiku-20240307" /> | Anthropic | Anthropic | 200K | $0.25 prompt <br /> $1.25 completion |
98
+ | Model | Provider | Owner | Context | Cost* |
99
+ | ------------------------------------------------------------------------------------------------------| -----------| -----------| ---------| ---------------------------------------------|
100
+ | claude-3.5-sonnet-latest <br /> ID: <InlineCopy content = " anthropic:claude-3-5-sonnet-latest" /> | Anthropic | Anthropic | 200K | $3 prompt <br /> $15 completion |
101
+ | claude-3.5-sonnet-20240620 <br /> ID: <InlineCopy content = " anthropic:claude-3-5-sonnet-20240620" /> | Anthropic | Anthropic | 200K | $3 prompt <br /> $15 completion |
102
+ | claude-3-opus <br /> ID: <InlineCopy content = " anthropic:claude-3-opus-20240229" /> | Anthropic | Anthropic | 200K | $15 prompt <br /> $75 completion |
103
+ | claude-3-sonnet <br /> ID: <InlineCopy content = " anthropic:claude-3-sonnet-20240229" /> | Anthropic | Anthropic | 200K | $3 prompt <br /> $15 completion |
104
+ | claude-3-haiku <br /> ID: <InlineCopy content = " anthropic:claude-3-haiku-20240307" /> | Anthropic | Anthropic | 200K | $0.25 prompt <br /> $1.25 completion |
105
+
104
106
105
107
<span className = ' text-xs' >* USD per Million tokens</span >
106
108
Original file line number Diff line number Diff line change @@ -365,6 +365,16 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
365
365
}
366
366
] ,
367
367
[ ANTHROPIC ] : [
368
+ {
369
+ id : 'claude-3-5-sonnet-latest' ,
370
+ provider : ANTHROPIC ,
371
+ promptCost : 3 ,
372
+ completionCost : 15 ,
373
+ toolSupport : {
374
+ toolChoice : true ,
375
+ parallelToolCalls : true
376
+ }
377
+ } ,
368
378
{
369
379
id : 'claude-3-5-sonnet-20240620' ,
370
380
provider : ANTHROPIC ,
Original file line number Diff line number Diff line change @@ -285,6 +285,16 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
285
285
}
286
286
] ,
287
287
[ ANTHROPIC ] : [
288
+ {
289
+ id : 'claude-3-5-sonnet-latest' ,
290
+ provider : ANTHROPIC ,
291
+ promptCost : 3 ,
292
+ completionCost : 15 ,
293
+ toolSupport : {
294
+ toolChoice : true ,
295
+ parallelToolCalls : true
296
+ }
297
+ } ,
288
298
{
289
299
id : 'claude-3-5-sonnet-20240620' ,
290
300
provider : ANTHROPIC ,
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export type TogetherModels =
32
32
| 'together:databricks/dbrx-instruct' ;
33
33
34
34
export type AnthropicModels =
35
+ | 'anthropic:claude-3-5-sonnet-latest'
35
36
| 'anthropic:claude-3-5-sonnet-20240620'
36
37
| 'anthropic:claude-3-opus-20240229'
37
38
| 'anthropic:claude-3-sonnet-20240229'
Original file line number Diff line number Diff line change @@ -205,6 +205,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
205
205
} ,
206
206
] ,
207
207
[ ANTHROPIC ] : [
208
+ {
209
+ id : 'claude-3-5-sonnet-latest' ,
210
+ provider : ANTHROPIC ,
211
+ promptCost : 3 ,
212
+ completionCost : 15 ,
213
+ } ,
208
214
{
209
215
id : 'claude-3-5-sonnet-20240620' ,
210
216
provider : ANTHROPIC ,
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export type TogetherModels =
32
32
| 'together:databricks/dbrx-instruct' ;
33
33
34
34
export type AnthropicModels =
35
+ | 'anthropic:claude-3-5-sonnet-latest'
35
36
| 'anthropic:claude-3-5-sonnet-20240620'
36
37
| 'anthropic:claude-3-opus-20240229'
37
38
| 'anthropic:claude-3-sonnet-20240229'
You can’t perform that action at this time.
0 commit comments