├── Graph-Counselor ├── code │ ├── GraphAgent.py │ ├── GraphAgent_Plan_Reflect_vllm.py │ ├── GraphAgent_vllm.py │ ├── GraphReflectAgent.py │ ├── GraphReflectAgent_vllm.py │ ├── graph_fewshots.py │ ├── graph_prompts.py │ ├── run.py │ └── tools │ │ ├── graph_funcs.py │ │ └── retriever.py └── scripts │ └── run_Graph-Counselor.sh ├── README.md ├── assets └── main.PNG ├── data ├── .DS_Store └── processed_data │ ├── .DS_Store │ ├── amazon │ ├── data.json │ └── design_questions.ipynb │ ├── biomedical │ ├── data.json │ └── design_questions.ipynb │ ├── dblp │ ├── data.json │ └── design_questions.ipynb │ ├── goodreads │ ├── data.json │ └── design_questions.ipynb │ ├── legal │ ├── data.json │ └── design_questions.ipynb │ └── maple │ ├── Biology │ └── data.json │ ├── Chemistry │ └── data.json │ ├── Materials_Science │ └── data.json │ ├── Medicine │ └── data.json │ └── Physics │ └── data.json ├── environment.yaml ├── eval.sh ├── eval_Llama.py └── eval_Qwen.py /Graph-Counselor/code/GraphAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/GraphAgent.py -------------------------------------------------------------------------------- /Graph-Counselor/code/GraphAgent_Plan_Reflect_vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/GraphAgent_Plan_Reflect_vllm.py -------------------------------------------------------------------------------- /Graph-Counselor/code/GraphAgent_vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/GraphAgent_vllm.py -------------------------------------------------------------------------------- /Graph-Counselor/code/GraphReflectAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/GraphReflectAgent.py -------------------------------------------------------------------------------- /Graph-Counselor/code/GraphReflectAgent_vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/GraphReflectAgent_vllm.py -------------------------------------------------------------------------------- /Graph-Counselor/code/graph_fewshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/graph_fewshots.py -------------------------------------------------------------------------------- /Graph-Counselor/code/graph_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/graph_prompts.py -------------------------------------------------------------------------------- /Graph-Counselor/code/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/run.py -------------------------------------------------------------------------------- /Graph-Counselor/code/tools/graph_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/tools/graph_funcs.py -------------------------------------------------------------------------------- /Graph-Counselor/code/tools/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/code/tools/retriever.py -------------------------------------------------------------------------------- /Graph-Counselor/scripts/run_Graph-Counselor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/Graph-Counselor/scripts/run_Graph-Counselor.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/README.md -------------------------------------------------------------------------------- /assets/main.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/assets/main.PNG -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/processed_data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/.DS_Store -------------------------------------------------------------------------------- /data/processed_data/amazon/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/amazon/data.json -------------------------------------------------------------------------------- /data/processed_data/amazon/design_questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/amazon/design_questions.ipynb -------------------------------------------------------------------------------- /data/processed_data/biomedical/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/biomedical/data.json -------------------------------------------------------------------------------- /data/processed_data/biomedical/design_questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/biomedical/design_questions.ipynb -------------------------------------------------------------------------------- /data/processed_data/dblp/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/dblp/data.json -------------------------------------------------------------------------------- /data/processed_data/dblp/design_questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/dblp/design_questions.ipynb -------------------------------------------------------------------------------- /data/processed_data/goodreads/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/goodreads/data.json -------------------------------------------------------------------------------- /data/processed_data/goodreads/design_questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/goodreads/design_questions.ipynb -------------------------------------------------------------------------------- /data/processed_data/legal/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/legal/data.json -------------------------------------------------------------------------------- /data/processed_data/legal/design_questions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/legal/design_questions.ipynb -------------------------------------------------------------------------------- /data/processed_data/maple/Biology/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/maple/Biology/data.json -------------------------------------------------------------------------------- /data/processed_data/maple/Chemistry/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/maple/Chemistry/data.json -------------------------------------------------------------------------------- /data/processed_data/maple/Materials_Science/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/maple/Materials_Science/data.json -------------------------------------------------------------------------------- /data/processed_data/maple/Medicine/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/maple/Medicine/data.json -------------------------------------------------------------------------------- /data/processed_data/maple/Physics/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/data/processed_data/maple/Physics/data.json -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/environment.yaml -------------------------------------------------------------------------------- /eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/eval.sh -------------------------------------------------------------------------------- /eval_Llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/eval_Llama.py -------------------------------------------------------------------------------- /eval_Qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjq100/Graph-Counselor/HEAD/eval_Qwen.py --------------------------------------------------------------------------------