├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── act.py ├── call_llm.py ├── fix_hypothesis.py ├── hypothesis.py ├── judge_finish.py ├── main.py ├── make_memory.py ├── requirements.txt └── word.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/README_en.md -------------------------------------------------------------------------------- /act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/act.py -------------------------------------------------------------------------------- /call_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/call_llm.py -------------------------------------------------------------------------------- /fix_hypothesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/fix_hypothesis.py -------------------------------------------------------------------------------- /hypothesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/hypothesis.py -------------------------------------------------------------------------------- /judge_finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/judge_finish.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/main.py -------------------------------------------------------------------------------- /make_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/make_memory.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | -------------------------------------------------------------------------------- /word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudy-super/AutoMATA/HEAD/word.py --------------------------------------------------------------------------------