To run web interface for FEDOT.LLM follow these steps:
Run the following command in your terminal to clone the repository:
git clone https://github.com/aimclub/FEDOT.LLM.git
Navigate to the project directory and create a virtual environment:
cd FEDOT.LLM
python3.10 -m venv .venv
Activate the virtual environment:
- On Windows
.venv\Scripts\activate
- On macOS / Linux
source .venv/bin/activate
pip install -e .
This will install all the necessary libraries, including Streamlit, Fedot-LLM, and others.
Note: Before running the application make sure to set the OPENAI_TOKEN environment variable
Run the following command to start the Streamlit application:
streamlit run libs/fedotllm/streamlit-app.py
This will launch the Streamlit app in your default web browser.