Get from zero to verified code in 5 minutes.
# Clone the repository
git clone https://github.com/your-org/axiomcode.git
cd axiomcode
# Install dependencies
pip install -e ".[all]"
# Make sure Ollama is running
ollama serve
# Pull a code-capable model
ollama pull qwen2.5-coder:14b
export OPENAI_API_KEY="sk-..."
export ANTHROPIC_API_KEY="sk-ant-..."
# Quick generate
axiomcode "implement binary search on a sorted array"
# Interactive guided mode
axiomcode guide
# Browse examples
axiomcode examples
# 2D port graph view
axiomcode visualize binary_search --mode 2d
# Force-directed graph
axiomcode visualize binary_search --mode force
# 3D spatial layout
axiomcode visualize binary_search --mode 3d
# Python
from axiomcode_binary_search import binary_search
result = binary_search([1, 3, 5, 7, 9], 5)
print(result) # 2 (index of 5)
// C
#include "binary_search.h"
int main() {
int arr[] = {1, 3, 5, 7, 9};
int idx = binary_search(arr, 5, 5);
return 0;
}
# To PyPI
axiomcode publish binary_search --pypi
# To GitHub Releases
axiomcode publish binary_search --github
axiomcode walkthrough — Interactive tutorialaxiomcode help — Full help & FAQaxiomcode models — List available LLMs