Getting Started with Nexus¶
Welcome to Nexus! This guide will help you get up and running in minutes.
What is Nexus?¶
Nexus is an AI-native distributed filesystem designed from the ground up for production AI agents. It provides:
- Context Preservation: Never lose agent context across restarts
- Enterprise Security: Google Zanzibar-style ReBAC permissions
- Multi-Tenancy: Native tenant isolation for SaaS applications
- Time Travel: Built-in versioning and point-in-time recovery
- Semantic Search: AI-first search capabilities
- Distributed First: Seamless embedded-to-cloud deployment
Quick Example¶
import nexus
# Connect to Nexus
nx = nexus.connect(config={"data_dir": "./nexus-data"})
# Write a file
nx.write("/hello.txt", b"Hello, Nexus!")
# Read it back
content = nx.read("/hello.txt")
print(content.decode()) # "Hello, Nexus!"
# List files
files = nx.list("/")
Choose Your Path¶
Best Practices:
Production Setup:
Need Help?
- Join our Slack community
- Check out the examples
- Open an issue on GitHub