mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
## Summary Update Preconfigured connector name to `Elastic LLM`. <img width="1504" alt="Screenshot 2025-02-20 at 11 29 02 AM" src="https://github.com/user-attachments/assets/aa0a32f7-f1b2-4496-8c2e-7773f017c153" /> ### ES3 Testing instruction No additional config needed. Once run in local machine, the changes should reflect automatically. ### ESS instructions In `kibana.dev.yml` file, add ``` # xpack.actions.preconfigured: Elastic-LLM: name: Elastic LLM actionTypeId: .inference exposeConfig: true config: provider: 'elastic' taskType: 'chat_completion' inferenceId: '.rainbow-sprinkles-elastic' providerConfig: model_id: 'rainbow-sprinkles' ``` and the preconfigured endpoint with updated name should be visible. ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [X] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios |
||
---|---|---|
.. | ||
kibana.yml | ||
node.options | ||
README.md | ||
serverless.es.yml | ||
serverless.oblt.yml | ||
serverless.security.yml | ||
serverless.yml |
as work on serverless picks up we will add config values to these files that
define how Kibana will run in "serverless" modes. To start Kibana locally with
this configuration, pass --serverless={mode}
or run yarn serverless-{mode}
valid modes are currently: es
, oblt
, and security
configuration is applied in the following order, later values override
- serverless.yml (serverless configs go first)
- serverless.{mode}.yml (serverless configs go first)
- base config, in this preference order:
- my-config.yml(s) (set by --config)
- env-config.yml (described by
env.KBN_CONFIG_PATHS
) - kibana.yml (default @
env.KBN_PATH_CONF
/kibana.yml)
- kibana.dev.yml
- serverless.dev.yml
- serverless.{mode}.dev.yml