From 194d48c0d65f3af83fb4f3b9bd1f7dee76778e70 Mon Sep 17 00:00:00 2001 From: Ashish Agrawal Date: Wed, 29 Nov 2023 16:10:23 -0800 Subject: [PATCH 1/4] Setup documentation files Signed-off-by: Ashish Agrawal --- .github/CODEOWNERS | 2 + DEVELOPER_GUIDE.md | 93 +++++++++++++++++++++++++++++ GETTING_STARTED_GUIDE.md | 126 +++++++++++++++++++++++++++++++++++++++ MAINTAINERS.md | 12 ++++ README.md | 43 ++++++++++--- 5 files changed, 269 insertions(+), 7 deletions(-) create mode 100644 .github/CODEOWNERS create mode 100644 DEVELOPER_GUIDE.md create mode 100644 GETTING_STARTED_GUIDE.md create mode 100644 MAINTAINERS.md diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..2e3d8c8e --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# This should match the owning team set up in https://github.com/orgs/opensearch-project/teams +* @lezzago @joshuali925 @anirudha @sejli diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md new file mode 100644 index 00000000..7b028a36 --- /dev/null +++ b/DEVELOPER_GUIDE.md @@ -0,0 +1,93 @@ +- [Developer guide](#developer-guide) + - [Forking and Cloning](#forking-and-cloning) + - [Install Prerequisites](#install-prerequisites) + - [Environment Setup](#environment-setup) + - [Build](#build) + - [Run](#run) + - [Test](#test) + +## Developer guide + +So you want to contribute code to this project? Excellent! We're glad you're here. Here's what you need to do. + +### Forking and Cloning + +Fork this repository on GitHub, and clone locally with `git clone`. + +### Install Prerequisites + +You will need to install [node.js](https://nodejs.org/en/), [nvm](https://github.com/nvm-sh/nvm/blob/master/README.md), and [yarn](https://yarnpkg.com/) in your environment to properly pull down dependencies to build and bootstrap the plugin. + +### Environment Setup + +1. Download OpenSearch for the version that matches the [OpenSearch Dashboard version specified in package.json](./package.json#L9). +1. Download and install the appropriate [OpenSearch ML Commons plugin](https://github.com/opensearch-project/ml-commons). +1Download the OpenSearch-Dashboards source code for the [version specified in package.json](./package.json#L9) you want to set up. + + See the [OpenSearch Dashboards developer guide](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/DEVELOPER_GUIDE.md) for more instructions on setting up your development environment. + +1. Change your node version to the version specified in `.node-version` inside the OpenSearch-Dashboards root directory. +1. cd into the `plugins` directory of the OpenSearch-Dashboards source code directory. +1. Check out this package from version control into the `plugins` directory. +1. Run `yarn osd bootstrap` inside `Opensearch-Dashboards/plugins/dashboards-assistant`. + +Ultimately, your directory structure should look like this: + +```md +. +├── OpenSearch-Dashboards +│ └── plugins +│ └── dashboards-assistant +``` + + +## Build + +To build the plugin's distributable zip simply run `yarn build`. + +Example output: `./build/assistantDashboards-2.11.0.zip` + + +## Run + +- `yarn start` + + - Starts OpenSearch-Dashboards and includes this plugin. OpenSearch-Dashboards will be available on `localhost:5601`. + - Please run in the OpenSearch-Dashboards root directory + - You must have OpenSearch running with the ML Commons plugin + +## Test + +There are unit/stubbed integration tests and Cypress e2e/integration tests. + +- `yarn test:jest` + + - Runs the plugin unit tests. + +- `yarn run cypress open` + + - Opens the Cypress test runner. + +- `yarn run cypress run` + + - Runs all Cypress tests headlessly in the Electron browser. + +To run the Cypress tests, you must have both OpenSearch and OpenSearch-Dashboards running with the Alerting plugin. + +If you are running Cypress tests with OpenSearch-Dashboards development server, pass these 2 options to `yarn start`: +1. `--no-base-path`: opt out the BasePathProxy. +1. `--no-watch`: make sure your server has not restarted. + +### Formatting + +This codebase uses Prettier as our code formatter. All new code that is added has to be reformatted using the Prettier version listed in `package.json`. In order to keep consistent formatting across the project developers should only use the prettier CLI to reformat their code using the following command: + +``` +yarn prettier --write +``` + +> NOTE: There also exists prettier plugins on several editors that allow for automatic reformatting on saving the file. However using this is discouraged as you must ensure that the plugin uses the correct version of prettier (listed in `package.json`) before using such a plugin. + +### Backport + +- [Link to backport documentation](https://github.com/opensearch-project/opensearch-plugins/blob/main/BACKPORT.md) \ No newline at end of file diff --git a/GETTING_STARTED_GUIDE.md b/GETTING_STARTED_GUIDE.md new file mode 100644 index 00000000..f2f89ecf --- /dev/null +++ b/GETTING_STARTED_GUIDE.md @@ -0,0 +1,126 @@ +## Getting started guide + +Below are the set of steps to run OpenSearch and OpenSearch dashboards with the OpenSearch assistant running correctly on the cluster. +**Note** that the `feature/langchain` is the branch used in this guide. + +1. Follow steps here to setup docker for OpenSearch: https://opensearch.org/docs/latest/install-and-configure/install-opensearch/docker/ + 1. Note: When running docker pull, use this command instead: `docker pull public.ecr.aws/w1m7p7g2/opensearch-reinvent2023:latest` + + +2. Follow steps here to setup docker to OpenSearch Dashboards: https://opensearch.org/docs/latest/install-and-configure/install-dashboards/docker/ + 1. Note: When running docker pull, use this command instead for OSD: `docker pull public.ecr.aws/w1m7p7g2/opensearch-dashboards-reinvent2023:latest` +3. After OpenSearch and OpenSearch Dashboards are running, we will setup ML Commons to connect to the LLM model +4. Run ML commons on Data node + ``` + PUT _cluster/settings + { + "persistent" : { + "plugins.ml_commons.only_run_on_ml_node":"false" + } + } + ``` +5. Add Trusted Endpoints (reference doc) + ``` + PUT _cluster/settings + { + "persistent" : { + "plugins.ml_commons.trusted_connector_endpoints_regex": + [ "^https://runtime\\.sagemaker\\..*[a-z0-9-]\\.amazonaws\\.com/.*$", + "^https://api\\.openai\\.com/.*$", + "^https://api\\.cohere\\.ai/.*$", + "^https://bedrock-runtime\\.us-east-1\\.amazonaws\\.com/.*$" + ] + } + } + ``` +6. Create a connector (reference doc). The below example is for connecting to the AWS Bedrock Claude model. Keep note of the connector id from the API response. (Ensure the credentials passed should have access to call the LLM model) + ``` + POST /_plugins/_ml/connectors/_create + { + "name": "BedRock test claude Connector", + "description": "The connector to BedRock service for claude model", + "version": 1, + "protocol": "aws_sigv4", + "parameters": { + "region": "us-east-1", + "service_name": "bedrock", + "anthropic_version": "bedrock-2023-05-31", + "endpoint": "bedrock.us-east-1.amazonaws.com", + "auth": "Sig_V4", + "content_type": "application/json", + "max_tokens_to_sample": 8000, + "temperature": 0.0001, + "response_filter": "$.completion" + }, + "credential": { + "access_key": "", + "secret_key": "", + "description": "test model", + "connector_id": "" + } + ``` +9. Create Embedding Model and note the model id from the get tasks API call + ``` + POST /_plugins/_ml/models/_register + { + "name": "huggingface/sentence-transformers/all-mpnet-base-v2", + "version": "1.0.1", + "model_group_id": "", + "model_format": "TORCH_SCRIPT" + } + GET /_plugins/_ml/tasks/ + ``` +10. Deploy the LLM and embedding models. Confirm the model has been deployed with the task id from the response with the get tasks API call + ``` + POST /_plugins/_ml/models//_deploy + POST /_plugins/_ml/models//_deploy + + GET /_plugins/_ml/tasks/ + ``` +11. Test connection with calling the Predict API + ``` + POST /_plugins/_ml/models//_predict + { + "parameters": { + "prompt": "\n\nHuman:hello\n\nnAssistant:" + } + } + ``` +12. Connect OS Assistant to the deployed models + ``` + POST /.chat-assistant-config/_doc/model-config + { + "model_type":"claude_bedrock", + "model_id":"", + "embeddings_model_id":"" + } \ No newline at end of file diff --git a/MAINTAINERS.md b/MAINTAINERS.md new file mode 100644 index 00000000..c136e32c --- /dev/null +++ b/MAINTAINERS.md @@ -0,0 +1,12 @@ +## Overview + +This document contains a list of maintainers in this repo. See [opensearch-project/.github/RESPONSIBILITIES.md](https://github.com/opensearch-project/.github/blob/main/RESPONSIBILITIES.md#maintainer-responsibilities) that explains what the role of maintainer means, what maintainers do in this and other repos, and how they should be doing it. If you're interested in contributing, and becoming a maintainer, see [CONTRIBUTING](CONTRIBUTING.md). + +## Current Maintainers + +| Maintainer | GitHub ID | Affiliation | +|-----------------------|-----------------------------------------------| ----------- | +| Ashish Agrawal | [lezzago](https://github.com/lezzago) | Amazon | +| Joshua Li | [joshuali925](https://github.com/joshuali925) | Amazon | +| Anirudha Jadhav | [anirudha](https://github.com/anirudha) | Amazon | +| Sean Li | [sejli](https://github.com/sejli) | Amazon | diff --git a/README.md b/README.md index 847260ca..e9fc6f6e 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,46 @@ -## My Project +[![Forum](https://img.shields.io/badge/chat-on%20forums-blue)](https://forum.opensearch.org/t/feedback-opensearch-assistant/16741) +![PRs welcome!](https://img.shields.io/badge/PRs-welcome!-success) -TODO: Fill this README out! + -Be sure to: +- [OpenSearch Assistant Dashboards](#opensearch-assistant-dashboards) +- [Highlights](#highlights) +- [Documentation](#documentation) +- [Contributing](#contributing) +- [Code of Conduct](#code-of-conduct) +- [Security](#security) +- [License](#license) +- [Copyright](#copyright) -* Change the title in this README -* Edit your repository description on GitHub +# OpenSearch Assistant Dashboards + +The OpenSearch Assistant Dashboards plugin lets you have an opensearch assistant to help dashboards users use OpenSearch. + +## How to get started + +See [getting started guide](GETTING_STARTED_GUIDE.md) to how to deploy this Assistant on your machine with docker images. +**Note** that the `feature/langchain` is the branch used in the getting started guide. + +## Documentation + +In the works. + +## Contributing + +See [developer guide](DEVELOPER_GUIDE.md) and [how to contribute to this project](CONTRIBUTING.md). + +## Code of Conduct + +This project has adopted the [Amazon Open Source Code of Conduct](CODE_OF_CONDUCT.md). For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq), or contact [opensource-codeofconduct@amazon.com](mailto:opensource-codeofconduct@amazon.com) with any additional questions or comments. ## Security -See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information. +If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public GitHub issue. ## License -This project is licensed under the Apache-2.0 License. +This project is licensed under the [Apache v2.0 License](LICENSE). + +## Copyright +Copyright OpenSearch Contributors. See [NOTICE](NOTICE.txt) for details. \ No newline at end of file From 93a9946400d9e6ba1c98fc0eed7f37870a86274b Mon Sep 17 00:00:00 2001 From: Ashish Agrawal Date: Wed, 29 Nov 2023 16:13:58 -0800 Subject: [PATCH 2/4] Fix Typo Signed-off-by: Ashish Agrawal --- DEVELOPER_GUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 7b028a36..9ad66a22 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -72,7 +72,7 @@ There are unit/stubbed integration tests and Cypress e2e/integration tests. - Runs all Cypress tests headlessly in the Electron browser. -To run the Cypress tests, you must have both OpenSearch and OpenSearch-Dashboards running with the Alerting plugin. +To run the Cypress tests, you must have both OpenSearch and OpenSearch-Dashboards running with the ML Commons plugin. If you are running Cypress tests with OpenSearch-Dashboards development server, pass these 2 options to `yarn start`: 1. `--no-base-path`: opt out the BasePathProxy. From f591fd6603d9aa41e7d24131527ccfa04a8dfe5d Mon Sep 17 00:00:00 2001 From: Ashish Agrawal Date: Wed, 29 Nov 2023 16:58:53 -0800 Subject: [PATCH 3/4] Add details about skills and tools Signed-off-by: Ashish Agrawal --- DEVELOPER_GUIDE.md | 1 + GETTING_STARTED_GUIDE.md | 11 +++++++++-- README.md | 16 ++++++++++++++++ 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 9ad66a22..7a595b6a 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -29,6 +29,7 @@ You will need to install [node.js](https://nodejs.org/en/), [nvm](https://github 1. Change your node version to the version specified in `.node-version` inside the OpenSearch-Dashboards root directory. 1. cd into the `plugins` directory of the OpenSearch-Dashboards source code directory. 1. Check out this package from version control into the `plugins` directory. +1. Set `assistant.chat.enabled` to `true` in `opensearch_dashboards.yml` if you want to enable the chat feature. 1. Run `yarn osd bootstrap` inside `Opensearch-Dashboards/plugins/dashboards-assistant`. Ultimately, your directory structure should look like this: diff --git a/GETTING_STARTED_GUIDE.md b/GETTING_STARTED_GUIDE.md index f2f89ecf..62a75544 100644 --- a/GETTING_STARTED_GUIDE.md +++ b/GETTING_STARTED_GUIDE.md @@ -1,6 +1,7 @@ ## Getting started guide -Below are the set of steps to run OpenSearch and OpenSearch dashboards with the OpenSearch assistant running correctly on the cluster. +### How to run assistant on your own machine +Below are the set of steps to run OpenSearch and OpenSearch dashboards with the OpenSearch assistant and the query generation functionality in the Observability Log Explorer page correctly on the cluster. **Note** that the `feature/langchain` is the branch used in this guide. 1. Follow steps here to setup docker for OpenSearch: https://opensearch.org/docs/latest/install-and-configure/install-opensearch/docker/ @@ -9,6 +10,7 @@ Below are the set of steps to run OpenSearch and OpenSearch dashboards with the 2. Follow steps here to setup docker to OpenSearch Dashboards: https://opensearch.org/docs/latest/install-and-configure/install-dashboards/docker/ 1. Note: When running docker pull, use this command instead for OSD: `docker pull public.ecr.aws/w1m7p7g2/opensearch-dashboards-reinvent2023:latest` + 2. If you want to enable the chat assistant feature, set `assistant.chat.enabled` to `true` in the `opensearch_dashboards.yml` file. 3. After OpenSearch and OpenSearch Dashboards are running, we will setup ML Commons to connect to the LLM model 4. Run ML commons on Data node ``` @@ -123,4 +125,9 @@ Below are the set of steps to run OpenSearch and OpenSearch dashboards with the "model_type":"claude_bedrock", "model_id":"", "embeddings_model_id":"" - } \ No newline at end of file + } + ``` +### How to create your own skill +1. To create your skill, you need to work backwards to see how that skill can be achieved by accessing different OpenSearch APIs/functions. For example, a skill to find the alerts related to a question would need to use the Alerting plugin APIs to get this info. +1. To power the skill to get alerts, we must build a tool to search alerts. +1. To create a tool, you must extend this [class](https://github.com/opensearch-project/ml-commons/blob/feature/agent_framework_dev/spi/src/main/java/org/opensearch/ml/common/spi/tools/Tool.java) and implement the specific tool. [This is an example tool](https://github.com/opensearch-project/ml-commons/pull/1629) that search alerts. diff --git a/README.md b/README.md index e9fc6f6e..b5085ba8 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,22 @@ The OpenSearch Assistant Dashboards plugin lets you have an opensearch assistant See [getting started guide](GETTING_STARTED_GUIDE.md) to how to deploy this Assistant on your machine with docker images. **Note** that the `feature/langchain` is the branch used in the getting started guide. +### Supported tools +This requires setting `assistant.chat.enabled` to `true` in `opensearch_dashboards.yml` to use these skills: +1. Query OpenSearch: Use to generate and run a PPL Query to get results for a generic user question related to data stored in their OpenSearch cluster. +2. Get log info: Use to get information of logs if the question contains an OpenSearch log index. +3. Get log error info: Use to get information of logs with errors if the question contains an OpenSearch log index. +4. Search Alerting Monitors By Index: Use this tool to search alerting monitors by index name in the OpenSearch cluster. +5. Get All Alerts: Use this tool to search all alerts triggered in the OpenSearch cluster. +6. Get ticket information: Use this tool to find tickets in the system with incidents that are relevant to a question about error causes. +7. Get generic information: Use this tool to answer a generic question not related to OpenSearch cluster. This tool takes the question as input. +8. Get OpenSearch indices: Use this tool to get high-level information (e. health, status, index, docs.count) about indices in a cluster, including backing indices for data streams in the OpenSearch cluster. +9. Check OpenSearch index existence: Use this tool to check if a data stream, index, or alias exists in the OpenSearch cluster. +10. Find Visualizations: Use this tool to find user created visualizations. +11. Get trace groups: Use this to get information about each trace group. +12. Get traces: Use this to get information about each trace. +13. Get trace services: Use this to get information about each service in trace analytics. + ## Documentation In the works. From 38e3c3cf9c226c98df6e4112915e94177432103e Mon Sep 17 00:00:00 2001 From: Ashish Agrawal Date: Wed, 29 Nov 2023 19:57:39 -0800 Subject: [PATCH 4/4] Fix typos and add maintainers Signed-off-by: Ashish Agrawal --- DEVELOPER_GUIDE.md | 22 ++++------------------ GETTING_STARTED_GUIDE.md | 6 +++--- MAINTAINERS.md | 17 +++++++++++------ 3 files changed, 18 insertions(+), 27 deletions(-) diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 7a595b6a..e40f41d0 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -22,7 +22,7 @@ You will need to install [node.js](https://nodejs.org/en/), [nvm](https://github 1. Download OpenSearch for the version that matches the [OpenSearch Dashboard version specified in package.json](./package.json#L9). 1. Download and install the appropriate [OpenSearch ML Commons plugin](https://github.com/opensearch-project/ml-commons). -1Download the OpenSearch-Dashboards source code for the [version specified in package.json](./package.json#L9) you want to set up. +1. Download the OpenSearch-Dashboards source code for the [version specified in package.json](./package.json#L9) you want to set up. See the [OpenSearch Dashboards developer guide](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/DEVELOPER_GUIDE.md) for more instructions on setting up your development environment. @@ -59,32 +59,18 @@ Example output: `./build/assistantDashboards-2.11.0.zip` ## Test -There are unit/stubbed integration tests and Cypress e2e/integration tests. +There are unit/stubbed integration tests. -- `yarn test:jest` +- `yarn test` - Runs the plugin unit tests. -- `yarn run cypress open` - - - Opens the Cypress test runner. - -- `yarn run cypress run` - - - Runs all Cypress tests headlessly in the Electron browser. - -To run the Cypress tests, you must have both OpenSearch and OpenSearch-Dashboards running with the ML Commons plugin. - -If you are running Cypress tests with OpenSearch-Dashboards development server, pass these 2 options to `yarn start`: -1. `--no-base-path`: opt out the BasePathProxy. -1. `--no-watch`: make sure your server has not restarted. - ### Formatting This codebase uses Prettier as our code formatter. All new code that is added has to be reformatted using the Prettier version listed in `package.json`. In order to keep consistent formatting across the project developers should only use the prettier CLI to reformat their code using the following command: ``` -yarn prettier --write +yarn lint --fix ``` > NOTE: There also exists prettier plugins on several editors that allow for automatic reformatting on saving the file. However using this is discouraged as you must ensure that the plugin uses the correct version of prettier (listed in `package.json`) before using such a plugin. diff --git a/GETTING_STARTED_GUIDE.md b/GETTING_STARTED_GUIDE.md index 62a75544..3f83343b 100644 --- a/GETTING_STARTED_GUIDE.md +++ b/GETTING_STARTED_GUIDE.md @@ -21,7 +21,7 @@ Below are the set of steps to run OpenSearch and OpenSearch dashboards with the } } ``` -5. Add Trusted Endpoints (reference doc) +5. Add Trusted Endpoints ([reference doc](https://opensearch.org/docs/latest/ml-commons-plugin/remote-models/index/)) ``` PUT _cluster/settings { @@ -35,7 +35,7 @@ Below are the set of steps to run OpenSearch and OpenSearch dashboards with the } } ``` -6. Create a connector (reference doc). The below example is for connecting to the AWS Bedrock Claude model. Keep note of the connector id from the API response. (Ensure the credentials passed should have access to call the LLM model) +6. Create a connector ([reference doc](https://opensearch.org/docs/latest/ml-commons-plugin/remote-models/index/)). The below example is for connecting to the AWS Bedrock Claude model. Keep note of the connector id from the API response. (Ensure the credentials passed should have access to call the LLM model) ``` POST /_plugins/_ml/connectors/_create { @@ -72,7 +72,7 @@ Below are the set of steps to run OpenSearch and OpenSearch dashboards with the ] } ``` -7. Create a model group with an example below (reference doc) and note the model group id. +7. Create a model group with an example below ([reference doc](https://opensearch.org/docs/latest/ml-commons-plugin/remote-models/index/)) and note the model group id. ``` POST /_plugins/_ml/model_groups/_register { diff --git a/MAINTAINERS.md b/MAINTAINERS.md index c136e32c..b72ea173 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -4,9 +4,14 @@ This document contains a list of maintainers in this repo. See [opensearch-proje ## Current Maintainers -| Maintainer | GitHub ID | Affiliation | -|-----------------------|-----------------------------------------------| ----------- | -| Ashish Agrawal | [lezzago](https://github.com/lezzago) | Amazon | -| Joshua Li | [joshuali925](https://github.com/joshuali925) | Amazon | -| Anirudha Jadhav | [anirudha](https://github.com/anirudha) | Amazon | -| Sean Li | [sejli](https://github.com/sejli) | Amazon | +| Maintainer | GitHub ID | Affiliation | +|-----------------|-----------------------------------------------| ----------- | +| Ashish Agrawal | [lezzago](https://github.com/lezzago) | Amazon | +| Joshua Li | [joshuali925](https://github.com/joshuali925) | Amazon | +| Anirudha Jadhav | [anirudha](https://github.com/anirudha) | Amazon | +| Sean Li | [sejli](https://github.com/sejli) | Amazon | +| Yulong Ruan | [ruanyl](https://github.com/ruanyl) | Amazon | +| Su Zhou | [SuZhou-Joe](https://github.com/SuZhou-Joe) | Amazon | +| Tianyu Gao | [raintygao](https://github.com/raintygao) | Amazon | +| Hailong Cui | [Hailong-am](https://github.com/Hailong-am) | Amazon | +| HLin Wang | [wanglam](https://github.com/wanglam) | Amazon | \ No newline at end of file