-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…9286) ## Summary Closes #183245 Closes #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
9b6af1c
commit df0dfa5
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.