Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mongodb-developer/google-cloud-generative-ai-chatbot
Generative AI Customer Service Chatbot with MongoDB Atlas and Google Cloud Vertex AI PaLM API
https://github.com/mongodb-developer/google-cloud-generative-ai-chatbot
ai gcp generative-ai google-cloud mongodb mongodb-atlas palm vertex-ai
Last synced: 3 months ago
JSON representation
Generative AI Customer Service Chatbot with MongoDB Atlas and Google Cloud Vertex AI PaLM API
- Host: GitHub
- URL: https://github.com/mongodb-developer/google-cloud-generative-ai-chatbot
- Owner: mongodb-developer
- License: apache-2.0
- Created: 2023-06-15T11:07:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-11T11:29:25.000Z (about 1 year ago)
- Last Synced: 2024-05-27T22:03:22.121Z (8 months ago)
- Topics: ai, gcp, generative-ai, google-cloud, mongodb, mongodb-atlas, palm, vertex-ai
- Language: HTML
- Homepage:
- Size: 605 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Generative AI Customer Service Chatbot
This is a demo of a customer service chatbot using Generative AI through Google Cloud's Vertex AI PaLM APIs. The app also leverages MongoDB Atlas Search to look for relevant answers in a MongoDB Atlas database. Finally, the app can detect dissatisfied customers with sentiment analysis.
## Quickstart
1. MongoDB Atlas setup
* Deploy a new MongoDB database cluster in your Atlas account. You can use the free M0 tier for this demo.
* Create a `XYZ-Corp` database.
* Create a `Customer` collection in the `XYZ-Corp` database and insert the following document.
```json
{
"customer_id":"111",
"conversation":[],
"Name":"Venkatesh Shanbhag"
}
```
* Create an `Insurance` collection in the `XYZ-Corp` database and insert the following document.
```json
{
"context":"You are a Customer support agent with name Sara working for XYZ-corp.\nIt does provides property Insurance. Sara will not reply for any queries regarding other types of insurance.\nThe company covers insurance of properties like - Hospitals, offices, shops, apartments.\nMax insurance covered will decline over period of time.\nXYZ-Corp only covers Fire and Earthquake hazard insurance. \nYou are allowed to provide only the details regarding the company itself.\nDo not repond with sentiment in any of the responses.",
"type":"Intro"
}
```
* Create a `Claims` collection in the `XYZ-Corp` database and insert the following document.
```json
{
"claim_number":"12345",
"Name":"Venkatesh Shanbhag",
"Claim_amount":{"$numberLong":"10000"},
"Currency":"USD",
"Claim_status":"In progress","customer_id":"111"
}
```
* Create an Atlas Search index with the name `default` on the `Claims` collection using the default settings. Follow the Atlas Search documentation: https://www.mongodb.com/docs/atlas/atlas-search/create-index/.
* A small knowledge base is available on chat-search collection. Insert below documents to MongoDB. In real life scenerio instead of text vectors are stored of the text embeddings and search is performed based in vector.
```json lines
{"question":"claim","Answer":"Please provide 5 digit claim number"}
{"question":"Not resolved","Answer":"Do you want to connect to an Agent for further assistence"}
{"question":"status of a claim","Answer":"Please provide 5 digit claim number"}
{"question":"Company Policy","Answer":"1. Architects fees / Debris clearance\nFollowing a valid claim for damage under\nbuildings Causes below, we will also pay:\n• Architects, surveyors, consulting engineers\nand legal fees, but not fees for preparing a\nclaim;\n• the cost of clearing debris from the site or\ndemolishing or shoring up the buildings;\n• the cost to comply with government or local\nauthority requirements but not if the order\npredates the loss or damage.\n2. Emergency services forced entry\nLoss or damage to the buildings caused when\nthe fire, police or ambulance service has to force\nan entry to the buildings because of an\nemergency or perceived emergency involving\nyou or your family.\n3. Moving Home\nIf you have entered into a contract to sell the\nhome, the person buying it will have the full\nprotection of your policy for the buildings up to\nthe date of completion of the purchase, as long\nas the home is not covered by any other\ninsurance.\n4. Keys & locks\nIf your keys are lost or stolen we will pay up to\nthe limit for any one claim for the cost of\nreplacing keys and locks or lock mechanisms to:\n• external doors and windows of the home\n(but not to a garage or outbuildings);\n• a safe within the home;\n• an alarm protecting the home.\nLimit – please refer to your schedule\n5. Alternative Accommodation\nWe will pay you up to the limit for any one claim\nfor the reasonable cost of alternative\naccommodation for you, your family and your\ndomestic pets when your home cannot be lived\nin due to loss or damage covered by this policy..\nLimit – please refer to your schedule"}
{"question":"Proof of income","Answer":"This document may become necessary whenever the sum\nproposed is very high. Normally a sum proposed which is seven\nto eight times of the declared income is acceptable for\ninsurance. But proposals do come to the insurer when the\nknown source of income of the proposer is much less compared\nto the amount of insurance desired. A service holder normally\ndoes not face this problem as his sources of income are\nverifiable.\nIn case of business people, the assessed income is at times\nmuch less compared to what is a desirable income for the\namount of insurance desired. In such cases the insurer at\ntimes calls for assessed income tax returns, or Chartered\nAccountant’s certificate etc. Such precautions are necessary\nto eliminate the possibility of moral hazard."}
{"question":"Not good","Answer":"Do you want to connect via call to a Customer care representative?"}
{"question":"bad experience","Answer":"Do you want to connect via call to a Customer care representative?"}
```
3. Google Cloud setup* Set the Google Cloud project name.
```commandline
gcloud config set project
```* Clone the repository.
```commandline
git clone https://github.com/mongodb-developer/Google-Cloud-Generative-AI-Chatbot.git
```* Update the MongoDB Atlas database connection string and the Google Cloud project name in `main.py`.
* Run the application.
```commandline
python3 main.py
```## Contributors ✨
## Disclaimer
Use at your own risk; not a supported MongoDB product