Check out our demo video:
Create a Conda environment named aquaagent
with Python 3.12:
conda create --name aquaagent python=3.12 -y
Activate the aquaagent
environment:
conda activate aquaagent
Install all required dependencies for sys_operator.py
:
conda install -n aquaagent pyyaml -y
pip install langchain-core langchain-openai langchain langchain-community
Edit the YAML file in the config
folder according to your needs.
Run sys_operator.py
in the activated environment:
python sys_operator.py
Key dependencies and their purposes:
pyyaml
: Parses YAML configuration files.langchain-core
: Core functionality for LangChain.langchain-openai
: Integration with OpenAI.langchain
: Language model chaining operations.langchain-community
: Community-contributed tools and modules.
-
Missing Dependencies:
If a module is missing, install it withpip install <module_name>
. -
Environment Conflicts:
Recreate the Conda environment if dependency versions conflict. -
Configuration File:
Ensureconfig/cloud.yaml
exists and the path is correct.
Successful execution will log system operation results.