mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
Adds missing model Claude 3.7 to accepted models (#224943)
## Summary With the new Claude 3.7 Elastic Managed LLM we're seeing an unhandled error in Kibana playground. We can reproduce it by: 1. Indexing few but very large documents in Elasticsearch (10 docs, each 7mb) 2. Setting the docs to send setting as 10 3. Setting context to always query the index (I think there is some function calling, not sure what happens under the hood but this worked as I wanted to consistently).  Thread: https://elastic.slack.com/archives/C08DT72KR6J/p1750686748616369?thread_ts=1750685837.561949&cid=C08DT72KR6J We're not 100% sure this fixes the issue but we do know the model should be added. ### Checklist Check the PR satisfies following conditions. - [ ] Cannot reproduce the issue after the model entry is used on QA environment Reviewers should verify this PR satisfies this list as well. - [x] The PR description includes the appropriate Release Notes section, and the correct `release_note:*` label is applied per the [guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) ### Identify risks No known risks
This commit is contained in:
parent
550b9d58ea
commit
b3d08001e1
2 changed files with 18 additions and 0 deletions
|
@ -38,6 +38,12 @@ export const MODELS: ModelProvider[] = [
|
|||
promptTokenLimit: 200000,
|
||||
provider: LLMs.bedrock,
|
||||
},
|
||||
{
|
||||
name: 'Anthropic Claude 3.7 Sonnet',
|
||||
model: 'anthropic.claude-3-7-sonnet-20250219-v1:0',
|
||||
promptTokenLimit: 200000,
|
||||
provider: LLMs.bedrock,
|
||||
},
|
||||
{
|
||||
name: 'Google Gemini 1.5 Pro',
|
||||
model: 'gemini-1.5-pro-002',
|
||||
|
|
|
@ -141,6 +141,18 @@ describe('useLLMsModels Query Hook', () => {
|
|||
value: 'anthropic.claude-3-5-sonnet-20240620-v1:0',
|
||||
promptTokenLimit: 200000,
|
||||
},
|
||||
{
|
||||
connectorId: 'connectorId2',
|
||||
connectorName: 'Bedrock Connector',
|
||||
connectorType: LLMs.bedrock,
|
||||
disabled: false,
|
||||
icon: expect.any(String),
|
||||
id: 'connectorId2Anthropic Claude 3.7 Sonnet',
|
||||
name: 'Anthropic Claude 3.7 Sonnet',
|
||||
showConnectorName: false,
|
||||
value: 'anthropic.claude-3-7-sonnet-20250219-v1:0',
|
||||
promptTokenLimit: 200000,
|
||||
},
|
||||
{
|
||||
connectorId: 'connectorId3',
|
||||
connectorName: 'OpenAI OSS Model Connector',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue