Two environments are needed to be installed for idea generation, idea coding, and prognostic evaluations:
- The major working environment for agentic workflow
Note Vllm is by default installed in the environment for public LLM inference and serving. Please consider using [environment_no_vllm.yaml] for installation if you only use API for the idea generation without implementation of the public LLM models.
- Code evaluation environment (needed for evaluate whether the generated code snippet works)
Create a conda environment using the environment.yaml file.
conda env create -f environment.yamlDuring the code-snippet-generation flow, it is required to install another environment, so the code snippets could be reviewed after generation.
conda env create -f CONDA_ENV_AI_features.yamlThen activate the agentic-AI environment
conda activate spark