├── .gitignore ├── .idea ├── .gitignore ├── ReAct_AI_Agent.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── SportsEquipment.db ├── agent.py ├── architecture └── architecture.png ├── config.json ├── main.py ├── op_llm_client.py ├── requirements.txt ├── store_promotions.txt ├── test.py └── tools ├── SportsEquipment.db ├── __init__.py ├── __pycache__ ├── __init__.cpython-311.pyc ├── calc.cpython-311.pyc ├── query_product_data.cpython-311.pyc └── read_promotions.cpython-311.pyc ├── calc.py ├── query_product_data.py ├── read_promotions.py ├── store_promotions.txt └── tool_desc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/ReAct_AI_Agent.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/.idea/ReAct_AI_Agent.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/README.md -------------------------------------------------------------------------------- /SportsEquipment.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/SportsEquipment.db -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/agent.py -------------------------------------------------------------------------------- /architecture/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/architecture/architecture.png -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/config.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/main.py -------------------------------------------------------------------------------- /op_llm_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/op_llm_client.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /store_promotions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/store_promotions.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/test.py -------------------------------------------------------------------------------- /tools/SportsEquipment.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/SportsEquipment.db -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /tools/__pycache__/calc.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/__pycache__/calc.cpython-311.pyc -------------------------------------------------------------------------------- /tools/__pycache__/query_product_data.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/__pycache__/query_product_data.cpython-311.pyc -------------------------------------------------------------------------------- /tools/__pycache__/read_promotions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/__pycache__/read_promotions.cpython-311.pyc -------------------------------------------------------------------------------- /tools/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/calc.py -------------------------------------------------------------------------------- /tools/query_product_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/query_product_data.py -------------------------------------------------------------------------------- /tools/read_promotions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/read_promotions.py -------------------------------------------------------------------------------- /tools/store_promotions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/store_promotions.txt -------------------------------------------------------------------------------- /tools/tool_desc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fufankeji/ReAct_AI_Agent/HEAD/tools/tool_desc.py --------------------------------------------------------------------------------