A modern web interface for interacting with Ollama models, built with Nuxt 3 and Nuxt UI v3.
⚠️ Work in Progress: This project is under active development.
- 🎨 Interactive Chat Interface
- Real-time streaming responses
- Multiple model support
- Clear conversation history
- 🤖 Model Management
- View and manage Ollama models
- Search and sort functionality
- Detailed model information
- 🎨 Modern UI with Nuxt UI v3
- Dark/Light mode with theme customization
- Responsive design for all devices
- Customizable UI elements
- ⚡ Performance Focused
- Fast and responsive interface
- Efficient model handling
- Type-safe development
- Frontend Framework: Nuxt 3
- UI Components: Nuxt UI v3
- Styling: Tailwind CSS
- State Management: Pinia
- Utilities: VueUse
- LLM Backend: Ollama
Before you begin, ensure you have:
- Node.js (v18+)
- Ollama installed and running locally
- Git for version control
- Docker (optional, for containerized deployment)
-
Clone and Install
# Clone the repository git clone https://github.com/EndoTheDev/OllaMoMa-v2.git cd OllaMoMa-v2 # Install dependencies npm install # or pnpm install / yarn install / bun install
-
Start Development Server
npm run dev # or pnpm dev / yarn dev / bun run dev
-
Configure Ollama
- Default settings: host: 127.0.0.1, port: 11434
- Adjust in application settings if needed
-
Using Docker
# Clone the repository git clone https://github.com/EndoTheDev/OllaMoMa-v2.git cd OllaMoMa-v2 # Build the image docker build -t ollamoma-v2 . # Run the container docker run -d -p 3000:3000 --name ollamoma ollamoma-v2
-
Using Docker Compose
# Clone the repository git clone https://github.com/EndoTheDev/OllaMoMa-v2.git cd OllaMoMa-v2 # Start the application docker compose up -d # Stop the application docker compose down
-
Important Docker Notes
- Ensure Ollama is running on your host machine
- For Windows/macOS: Use
host.docker.internal
instead oflocalhost
- For Linux: Use your host machine's IP address
Detailed documentation is available in the docs directory:
-
Getting Started
-
Features
.
├── assets/ # Static assets
├── components/ # Vue components
│ ├── app/ # App components
│ │ ├── chat/ # Chat components
│ │ ├── modelfile/ # Modelfile components
│ │ ├── models/ # Models components
│ │ └── settings/ # Settings components
│ ├── base/ # Base components
│ └── ui/ # UI components
├── composables/ # Vue composables
├── docs/ # Documentation
├── pages/ # File-based routing
├── server/ # Server API routes
├── stores/ # Pinia stores
├── tests/ # Test files
└── types/ # TypeScript types
- ✅ Core Features
- ✅ Chat interface with streaming
- ✅ Model management
- ✅ Theme customization
- ✅ Settings management
- 🔄 LangChain integration
- 📊 Knowledge graph visualization
- 🎨 Enhanced theme customization
- Color picker
- Border radius settings
- 🗃️ Database/Files management
We welcome contributions! Please see our Development Guide for details on:
- Setting up your development environment
- Our coding standards
- The contribution workflow
- Testing requirements
This project is licensed under the MIT License.
Built with ❤️ by EndoTheDev using Nuxt 3 and Nuxt UI v3