VOT1 is an advanced self-improving system focused on memory management with OWL reasoning and visualization. It implements a robust vector-based memory system combined with semantic reasoning capabilities and automates self-improvement through AI-powered workflows.
- Vector-based Memory Management: Store and retrieve memories using vector embeddings for semantic similarity search
- OWL Reasoning Engine: Apply ontology-based reasoning to memories and system components
- Self-Improvement Workflows: Automated workflows for enhancing system components
- THREE.js Dashboard: Interactive 3D visualization of memory connections with cyberpunk aesthetic
- Python 3.9+
- Node.js 14+ (for dashboard)
- Git
-
Clone the repository:
git clone https://github.com/villageofthousands/vot1.git cd vot1
-
Create a virtual environment and install dependencies:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate pip install -r requirements.txt
-
Set up environment variables:
cp .env.example .env # Edit .env with your API keys and configuration
To start the dashboard:
python -m src.vot1.dashboard.app
The dashboard will be available at http://localhost:5000
VOT1 includes a self-improvement workflow that can enhance various components:
# Run self-improvement targeting the THREE.js visualization
python -m scripts.run_self_improvement --target three-js --thinking-tokens 8192 --mode agent --iterations 1
Options:
--target
: Component to improve (three-js, memory, owl-reasoning, dashboard)--mode
: Improvement mode (agent, workflow, analysis)--thinking-tokens
: Maximum tokens for thinking steps--iterations
: Number of improvement iterations
VOT1 consists of several key components:
- Memory Manager: Core system for storing and retrieving vector-based memories
- OWL Reasoning Engine: Provides semantic reasoning based on ontology
- Self-Improvement Framework: Automates the enhancement of system components
- Dashboard: Visualization and interaction layer with THREE.js rendering
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
Please make sure to update tests as appropriate.
See CONTRIBUTING.md for more information.
This project is licensed under the MIT License - see the LICENSE file for details.
- THREE.js for 3D visualization
- OWLready2 for OWL reasoning
- Sentence Transformers for vector embeddings