Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tutorial for building your own chatbot #2144

Merged
merged 5 commits into from
Feb 21, 2024

Conversation

ylwu-amzn
Copy link
Collaborator

Description

Add tutorial for how to build your own chatbot in OpenSearch with Agent Framework.

Issues Resolved

[List any issues this PR will resolve]

Check List

  • New functionality includes testing.
    • All tests pass
  • New functionality has been documented.
    • New functionality has javadoc added
  • Commits are signed per the DCO using --signoff

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.

Copy link

codecov bot commented Feb 21, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (0903d5d) 81.85% compared to head (f991c6f) 81.85%.

❗ Current head f991c6f differs from pull request most recent head f5c96c6. Consider uploading reports for the commit f5c96c6 to get more accurate results

Additional details and impacted files
@@             Coverage Diff              @@
##               main    #2144      +/-   ##
============================================
- Coverage     81.85%   81.85%   -0.01%     
+ Complexity     5660     5659       -1     
============================================
  Files           543      543              
  Lines         22857    22857              
  Branches       2350     2350              
============================================
- Hits          18710    18709       -1     
- Misses         3207     3209       +2     
+ Partials        940      939       -1     
Flag Coverage Δ
ml-commons 81.85% <ø> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Signed-off-by: Yaliang Wu <[email protected]>
@ylwu-amzn ylwu-amzn force-pushed the maint_custom_chatbot branch from 1d58af0 to 8b76b1c Compare February 21, 2024 05:38
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 05:38 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 06:43 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 07:10 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 07:10 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 07:10 — with GitHub Actions Inactive
Copy link
Contributor

@kolchfa-aws kolchfa-aws left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some clarifying rewrites.


A root chatbot agent consists of
- `conversational` agent: You can use any `conversational` agent in `AgentTool` created in previous steps.
- `MLModelTool`: This is for suggesting new questions based on your current question and model response.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- `MLModelTool`: This is for suggesting new questions based on your current question and model response.
- `MLModelTool`: This tool is used for suggesting new questions based on your current question and the model response.

}
}
```
Note the root chatbot agent id, then login your OpenSearch server, go to OpenSearch config folder `$OS_HOME/config` and run this
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Note the root chatbot agent id, then login your OpenSearch server, go to OpenSearch config folder `$OS_HOME/config` and run this
Note the root chatbot agent ID, then log in to your OpenSearch server, go to OpenSearch config folder `$OS_HOME/config` and run the following command:

}'
```

Go to your OpenSearch Dashboard config folder, `$OSD_HOME/config`, edit `opensearch_dashboards.yml` by adding this line to the end `assistant.chat.enabled: true`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Go to your OpenSearch Dashboard config folder, `$OSD_HOME/config`, edit `opensearch_dashboards.yml` by adding this line to the end `assistant.chat.enabled: true`
Go to your OpenSearch Dashboards config folder, `$OSD_HOME/config`, edit `opensearch_dashboards.yml` by adding the following line to the end: `assistant.chat.enabled: true`.


Go to your OpenSearch Dashboard config folder, `$OSD_HOME/config`, edit `opensearch_dashboards.yml` by adding this line to the end `assistant.chat.enabled: true`

Restart OpenSearch Dashboard, click the chat icon
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Restart OpenSearch Dashboard, click the chat icon
Restart OpenSearch Dashboards, then select the chat icon, as shown in the following image.


![Alt text](images/chatbot/osd_chatbot_1.png)

Then chat on OpenSearch Dashboard
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Then chat on OpenSearch Dashboard
You can now chat in OpenSearch Dashboards, as shown in the following image.

Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Yaliang Wu <[email protected]>
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:19 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:19 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:19 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:20 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:20 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:20 — with GitHub Actions Inactive
Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Yaliang Wu <[email protected]>
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:21 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:21 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:21 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:21 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:21 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn merged commit bdf62cf into opensearch-project:main Feb 21, 2024
8 of 9 checks passed
opensearch-trigger-bot bot pushed a commit that referenced this pull request Feb 21, 2024
* add tutorial for building your own chatbot

Signed-off-by: Yaliang Wu <[email protected]>

* fix some example request

Signed-off-by: Yaliang Wu <[email protected]>

* fine tune

Signed-off-by: Yaliang Wu <[email protected]>

* Apply suggestions from code review

Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Yaliang Wu <[email protected]>

* Apply suggestions from code review

Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Yaliang Wu <[email protected]>

---------

Signed-off-by: Yaliang Wu <[email protected]>
Co-authored-by: kolchfa-aws <[email protected]>
(cherry picked from commit bdf62cf)
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:49 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:49 — with GitHub Actions Inactive
@ylwu-amzn ylwu-amzn temporarily deployed to ml-commons-cicd-env February 21, 2024 22:49 — with GitHub Actions Inactive
ylwu-amzn added a commit that referenced this pull request Feb 21, 2024
* add tutorial for building your own chatbot

Signed-off-by: Yaliang Wu <[email protected]>

* fix some example request

Signed-off-by: Yaliang Wu <[email protected]>

* fine tune

Signed-off-by: Yaliang Wu <[email protected]>

* Apply suggestions from code review

Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Yaliang Wu <[email protected]>

* Apply suggestions from code review

Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Yaliang Wu <[email protected]>

---------

Signed-off-by: Yaliang Wu <[email protected]>
Co-authored-by: kolchfa-aws <[email protected]>
(cherry picked from commit bdf62cf)

Co-authored-by: Yaliang Wu <[email protected]>
austintlee pushed a commit to austintlee/ml-commons that referenced this pull request Mar 19, 2024
* add tutorial for building your own chatbot

Signed-off-by: Yaliang Wu <[email protected]>

* fix some example request

Signed-off-by: Yaliang Wu <[email protected]>

* fine tune

Signed-off-by: Yaliang Wu <[email protected]>

* Apply suggestions from code review

Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Yaliang Wu <[email protected]>

* Apply suggestions from code review

Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Yaliang Wu <[email protected]>

---------

Signed-off-by: Yaliang Wu <[email protected]>
Co-authored-by: kolchfa-aws <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants