-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[Serverless] Preconfigured Connectors: adds new connectors and updates existing one #242791
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
9f76b73
37451e2
71e8005
7a7d953
af72774
e20c3ce
96c422c
0146ed4
f45d651
5b89335
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,7 +25,12 @@ export const request = <T = unknown>({ | |
| ...options, | ||
| }); | ||
| }; | ||
| export const INTERNAL_INFERENCE_CONNECTORS = ['Elastic-Managed-LLM']; | ||
| export const INTERNAL_INFERENCE_CONNECTORS = [ | ||
| 'Elastic-Managed-LLM', | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question if we need
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ya, it looks like this PR removes Anyone who has a saved object that references Or perhaps these connector id's are never referenced directly, just used internally?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pmuellr - thanks for taking a look! 🙏 The additional preconfigured connectors added (v2, v3) will only be returned by the actions client getAll once the backing inference endpoint exists, so no issue there either.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good. I'd go ahead and try testing an upgrade, if you haven't already, by running and then run Kibana from main to do something to get a reference to |
||
| 'General-Purpose-LLM-v1', | ||
| 'General-Purpose-LLM-v2', | ||
| 'General-Purpose-LLM-v3', | ||
| ]; | ||
| export const INTERNAL_CLOUD_CONNECTORS = ['Elastic-Cloud-SMTP']; | ||
|
|
||
| export const getConnectors = () => | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.