Wellness AI
Collection
5 items • Updated • 1
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf AdityaKothari/WellnessAI-8B:# Run inference directly in the terminal:
llama-cli -hf AdityaKothari/WellnessAI-8B:# 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 AdityaKothari/WellnessAI-8B:# Run inference directly in the terminal:
./llama-cli -hf AdityaKothari/WellnessAI-8B: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 AdityaKothari/WellnessAI-8B:# Run inference directly in the terminal:
./build/bin/llama-cli -hf AdityaKothari/WellnessAI-8B:docker model run hf.co/AdityaKothari/WellnessAI-8B:This llama model was trained 2x faster with Unsloth and Huggingface's TRL library.
Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("AdityaKothari/WellnessAI-8B")
4-bit
8-bit
16-bit
Base model
meta-llama/Meta-Llama-3-8B
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf AdityaKothari/WellnessAI-8B:# Run inference directly in the terminal: llama-cli -hf AdityaKothari/WellnessAI-8B: