If you haven't already downloaded and installed RagBot.AI, read the installation guide.
After successfully installing the dependencies, RagBot.AI needs to be configured using an environment file (.env). This file contains important configuration settings, such as API keys and the paths to decorator files.
- Navigate to the rbot directory (if not already there):
cd rbot
- Make a copy of the
example.env
file and name it.env
:
cp example.env .env
-
Open the
.env
file in your preferred text editor. Replace<Your-OpenAI-API-Key>
and<Your-Anthropic-API-Key>
with your actual API keys. Also, replace the sample paths insideDECORATORS
with the paths to your decorator files or folders. -
Save the
.env
file and close it.
Remember, the .env
file contains sensitive information such as API keys, so it should never be shared or published. Make sure to add .env
to your .gitignore
file to prevent it from being tracked by git.
- View the RagBot.AI help file to see how to use its capabilities:
Command line version rbot.py
./rbot --help
- Run rbot to execute a prompt including knowledge from a file. (We'll personalize this later with your own data.)
./rbot -p "What is RagBot.AI?" -d ./README.md
./rbot -p "Why should I use RagBot.AI?" -d ./README.md
You can also specify the model which you wish to use:
./rbot -p "Why should I use RagBot.AI?" -d ./README.md -m gpt-4
You can also run RagBot.AI in a web browser locally on your computer:
./rbot-web
Read the main documentation for examples and more information about RagBot.AI.
To personalize RagBot.AI and make it reflect your own user preferences, you can follow the steps below:
Ragbot.AI uses a dedicated folder to store your custom instructions, curated datasets, and any saved prompts or conversations. This data may contain personal or sensitive information, so choosing a secure location is crucial.
Here's how to determine the default data storage location for your operating system:
- macOS/Linux:
~/ragbot-data
(This translates to a folder namedragbot-data
within your home directory.) - Windows:
%USERPROFILE%\ragbot-data
(This translates to a folder namedragbot-data
within your user profile directory.)
-
Version Control: If you intend to use version control systems like Git to manage your
ragbot-data
folder, it's highly recommended to avoid placing it within a directory that is synchronized with cloud storage services such as iCloud, Dropbox, OneDrive, or similar. Cloud syncing can lead to conflicts and unexpected behavior with version control. -
Cloud Backups (Optional): If you prefer having cloud-based backups of your Ragbot.AI data and are not using version control, you may choose to place the
ragbot-data
folder within a directory that is synchronized with your preferred cloud storage provider. This ensures your data is backed up and accessible from multiple devices.
Within the ragbot-data
folder, it's recommended to create subfolders to organize your custom instructions and curated datasets:
custom-instructions
: This subfolder will hold your custom instruction files in Markdown format (.md
). These files provide Ragbot.AI with guidelines and preferences for its responses.curated-datasets
: This subfolder will contain your curated dataset files, also in Markdown format. These files offer contextual information and knowledge to Ragbot.AI, allowing it to generate more relevant and informed responses.
Remember: Always prioritize the security and privacy of your Ragbot.AI data by choosing a storage location that aligns with your needs and security preferences.
- Set up your personalized custom instuctions for rbot.
Create a custom-instructions
folder containing files with your custom instructions that RagBot.AI should follow. The files int this folder contains the initial system instructions that set the context for the conversation. You can make a copy of the Rajiv's examples and modify those files to include any specific information or instructions you want to provide to RagBot.AI before starting the conversation.
To make a copy of Rajiv's own example custom instructions to modify for your own use, make a copy of the example folder for your own custom-instructions and then edit the files using a text or markdown editor.
cp -rp example-custom-instructions custom-instructions
- Set up your curated datasets for RagBot.AI.
Make a copy of Rajiv's sample files in the example-curated-datasets/
folder to your own curated-datasets/
folder. This folder contains files that provide additional context and information to RagBot.AI. You can replace these sample files with your own information that reflect your personal preferences, such as your job details, family information, travel and food preferences, or any other information you want RagBot.AI to be aware of.
You can create new informational files or modify the existing ones to match your own needs. Each file should contain relevant information related to a specific topic or aspect of your life. For example, you can create a job-at-company-name.md
file to provide details about your work or a hobbies.md
file to share information about your hobbies and interests.
Make sure to follow the Markdown format when creating or modifying these files, as RagBot.AI relies on Markdown syntax to parse and process the information.
cp -rp example-curated-datasets curated-datasets
By personalizing the files in the custom-instructions/
and the curated-datasets/
folders with your own information, you can customize RagBot.AI to better understand your preferences and provide more accurate and relevant responses.
Remember to update the paths to your custom-insturctions
and curated-datasets
folders and files in the .env
configuration file to ensure that RagBot.AI uses the correct files during conversations.
Feel free to experiment and iterate on your personalized files to refine the context and information provided to RagBot.AI, making it an even more personalized AI assistant.
Now, RagBot.AI is configured, personalized, and ready to be run!