-
Notifications
You must be signed in to change notification settings - Fork 152
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
add tutorial for building your own chatbot #2144
Conversation
Signed-off-by: Yaliang Wu <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
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
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Yaliang Wu <[email protected]>
1d58af0
to
8b76b1c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some clarifying rewrites.
docs/tutorials/agent_framework/RAG_with_conversational_flow_agent.md
Outdated
Show resolved
Hide resolved
docs/tutorials/agent_framework/RAG_with_conversational_flow_agent.md
Outdated
Show resolved
Hide resolved
docs/tutorials/agent_framework/RAG_with_conversational_flow_agent.md
Outdated
Show resolved
Hide resolved
docs/tutorials/agent_framework/RAG_with_conversational_flow_agent.md
Outdated
Show resolved
Hide resolved
docs/tutorials/agent_framework/RAG_with_conversational_flow_agent.md
Outdated
Show resolved
Hide resolved
|
||
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Restart OpenSearch Dashboard, click the chat icon | |
Restart OpenSearch Dashboards, then select the chat icon, as shown in the following image. |
|
||
 | ||
|
||
Then chat on OpenSearch Dashboard |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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]>
Co-authored-by: kolchfa-aws <[email protected]> Signed-off-by: Yaliang Wu <[email protected]>
* 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)
* 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]>
* 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]>
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
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.