Instructions to use remiai3/RemiAI_Framework with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use remiai3/RemiAI_Framework with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf remiai3/RemiAI_Framework # Run inference directly in the terminal: llama cli -hf remiai3/RemiAI_Framework
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf remiai3/RemiAI_Framework # Run inference directly in the terminal: llama cli -hf remiai3/RemiAI_Framework
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf remiai3/RemiAI_Framework # Run inference directly in the terminal: ./llama-cli -hf remiai3/RemiAI_Framework
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf remiai3/RemiAI_Framework # Run inference directly in the terminal: ./build/bin/llama-cli -hf remiai3/RemiAI_Framework
Use Docker
docker model run hf.co/remiai3/RemiAI_Framework
- LM Studio
- Jan
- vLLM
How to use remiai3/RemiAI_Framework with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "remiai3/RemiAI_Framework" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "remiai3/RemiAI_Framework", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/remiai3/RemiAI_Framework
- Ollama
How to use remiai3/RemiAI_Framework with Ollama:
ollama run hf.co/remiai3/RemiAI_Framework
- Unsloth Studio
How to use remiai3/RemiAI_Framework with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for remiai3/RemiAI_Framework to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for remiai3/RemiAI_Framework to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for remiai3/RemiAI_Framework to start chatting
- Docker Model Runner
How to use remiai3/RemiAI_Framework with Docker Model Runner:
docker model run hf.co/remiai3/RemiAI_Framework
- Lemonade
How to use remiai3/RemiAI_Framework with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull remiai3/RemiAI_Framework
Run and chat with the model
lemonade run user.RemiAI_Framework-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Student & Developer Documentation
Overview
Welcome to the RemiAI Framework! This document is designed to help you understand how to customize, configure, and make this application your own. This framework is built to be "Plug-and-Play"—meaning you don't need to know Python or complex AI coding to use it.
🛠️ Setup & How to Customize
0. Quick Setup (Important!)
Before running the app, you must ensure the AI engine files are downloaded correctly. GitHub does not store large files directly, so we use Git LFS.
- Install Git LFS:
- Download and install from git-lfs.com.
- Open a terminal and run:
git lfs install
- Pull Files:
- Run:
git lfs pullinside the project folder. - Why? Without this, the app will say "RemiAI Engine Missing" or "Connection Refused".
- Run:
1. Changing the AI Name
Want to name the AI "Jarvis" or "MyBot"?
- Open
index.htmlin any text editor (VS Code, Notepad, etc.). - Search for "RemiAI" or "Bujji".
- Replace the text with your desired name.
- Save the file.
- Restart the app (
npm start), and your new name will appear!
2. Replacing the AI Model
This application is powered by a GGUF model file. You can swap this "brain" for a smarter one, a faster one, or one specialized in coding/storytelling.
Steps to Change the Model:
- Download a Model: Go to Hugging Face and search for GGUF models (e.g.,
Llama-3-8B-GGUF,Mistral-7B-GGUF). - Select File: Download the
.gguffile (Q4_K_M or Q5_K_M are good balances of speed and intelligence). - Rename: Rename your downloaded file to exactly:
model.gguf - Replace:
- Go to the
enginefolder in your project directory. - Paste your new
model.ggufthere, replacing the old one (or place it one level up depending on your specific folder setup—checkmain.jswhich looks for../model.ggufrelative to the engine binary). Note: Standard setup is usually placingmodel.ggufin the root orenginefolder as configured.
- Go to the
- Restart: Run
npm start. The app will now use the new intelligence!
Note: Make sure your laptop have good health don't use laptop more then 5 years old because running an entire Gen AI model weights or Neural Network will damage the laptop - your laptop may stucks, over heat, shutdown automatically and some it will make your laptop or device dead so be carefule
GOOD CONFIGURATION NO DAMAGE (i3 processor, 8GB RAM) - if you are using the PC.
(i5 processor, 16GB RAM) - if you are using the laptop.
new i3 with 8GB RAM laptop's will easily runs but the laptop want to be new and good heavy if the laptop was too old it will not work even you have i5 processor and 16GB RAM
3. Customizing the UI
All styles are in styles.css (or within index.html).
- Colors: Change the background colors or chat bubble colors in the CSS.
- Icons: Replace
remiai.icowith your own.icofile to change the app icon.
❓ Frequently Asked Questions (FAQ)
Q: Do I need Python?
A: No. The application comes with a pre-compiled engine (bujji_engine.exe / llama-server.exe) that runs the model directly.
Q: Why does it say "AVX2"? A: AVX2 is a feature in modern CPUs that makes the AI run faster. The app automatically detects if you have it. If not, it switches to a slower but compatible mode (AVX).
Q: The app opens but doesn't reply / "RemiAI Engine Missing" Error. A:
- Git LFS Issue: This usually means you downloaded "pointers" (tiny files) instead of the real engine. Open a terminal in the folder and run
git lfs pull. - Model Issue: Check if
model.ggufexists in theenginefolder. - Console Check: Open Developer Tools (Ctrl+Shift+I) to see errors.
Q: I see "Content Security Policy" warnings in the console.
A: We have configured safeguards (index.html meta tags) to block malicious scripts. If you see warnings about unpkg or jsdelivr, ensure your CSP matches the latest trusted domains in our code.
Q: How do I build it into an .exe file? A: Run the command:
npm run dist
This will create an installer in the release folder that you can share with friends!
if you are facing errors while building open the power shell as an administrator and run the above command then it will works 100%