mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
Implements chat & function calling for the Observability AI Assistant. The APM related changes are due to a correction in the `toBooleanRt` type. Code in `x-pack/observability_ai_assistant` has been reviewed via feature branches. --------- Co-authored-by: Coen Warmer <coen.warmer@gmail.com> Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Clint Andrew Hall <clint@clintandrewhall.com> |
||
---|---|---|
.. | ||
src | ||
browser_index.ts | ||
index.ts | ||
jest.config.js | ||
kibana.jsonc | ||
package.json | ||
README.md | ||
tsconfig.json |
@kbn/server-route-repository
Utility functions for creating a typed server route repository, and a typed client, generating runtime validation and type validation from the same route definition.
Usage
TBD
Server vs. Browser entry points
This package exposes utils that can be used on both: the server and the browser.
However, importing the package might bring in server-only code, affecting the bundle size.
To avoid this, the package exposes 2 entry points: index.js
and web_index.js
.
When adding utilities to this package, please make sure to update the entry points accordingly and the BUILD.bazel's target_web
target build to include all the necessary files.