Chain of thought
Demonstration on how to interactive chat with your dagent.
1. Install Miniconda:
- Download and install Miniconda by following the instructions here: Miniconda Installation.
2. Clone the repository:
git clone https://github.com/eternalai-org/Eternals
cd Eternals
git checkout add/react-qa
3. Activate Conda Environment:
- Create and activate a Conda environment for Python 3.10.0:
conda create -n eternalai_dagents_chat python=3.10.0
conda activate eternalai_dagents_chat
4. Install Dependencies:
- Install the required Python packages using pip
.
pip install -r requirements.txt
- Compile and build eternal_dagents
package
pip install --force-reinstall .
5. Create a .env
File:
.env
File:- In the root of your repository, create a .env
file to store your environment variables.
cp .env.example .env
6. Obtain Inference API Key:
- Go to EternalAI and connect your account to retrieve your inference API key.
7. Configure the .env
File:
.env
File:- Open your .env
file and insert your Twitter API key and inference API key in the following format:
# Environment
IS_SANDBOX=0
# for contract based llm
ETERNAL_BACKEND_API=https://api.eternalai.org
ETERNAL_BACKEND_API_APIKEY=your_inference_api_key
8. Run the Application:
- Execute the script to start the application:
python3 toolkit/chat-lite.py
- Sample output:

Last updated