Check out our demo video:
Create a Conda environment named aquaagent with Python 3.12:
conda create --name aquaagent python=3.12 -yActivate the aquaagent environment:
conda activate aquaagentInstall all required dependencies for sys_operator.py:
conda install -n aquaagent pyyaml -y
pip install langchain-core langchain-openai langchain langchain-communityEdit the YAML file in the config folder according to your needs.
Run sys_operator.py in the activated environment:
python sys_operator.pyKey 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.yamlexists and the path is correct.
Successful execution will log system operation results.
