Skip to content

This repository contains code to install the AI bot related services of Sunbird AI Assistant easily

Notifications You must be signed in to change notification settings

Sunbird-AIAssistant/ai-bot-installer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

installer

This repository contains code to install the AI bot related services of Sunbird AI Assistant easily. Currently it has support for installation on AWS environment.

There are the following pre-requisite to be completed before running install.sh from your terminal.

  1. Have cloud account ready with administrative access and have the secret access key and access key id handy.
  2. Administrative credentials details will be required and to be provided while running install.sh script.
  3. In case the bot service needs to be enabled through Telegram, you will need to create a telegram bot and secure public domain to configure webhook URL and add the details for the bot in the global-values.yaml file.
  4. Refer to global-values.yaml file and update each environment variable with the required values.
  5. Register the domain, add the TXT records in DNS mappings and generate the certificates, private key, domain and add that in the global-values.yaml file.
  6. Please note, global-cloud-values.yaml will be auto-generated during installation with terraform in the path ./helmcharts. if you have any file name as global-cloud-values.yml file in the same path please remove it.

Once ready with above details, run the installation script (install_on_aws.sh) it will run the below pods :

  1. activitysakhi
  2. applications-unifiedtelegram
  3. kong
  4. marqo
  5. postgres
  6. redis
  7. nginx-public-ingress

and the following pods will be in completed state:

  1. kong-api
  2. kong-consumer
  3. kong-migrations
  4. postgres-provision-postgres-migration

Once all the provisioning completed, login to cloud account and map the loadbalancer DNS with the domain name in the DNS mappings in CNAME records.

To set the BOT webhook use the below curl : curl --location 'https://api.telegram.org/bot{BOT_TOKEN_HERE}/setWebhook'
--header 'Content-Type: application/json'
--data '{"url": "{DOMAIN_URL_HERE}/api/webhook/telegram"}'

Note : Replace the {BOT_TOKEN_HERE} and {DOMAIN_URL_HERE}/api/webhook/telegram with the actual values.

For accessing the telegram-unified service externally hit the URL : https://<domain_name>/api/webhook/telegram

After completing the installation, follow these steps to index all contents related to a specific use case:

Release 3.0.0 Install Python on the machine where the files need to be ingested.

Clone Git Repo from https://github.com/Sunbird-AIAssistant/sakhi-api-service.

Go to the root directory and update the .env file with the necessary vector store configuration values.

Run the following:

Copy Step 1: pip install -r requirements-dev.txt Step 2: python3 index_documents.py --folder_path=<PATH_TO_INPUT_FILE_DIRECTORY> --fresh_index --chunk_size=1024 --chunk_overlap=100

# --fresh_index: Create a new index from scratch.
# --chunk_size: Divide the documents into chunks of 1024 characters. Default: 1024
# --chunk_overlap: Overlap each chunk by 100 characters for context. Default: 100

Before Release 3.0.0 Install Python on the machine where the files need to be ingested.

Place the files to be indexed in a folder on the machine.

Download index_documents.py and requirements-dev.txt file from https://github.com/Sunbird-AIAssistant/sakhi-api-service

Run the following:

Copy Step 1: pip install -r requirements-dev.txt Step 2: python3 index_documents.py --marqo_url=<MARQO_URL> --index_name=<MARQO_INDEX_NAME> --folder_path=<PATH_TO_INPUT_FILE_DIRECTORY> --fresh_index Notes:

Please run the commands via screen background, as it will take a couple of hours to run

“--fresh_index” is to be used when you run the indexing for the first time or delete the existing index and freshly index it. If you want to append new files to the existing index, run it without --fresh_index

For running without --fresh_index, ensure your new files are kept in a new folder and the --folder_path is pointed to only the new files.

About

This repository contains code to install the AI bot related services of Sunbird AI Assistant easily

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published