├── LICENSE ├── README.md ├── agents.py ├── interactive.py ├── main.py ├── memory.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atroyn/math-llm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atroyn/math-llm/HEAD/README.md -------------------------------------------------------------------------------- /agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atroyn/math-llm/HEAD/agents.py -------------------------------------------------------------------------------- /interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atroyn/math-llm/HEAD/interactive.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atroyn/math-llm/HEAD/main.py -------------------------------------------------------------------------------- /memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atroyn/math-llm/HEAD/memory.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai==0.27.8 2 | pexpect==4.8.0 --------------------------------------------------------------------------------