How to Use DoeyLLM / OneLLM-Doey-V1-Llama-3.2-3B-Instruct
This guide explains how to use the DoeyLLM model on both app (iOS) and PC platforms.
App (iOS): Use with OneLLM
OneLLM brings versatile large language models (LLMs) to your device—Llama, Gemma, Qwen, Mistral, and more. Enjoy private, offline GPT and AI tools tailored to your needs.
With OneLLM, experience the capabilities of leading-edge language models directly on your device, all without an internet connection. Get fast, reliable, and intelligent responses, while keeping your data secure with local processing.
Quick Start for iOS
Follow these steps to integrate the DoeyLLM model using the OneLLM app:
Download OneLLM
Get the app from the App Store and install it on your iOS device.
Load the DoeyLLM Model
Use the OneLLM interface to load the DoeyLLM model directly into the app:
Navigate to the Model Library.
Search for DoeyLLM.
Select the model and tap Download to store it locally on your device.
Start Conversing
Once the model is loaded, you can begin interacting with it through the app's chat interface. For example:
Install llama.cpp through brew (works on Mac and Linux)
bash
1brew install llama.cpp
2
Invoke the llama.cpp server or the CLI.
CLI:
llama-cli --hf-repo DoeyLLM/OneLLM-Doey-V1-Llama-3.2-3B-Q3_K_L-GGUF --hf-file onellm-doey-v1-llama-3.2-3b-q3_k_l.gguf -p "The meaning to life and the universe is"
Note: You can also use this checkpoint directly through the usage steps listed in the Llama.cpp repo as well.
Step 1: Clone llama.cpp from GitHub.
git clone https://github.com/ggerganov/llama.cpp
Step 2: Move into the llama.cpp folder and build it with LLAMA_CURL=1 flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
cd llama.cpp && LLAMA_CURL=1 make
Step 3: Run inference through the main binary.
./llama-cli --hf-repo DoeyLLM/OneLLM-Doey-V1-Llama-3.2-3B-Q3_K_L-GGUF --hf-file onellm-doey-v1-llama-3.2-3b-q3_k_l.gguf -p "The meaning to life and the universe is"