├── .gitignore ├── GenerativeAgentForApplaud.ipynb ├── GenerativeAgentForDoq.ipynb ├── LICENSE ├── README.md ├── applaud_data ├── documents │ ├── dbs │ │ ├── chap01 │ │ └── chap02 │ └── document.list ├── documents_data │ └── data_model │ │ ├── chap01.json │ │ └── chap02.json ├── query_dir │ ├── q_1 │ │ ├── result │ │ │ ├── critical_thinking.json │ │ │ ├── memory.json │ │ │ ├── plan.json │ │ │ ├── plan_result.json │ │ │ ├── plan_result_org.json │ │ │ ├── reflection.json │ │ │ ├── reflection_org.json │ │ │ ├── reply.json │ │ │ ├── result.txt │ │ │ └── updated_plan.json │ │ └── strategy_history.json │ ├── q_2 │ │ ├── result │ │ │ ├── critical_thinking.json │ │ │ ├── memory.json │ │ │ ├── plan.json │ │ │ ├── plan_result.json │ │ │ ├── plan_result_org.json │ │ │ ├── reflection.json │ │ │ ├── reflection_org.json │ │ │ ├── reply.json │ │ │ ├── result.txt │ │ │ └── updated_plan.json │ │ └── strategy_history.json │ └── query.txt └── reflections_data │ └── data_model │ ├── Analysis_Skills.json │ ├── Members.json │ ├── appreciating_words.json │ ├── commont_knowledge.json │ ├── conversation_log_analysis.json │ ├── kanetugu2018_personality.json │ ├── kanetugu2018_unnoticed_characteristics.json │ └── unnoticed_traits.json ├── applaud_prompt ├── ptemplate_critical_thinking.txt ├── ptemplate_evaluate.txt ├── ptemplate_mission.txt ├── ptemplate_query.txt ├── ptemplate_query_plan.txt ├── ptemplate_reflection.txt ├── ptemplate_reflection_addterms.txt ├── ptemplate_strategy.txt └── ptemplate_subq_detail.txt ├── check_recover_json.py ├── critical_thinking.py ├── data_model ├── data_model.py ├── data_model_accessor.py ├── data_model_storage.py ├── document_contents_similarity_merge.py ├── document_data_cleaner.py ├── document_data_model.py ├── document_data_persistentor.py ├── document_similarity_extractor.py ├── openai_libs.py ├── reflection_contents_similarity_merge.py ├── reflection_data_cleaner.py ├── reflection_data_model.py ├── reflection_data_persistentor.py ├── reflection_similarity_extractor.py └── similarity_extractor.py ├── db_manager.py ├── document_db.py ├── evaluate_applaud.py ├── evaluate_results.py ├── evaluator.py ├── history_selector.py ├── json_utils.py ├── memory_stream.py ├── noidea.txt ├── param_templates ├── applaud_params.json └── document_params.json ├── params.py ├── plan.py ├── planner.py ├── prompt_template.py ├── prompt_templates ├── ptemplate_critical_thinking.txt ├── ptemplate_evaluate.txt ├── ptemplate_mission.txt ├── ptemplate_query.txt ├── ptemplate_query_plan.txt ├── ptemplate_reflection.txt ├── ptemplate_reflection_addterms.txt ├── ptemplate_strategy.txt └── ptemplate_subq_detail.txt ├── query.py ├── query_dir ├── q_1 │ ├── result │ │ ├── critical_thinking.json │ │ ├── memory.json │ │ ├── plan.json │ │ ├── plan_result.json │ │ ├── reflection.json │ │ ├── reply.json │ │ ├── result.txt │ │ └── updated_plan.json │ └── strategy_history.json ├── q_2 │ ├── result │ │ ├── critical_thinking.json │ │ ├── memory.json │ │ ├── next_plan_result.json │ │ ├── plan.json │ │ ├── plan_result.json │ │ ├── prev_plan_result.json │ │ ├── reflection.json │ │ ├── reply.json │ │ ├── result.txt │ │ └── updated_plan.json │ └── strategy_history.json └── query.txt ├── question.py ├── reflection.py ├── tactical_plannig.py ├── test └── .gitkeep └── tools ├── cleanup_applaud_data.bash ├── create_doclist.bash ├── do_applaud.bash ├── do_query.bash ├── evaluate_answers.bash ├── evaluate_plans.bash ├── evaluate_reflection.bash ├── evaluate_reflection.py ├── evaluate_reflections.bash ├── get_terms.bash ├── prompt_templates ├── ptemplate_applaud.txt ├── ptemplate_evaluate_answers.txt ├── ptemplate_evaluate_plans.txt └── ptemplate_evaluate_reflections.txt └── query.bash /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /GenerativeAgentForApplaud.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/GenerativeAgentForApplaud.ipynb -------------------------------------------------------------------------------- /GenerativeAgentForDoq.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/GenerativeAgentForDoq.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/README.md -------------------------------------------------------------------------------- /applaud_data/documents/dbs/chap01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/documents/dbs/chap01 -------------------------------------------------------------------------------- /applaud_data/documents/dbs/chap02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/documents/dbs/chap02 -------------------------------------------------------------------------------- /applaud_data/documents/document.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/documents/document.list -------------------------------------------------------------------------------- /applaud_data/documents_data/data_model/chap01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/documents_data/data_model/chap01.json -------------------------------------------------------------------------------- /applaud_data/documents_data/data_model/chap02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/documents_data/data_model/chap02.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/critical_thinking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/critical_thinking.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/memory.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/plan.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/plan_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/plan_result.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/plan_result_org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/plan_result_org.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/reflection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/reflection.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/reflection_org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/reflection_org.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/reply.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/result.txt -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/result/updated_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/result/updated_plan.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_1/strategy_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_1/strategy_history.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/critical_thinking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/critical_thinking.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/memory.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/plan.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/plan_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/plan_result.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/plan_result_org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/plan_result_org.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/reflection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/reflection.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/reflection_org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/reflection_org.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/reply.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/result.txt -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/result/updated_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/result/updated_plan.json -------------------------------------------------------------------------------- /applaud_data/query_dir/q_2/strategy_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/q_2/strategy_history.json -------------------------------------------------------------------------------- /applaud_data/query_dir/query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/query_dir/query.txt -------------------------------------------------------------------------------- /applaud_data/reflections_data/data_model/Analysis_Skills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/reflections_data/data_model/Analysis_Skills.json -------------------------------------------------------------------------------- /applaud_data/reflections_data/data_model/Members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/reflections_data/data_model/Members.json -------------------------------------------------------------------------------- /applaud_data/reflections_data/data_model/appreciating_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/reflections_data/data_model/appreciating_words.json -------------------------------------------------------------------------------- /applaud_data/reflections_data/data_model/commont_knowledge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/reflections_data/data_model/commont_knowledge.json -------------------------------------------------------------------------------- /applaud_data/reflections_data/data_model/conversation_log_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/reflections_data/data_model/conversation_log_analysis.json -------------------------------------------------------------------------------- /applaud_data/reflections_data/data_model/kanetugu2018_personality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/reflections_data/data_model/kanetugu2018_personality.json -------------------------------------------------------------------------------- /applaud_data/reflections_data/data_model/kanetugu2018_unnoticed_characteristics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/reflections_data/data_model/kanetugu2018_unnoticed_characteristics.json -------------------------------------------------------------------------------- /applaud_data/reflections_data/data_model/unnoticed_traits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_data/reflections_data/data_model/unnoticed_traits.json -------------------------------------------------------------------------------- /applaud_prompt/ptemplate_critical_thinking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_prompt/ptemplate_critical_thinking.txt -------------------------------------------------------------------------------- /applaud_prompt/ptemplate_evaluate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_prompt/ptemplate_evaluate.txt -------------------------------------------------------------------------------- /applaud_prompt/ptemplate_mission.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_prompt/ptemplate_mission.txt -------------------------------------------------------------------------------- /applaud_prompt/ptemplate_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_prompt/ptemplate_query.txt -------------------------------------------------------------------------------- /applaud_prompt/ptemplate_query_plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_prompt/ptemplate_query_plan.txt -------------------------------------------------------------------------------- /applaud_prompt/ptemplate_reflection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_prompt/ptemplate_reflection.txt -------------------------------------------------------------------------------- /applaud_prompt/ptemplate_reflection_addterms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_prompt/ptemplate_reflection_addterms.txt -------------------------------------------------------------------------------- /applaud_prompt/ptemplate_strategy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_prompt/ptemplate_strategy.txt -------------------------------------------------------------------------------- /applaud_prompt/ptemplate_subq_detail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/applaud_prompt/ptemplate_subq_detail.txt -------------------------------------------------------------------------------- /check_recover_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/check_recover_json.py -------------------------------------------------------------------------------- /critical_thinking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/critical_thinking.py -------------------------------------------------------------------------------- /data_model/data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/data_model.py -------------------------------------------------------------------------------- /data_model/data_model_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/data_model_accessor.py -------------------------------------------------------------------------------- /data_model/data_model_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/data_model_storage.py -------------------------------------------------------------------------------- /data_model/document_contents_similarity_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/document_contents_similarity_merge.py -------------------------------------------------------------------------------- /data_model/document_data_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/document_data_cleaner.py -------------------------------------------------------------------------------- /data_model/document_data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/document_data_model.py -------------------------------------------------------------------------------- /data_model/document_data_persistentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/document_data_persistentor.py -------------------------------------------------------------------------------- /data_model/document_similarity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/document_similarity_extractor.py -------------------------------------------------------------------------------- /data_model/openai_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/openai_libs.py -------------------------------------------------------------------------------- /data_model/reflection_contents_similarity_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/reflection_contents_similarity_merge.py -------------------------------------------------------------------------------- /data_model/reflection_data_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/reflection_data_cleaner.py -------------------------------------------------------------------------------- /data_model/reflection_data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/reflection_data_model.py -------------------------------------------------------------------------------- /data_model/reflection_data_persistentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/reflection_data_persistentor.py -------------------------------------------------------------------------------- /data_model/reflection_similarity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/reflection_similarity_extractor.py -------------------------------------------------------------------------------- /data_model/similarity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/data_model/similarity_extractor.py -------------------------------------------------------------------------------- /db_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/db_manager.py -------------------------------------------------------------------------------- /document_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/document_db.py -------------------------------------------------------------------------------- /evaluate_applaud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/evaluate_applaud.py -------------------------------------------------------------------------------- /evaluate_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/evaluate_results.py -------------------------------------------------------------------------------- /evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/evaluator.py -------------------------------------------------------------------------------- /history_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/history_selector.py -------------------------------------------------------------------------------- /json_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/json_utils.py -------------------------------------------------------------------------------- /memory_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/memory_stream.py -------------------------------------------------------------------------------- /noidea.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /param_templates/applaud_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/param_templates/applaud_params.json -------------------------------------------------------------------------------- /param_templates/document_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/param_templates/document_params.json -------------------------------------------------------------------------------- /params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/params.py -------------------------------------------------------------------------------- /plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/plan.py -------------------------------------------------------------------------------- /planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/planner.py -------------------------------------------------------------------------------- /prompt_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_template.py -------------------------------------------------------------------------------- /prompt_templates/ptemplate_critical_thinking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_templates/ptemplate_critical_thinking.txt -------------------------------------------------------------------------------- /prompt_templates/ptemplate_evaluate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_templates/ptemplate_evaluate.txt -------------------------------------------------------------------------------- /prompt_templates/ptemplate_mission.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_templates/ptemplate_mission.txt -------------------------------------------------------------------------------- /prompt_templates/ptemplate_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_templates/ptemplate_query.txt -------------------------------------------------------------------------------- /prompt_templates/ptemplate_query_plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_templates/ptemplate_query_plan.txt -------------------------------------------------------------------------------- /prompt_templates/ptemplate_reflection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_templates/ptemplate_reflection.txt -------------------------------------------------------------------------------- /prompt_templates/ptemplate_reflection_addterms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_templates/ptemplate_reflection_addterms.txt -------------------------------------------------------------------------------- /prompt_templates/ptemplate_strategy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_templates/ptemplate_strategy.txt -------------------------------------------------------------------------------- /prompt_templates/ptemplate_subq_detail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/prompt_templates/ptemplate_subq_detail.txt -------------------------------------------------------------------------------- /query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query.py -------------------------------------------------------------------------------- /query_dir/q_1/result/critical_thinking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_1/result/critical_thinking.json -------------------------------------------------------------------------------- /query_dir/q_1/result/memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_1/result/memory.json -------------------------------------------------------------------------------- /query_dir/q_1/result/plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_1/result/plan.json -------------------------------------------------------------------------------- /query_dir/q_1/result/plan_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_1/result/plan_result.json -------------------------------------------------------------------------------- /query_dir/q_1/result/reflection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_1/result/reflection.json -------------------------------------------------------------------------------- /query_dir/q_1/result/reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_1/result/reply.json -------------------------------------------------------------------------------- /query_dir/q_1/result/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_1/result/result.txt -------------------------------------------------------------------------------- /query_dir/q_1/result/updated_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_1/result/updated_plan.json -------------------------------------------------------------------------------- /query_dir/q_1/strategy_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_1/strategy_history.json -------------------------------------------------------------------------------- /query_dir/q_2/result/critical_thinking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/critical_thinking.json -------------------------------------------------------------------------------- /query_dir/q_2/result/memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/memory.json -------------------------------------------------------------------------------- /query_dir/q_2/result/next_plan_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/next_plan_result.json -------------------------------------------------------------------------------- /query_dir/q_2/result/plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/plan.json -------------------------------------------------------------------------------- /query_dir/q_2/result/plan_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/plan_result.json -------------------------------------------------------------------------------- /query_dir/q_2/result/prev_plan_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/prev_plan_result.json -------------------------------------------------------------------------------- /query_dir/q_2/result/reflection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/reflection.json -------------------------------------------------------------------------------- /query_dir/q_2/result/reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/reply.json -------------------------------------------------------------------------------- /query_dir/q_2/result/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/result.txt -------------------------------------------------------------------------------- /query_dir/q_2/result/updated_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/result/updated_plan.json -------------------------------------------------------------------------------- /query_dir/q_2/strategy_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/q_2/strategy_history.json -------------------------------------------------------------------------------- /query_dir/query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/query_dir/query.txt -------------------------------------------------------------------------------- /question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/question.py -------------------------------------------------------------------------------- /reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/reflection.py -------------------------------------------------------------------------------- /tactical_plannig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tactical_plannig.py -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/cleanup_applaud_data.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/cleanup_applaud_data.bash -------------------------------------------------------------------------------- /tools/create_doclist.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/create_doclist.bash -------------------------------------------------------------------------------- /tools/do_applaud.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/do_applaud.bash -------------------------------------------------------------------------------- /tools/do_query.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/do_query.bash -------------------------------------------------------------------------------- /tools/evaluate_answers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/evaluate_answers.bash -------------------------------------------------------------------------------- /tools/evaluate_plans.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/evaluate_plans.bash -------------------------------------------------------------------------------- /tools/evaluate_reflection.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/evaluate_reflection.bash -------------------------------------------------------------------------------- /tools/evaluate_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/evaluate_reflection.py -------------------------------------------------------------------------------- /tools/evaluate_reflections.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/evaluate_reflections.bash -------------------------------------------------------------------------------- /tools/get_terms.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/get_terms.bash -------------------------------------------------------------------------------- /tools/prompt_templates/ptemplate_applaud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/prompt_templates/ptemplate_applaud.txt -------------------------------------------------------------------------------- /tools/prompt_templates/ptemplate_evaluate_answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/prompt_templates/ptemplate_evaluate_answers.txt -------------------------------------------------------------------------------- /tools/prompt_templates/ptemplate_evaluate_plans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/prompt_templates/ptemplate_evaluate_plans.txt -------------------------------------------------------------------------------- /tools/prompt_templates/ptemplate_evaluate_reflections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/prompt_templates/ptemplate_evaluate_reflections.txt -------------------------------------------------------------------------------- /tools/query.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmori/generative-agents/HEAD/tools/query.bash --------------------------------------------------------------------------------