Get Started with AlphaApollo
Follow these steps to set up your environment and run your first agentic reasoning task.
Quick Start
Installation
bash
conda create -n alphaapollo python==3.12 -yconda activate alphaapollo
git clone https://github.com/tmlr-group/AlphaApollo.gitcd AlphaApollo
bash installation.shDemo Programs
bash
# Method 1: workflow entrypoint# no-tool reasoningpython3 -m alphaapollo.workflows.test \ --model.path=Qwen/Qwen2.5-3B-Instruct \ --preprocess.data_source=math-ai/aime24
# tool-integrated reasoningpython3 -m alphaapollo.workflows.test \ --model.path=Qwen/Qwen2.5-3B-Instruct \ --preprocess.data_source=math-ai/aime24 \ --env.informal_math.enable_python_code=true \ --env.informal_math.enable_local_rag=false \ --env.max_steps=4
# Method 2: script entrypointbash examples/test/run_test_informal_math_no_tool.sh # no-tool reasoningbash examples/test/run_test_informal_math.sh # tool-integrated reasoningWhat's Next?
📚 Documentation
Explore the full documentation to learn about core modules, configurations, and advanced features.
🛠️ Built-in Tools
Learn how to use and extend built-in tools like the Python interpreter and local RAG module.
🤝 Contribute
Join the community and help us improve AlphaApollo by contributing new algorithms or environments.