Everything you need to build intelligent agents with deterministic memory
Sign up and get 5,000 free walks/month. No credit card required.
# Visit https://mantr.net/signup
# Click "Generate New Key" in dashboard
# Copy your key: vak_live_...pip install mantrnpm install @mantr/sdkgo get github.com/Mantrnet/go-sdkfrom mantr import MantrClient
# Initialize
mantr = MantrClient(api_key='vak_live_...')
# Walk the semantic graph
result = mantr.walk(
phonemes=['dharma', 'karma', 'yoga']
)
print(result.paths) # Semantic connections found# Get context from Mantr
context = mantr.walk(query="user authentication")
# Pass to your LLM
response = openai.chat.completions.create(
model="gpt-4",
messages=[
{"role": "system", "content": f"Context: {context}"},
{"role": "user", "content": "How do I implement OAuth?"}
]
)Choose your language and start building. All SDKs are production-ready with comprehensive documentation.
Get your API key and start building intelligent agents today.