LLM Nexus: The Future of Language Models
Collection
Top-tier Large Language Models (LLMs) for developers and researchers. Elevate your projects with cutting-edge AI from LLM Nexus. • 5 items • Updated • 2
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf Diluzx/Athena:Q8_0# Run inference directly in the terminal:
llama-cli -hf Diluzx/Athena:Q8_0# 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 Diluzx/Athena:Q8_0# Run inference directly in the terminal:
./llama-cli -hf Diluzx/Athena:Q8_0git 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 Diluzx/Athena:Q8_0# Run inference directly in the terminal:
./build/bin/llama-cli -hf Diluzx/Athena:Q8_0docker model run hf.co/Diluzx/Athena:Q8_0This llama model was trained 2x faster with Unsloth and Huggingface's TRL library.
8-bit
Base model
unsloth/llama-3-8b-Instruct-bnb-4bit
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf Diluzx/Athena:Q8_0# Run inference directly in the terminal: llama-cli -hf Diluzx/Athena:Q8_0