forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Observability AI Assistant] migrate to inference client elastic#197630…
… (elastic#199286) ## Summary Closes elastic#183245 Closes elastic#197630 [Observability AI Assistant] Partially migrate to inference client replacing `inferenceClient.chatComplete` to `observabilityAIAssistantClient.chat` - `observabilityAIAssistantClient.complete` does a bunch of stuff on top of `chat`. keepping `observabilityAIAssistantClient.chat` as a wrapper for now because it also adds instrumentation and logging.
- Loading branch information
1 parent
71751d0
commit 9f462f3
Showing
47 changed files
with
559 additions
and
2,667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 0 additions & 72 deletions
72
...s/observability_solution/observability_ai_assistant/common/utils/process_openai_stream.ts
This file was deleted.
Oops, something went wrong.
26 changes: 7 additions & 19 deletions
26
x-pack/plugins/observability_solution/observability_ai_assistant/kibana.jsonc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,26 @@ | ||
{ | ||
"type": "plugin", | ||
"id": "@kbn/observability-ai-assistant-plugin", | ||
"owner": [ | ||
"@elastic/obs-ai-assistant" | ||
], | ||
"owner": ["@elastic/obs-ai-assistant"], | ||
"group": "platform", | ||
"visibility": "shared", | ||
"plugin": { | ||
"id": "observabilityAIAssistant", | ||
"browser": true, | ||
"server": true, | ||
"configPath": [ | ||
"xpack", | ||
"observabilityAIAssistant" | ||
], | ||
"configPath": ["xpack", "observabilityAIAssistant"], | ||
"requiredPlugins": [ | ||
"actions", | ||
"features", | ||
"licensing", | ||
"security", | ||
"taskManager", | ||
"dataViews" | ||
], | ||
"optionalPlugins": [ | ||
"cloud", | ||
"serverless" | ||
], | ||
"requiredBundles": [ | ||
"kibanaReact", | ||
"kibanaUtils" | ||
], | ||
"runtimePluginDependencies": [ | ||
"ml" | ||
"dataViews", | ||
"inference" | ||
], | ||
"optionalPlugins": ["cloud", "serverless"], | ||
"requiredBundles": ["kibanaReact", "kibanaUtils"], | ||
"runtimePluginDependencies": ["ml"], | ||
"extraPublicDirs": [] | ||
} | ||
} |
Oops, something went wrong.