@baseai/core
Advanced tools
Comparing version 0.9.16 to 0.9.17
# `baseai` SDK | ||
## 0.9.17 | ||
### Patch Changes | ||
- 📦 NEW: Add claude-3.5-sonnet-latest | ||
## 0.9.16 | ||
@@ -4,0 +10,0 @@ |
@@ -18,3 +18,3 @@ import { ChatCompletionStream } from 'openai/lib/ChatCompletionStream'; | ||
type TogetherModels = 'together:meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo' | 'together:meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo' | 'together:meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo' | 'together:meta-llama/Llama-3-70b-chat-hf' | 'together:meta-llama/Llama-3-8b-chat-hf' | 'together:togethercomputer/Llama-2-7B-32K-Instruct' | 'together:meta-llama/Llama-2-13b-chat-hf' | 'together:meta-llama/Llama-2-70b-chat-hf' | 'together:google/gemma-7b-it' | 'together:google/gemma-2b-it' | 'together:mistralai/Mistral-7B-Instruct-v0.1' | 'together:mistralai/Mistral-7B-Instruct-v0.2' | 'together:mistralai/Mixtral-8x7B-Instruct-v0.1' | 'together:mistralai/Mixtral-8x22B-Instruct-v0.1' | 'together:databricks/dbrx-instruct'; | ||
type AnthropicModels = 'anthropic:claude-3-5-sonnet-20240620' | 'anthropic:claude-3-opus-20240229' | 'anthropic:claude-3-sonnet-20240229' | 'anthropic:claude-3-haiku-20240307'; | ||
type AnthropicModels = 'anthropic:claude-3-5-sonnet-latest' | 'anthropic:claude-3-5-sonnet-20240620' | 'anthropic:claude-3-opus-20240229' | 'anthropic:claude-3-sonnet-20240229' | 'anthropic:claude-3-haiku-20240307'; | ||
type GroqModels = 'groq:llama-3.1-70b-versatile' | 'groq:llama-3.1-8b-instant' | 'groq:llama3-70b-8192' | 'groq:llama3-8b-8192' | 'groq:mixtral-8x7b-32768' | 'groq:gemma2-9b-it' | 'groq:gemma-7b-it'; | ||
@@ -21,0 +21,0 @@ type GoogleModels = 'google:gemini-1.5-pro-latest' | 'google:gemini-1.5-flash-latest' | 'google:gemini-1.5-flash-8b-latest' | 'google:gemini-pro'; |
@@ -497,2 +497,8 @@ "use strict"; | ||
{ | ||
id: "claude-3-5-sonnet-latest", | ||
provider: ANTHROPIC, | ||
promptCost: 3, | ||
completionCost: 15 | ||
}, | ||
{ | ||
id: "claude-3-5-sonnet-20240620", | ||
@@ -499,0 +505,0 @@ provider: ANTHROPIC, |
{ | ||
"name": "@baseai/core", | ||
"description": "The Web AI Framework's core - BaseAI.dev", | ||
"version": "0.9.16", | ||
"version": "0.9.17", | ||
"license": "Apache-2.0", | ||
@@ -36,4 +36,4 @@ "sideEffects": false, | ||
"vitest": "1.6.0", | ||
"@baseai/tsconfig": "0.0.2", | ||
"@baseai/eslint-config": "0.0.2" | ||
"@baseai/eslint-config": "0.0.2", | ||
"@baseai/tsconfig": "0.0.2" | ||
}, | ||
@@ -40,0 +40,0 @@ "publishConfig": { |
@@ -8,3 +8,3 @@ import { ChatCompletionStream } from 'openai/lib/ChatCompletionStream'; | ||
type TogetherModels = 'together:meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo' | 'together:meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo' | 'together:meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo' | 'together:meta-llama/Llama-3-70b-chat-hf' | 'together:meta-llama/Llama-3-8b-chat-hf' | 'together:togethercomputer/Llama-2-7B-32K-Instruct' | 'together:meta-llama/Llama-2-13b-chat-hf' | 'together:meta-llama/Llama-2-70b-chat-hf' | 'together:google/gemma-7b-it' | 'together:google/gemma-2b-it' | 'together:mistralai/Mistral-7B-Instruct-v0.1' | 'together:mistralai/Mistral-7B-Instruct-v0.2' | 'together:mistralai/Mixtral-8x7B-Instruct-v0.1' | 'together:mistralai/Mixtral-8x22B-Instruct-v0.1' | 'together:databricks/dbrx-instruct'; | ||
type AnthropicModels = 'anthropic:claude-3-5-sonnet-20240620' | 'anthropic:claude-3-opus-20240229' | 'anthropic:claude-3-sonnet-20240229' | 'anthropic:claude-3-haiku-20240307'; | ||
type AnthropicModels = 'anthropic:claude-3-5-sonnet-latest' | 'anthropic:claude-3-5-sonnet-20240620' | 'anthropic:claude-3-opus-20240229' | 'anthropic:claude-3-sonnet-20240229' | 'anthropic:claude-3-haiku-20240307'; | ||
type GroqModels = 'groq:llama-3.1-70b-versatile' | 'groq:llama-3.1-8b-instant' | 'groq:llama3-70b-8192' | 'groq:llama3-8b-8192' | 'groq:mixtral-8x7b-32768' | 'groq:gemma2-9b-it' | 'groq:gemma-7b-it'; | ||
@@ -11,0 +11,0 @@ type GoogleModels = 'google:gemini-1.5-pro-latest' | 'google:gemini-1.5-flash-latest' | 'google:gemini-1.5-flash-8b-latest' | 'google:gemini-pro'; |
@@ -481,2 +481,8 @@ "use strict"; | ||
{ | ||
id: "claude-3-5-sonnet-latest", | ||
provider: ANTHROPIC, | ||
promptCost: 3, | ||
completionCost: 15 | ||
}, | ||
{ | ||
id: "claude-3-5-sonnet-20240620", | ||
@@ -483,0 +489,0 @@ provider: ANTHROPIC, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
423068
719
5146
75
92
2
92