├── .gitignore ├── LICENSE ├── Pipeline4.png ├── README.md ├── agentsynth ├── convert_to_llava_training_file.py ├── convert_to_oai_training_file.py ├── generate_and_save_traces_persona.py ├── parse_computer_use.py ├── persona.jsonl ├── prompts.py └── utils.py ├── insta_data ├── combined_task_generation_new.py ├── data_judge.py ├── evaluate_llm_agents.py ├── generate_traces_test.py ├── miscellaneous_funcs.py ├── parse_computer_use.py ├── summarized_task_sequences.jsonl ├── sys_task_action.txt ├── sys_task_action_no_done.txt ├── sys_task_followup.txt ├── sys_task_init.txt └── task_sequences.jsonl └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipeline4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/Pipeline4.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/README.md -------------------------------------------------------------------------------- /agentsynth/convert_to_llava_training_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/agentsynth/convert_to_llava_training_file.py -------------------------------------------------------------------------------- /agentsynth/convert_to_oai_training_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/agentsynth/convert_to_oai_training_file.py -------------------------------------------------------------------------------- /agentsynth/generate_and_save_traces_persona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/agentsynth/generate_and_save_traces_persona.py -------------------------------------------------------------------------------- /agentsynth/parse_computer_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/agentsynth/parse_computer_use.py -------------------------------------------------------------------------------- /agentsynth/persona.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/agentsynth/persona.jsonl -------------------------------------------------------------------------------- /agentsynth/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/agentsynth/prompts.py -------------------------------------------------------------------------------- /agentsynth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/agentsynth/utils.py -------------------------------------------------------------------------------- /insta_data/combined_task_generation_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/combined_task_generation_new.py -------------------------------------------------------------------------------- /insta_data/data_judge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/data_judge.py -------------------------------------------------------------------------------- /insta_data/evaluate_llm_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/evaluate_llm_agents.py -------------------------------------------------------------------------------- /insta_data/generate_traces_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/generate_traces_test.py -------------------------------------------------------------------------------- /insta_data/miscellaneous_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/miscellaneous_funcs.py -------------------------------------------------------------------------------- /insta_data/parse_computer_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/parse_computer_use.py -------------------------------------------------------------------------------- /insta_data/summarized_task_sequences.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/summarized_task_sequences.jsonl -------------------------------------------------------------------------------- /insta_data/sys_task_action.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/sys_task_action.txt -------------------------------------------------------------------------------- /insta_data/sys_task_action_no_done.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/sys_task_action_no_done.txt -------------------------------------------------------------------------------- /insta_data/sys_task_followup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/sys_task_followup.txt -------------------------------------------------------------------------------- /insta_data/sys_task_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/sys_task_init.txt -------------------------------------------------------------------------------- /insta_data/task_sequences.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/AgentSynth/HEAD/insta_data/task_sequences.jsonl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | Pillow 3 | matplotlib 4 | openai 5 | huggingface_hub --------------------------------------------------------------------------------