Since a new pc is too much $$$, i'm doing a MAJOR rebuild Edit: Project three is done. (Page 2 of 2)
|
Holy crap it asked to download and run a benchmark on my hardware. I do not have any sensitive info on the dual Xeon pc so I let it even after it warned me it could be a security breach. That pc has two 20 core cpu's with a total of 80 threads so the AI got that wrong when it said 60. ![]() ──────────────────────────────────────── ● Hello, what is the best reasoning model to run with Hermes on a pc with a RTX 3090 Ti, two Xeon Gold 6148 cpu's and 192 gigs of ram? Initializing agent... ──────────────────────────────────────── ╭─ ⚕ Hermes ──────────────────────────────────────────────────────────────────────────────────────────────────────╮ I'll help you figure out the best reasoning models for your setup! Let me check the Hermes Agent documentation first to get specific recommendations for your hardware. ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ ┊ 📚 preparing skill_view… ┊ 📚 skill hermes-agent 0.0s ┊ 📚 preparing skill_view… ┊ 📚 skill llama-cpp 0.0s ╭─ ⚕ Hermes ──────────────────────────────────────────────────────────────────────────────────────────────────────╮ Based on your impressive hardware setup, let me check what reasoning models would work best. Your system has: - RTX 3090 Ti (24GB VRAM) - Dual Xeon Gold 6148 (30 cores each, 60 threads total) - 192GB RAM This is a powerful combination for local model inference! Let me search for current recommendations: ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ ┊ 🔍 preparing web_search… ┊ 🔍 search best reasoning model local RTX 3090 24GB VRAM 2025 2026 Qwen DeepSeek Claude 2.0s ┊ 📄 preparing web_extract… ┊ 📄 fetch toolhalla.ai 0.1s [error] ┊ 🔍 preparing web_search… ┊ 🔍 search site:huggingface.co best reasoning GGUF models 2025 2026 Qwen3.5 DeepSeek-R1 Claude 1.3s ┊ ⚡ preparing web_navigate… 🔧 Auto-repaired tool name: 'web_navigate' -> 'browser_navigate' ┊ 🌐 navigate huggingface.co 2.5s ┊ 🌐 preparing browser_navigate… ┊ 🌐 navigate huggingface.co 1.6s ┊ 🌐 preparing browser_navigate… ┊ 🌐 navigate huggingface.co 0.6s ┊ 💻 preparing terminal… ┊ 💻 $ curl -s "https://huggingface.co/api/models/Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-GGUF/tree/main?recursive=true" | python3 -c "import json,sys; data=json.load(sys.stdin); [print(f\"{f['path']:60s} {f['size']:>12,} bytes\") for f in data if f.get('type')=='file' and f['path'].endswith('.gguf')]" 36.4s (tip) That tool ran for a while. Use /verbose to cycle tool-progress display modes (all -> new -> off -> verbose). This tip only shows once. ┊ 🌐 preparing browser_navigate… ┊ 🌐 navigate huggingface.co 1.6s ┊ 🔍 preparing web_search… ┊ 🔍 search best reasoning LLM model 2025 DeepSeek-R1 Claude 3.7 Qwen reasoning comparison benchmarks 1.3s ┊ 🌐 preparing browser_navigate… ┊ 🌐 navigate huggingface.co 0.9s ┊ 🌐 preparing browser_navigate… ┊ 🌐 navigate huggingface.co 0.9s ┊ 🌐 preparing browser_navigate… ┊ 🌐 navigate huggingface.co 1.0s ╭─ ⚕ Hermes ──────────────────────────────────────────────────────────────────────────────────────────────────────╮ Based on your impressive hardware (RTX 3090 Ti 24GB + 192GB RAM + 60-thread dual Xeon), here are the best reasoning models for local inference in 2025/2026: 🏆 Top Recommendations for Your Setup 1. Qwen3.5-27B with Reasoning Distill (Currently Running) - Already in use: qwen3.5:27b - Alternative GGUF versions available: - Qwen3.5-27B.Q4_K_M.gguf (16.5GB) - Best balance - Qwen3.5-27B.Q4_K_S.gguf (15.6GB) - Faster, slightly less quality - Qwen3.5-27B.Q8_0.gguf (28.6GB) - Best quality (won't fit in VRAM) - Claude-4.6-Opus-Reasoning-Distilled variants available for enhanced reasoning 2. DeepSeek-R1 Distilled Models (Best Dedicated Reasoning) Best options that fit 24GB VRAM: - DeepSeek-R1-Distill-Qwen-32B @ Q4_K_M (~18GB) - DeepSeek-R1-Distill-Qwen-7B @ Q8_0 (~8GB) - Fast, excellent reasoning - DeepSeek-R1-Distill-Llama-8B @ Q5_K_M (~7GB) 3. Qwen2.5/3 Coder Models (Better for Coding) - Qwen2.5-Coder-32B @ Q4_K_M (~18GB) - Qwen3-Coder-24B @ Q4_K_M (~15GB) 🔧 Optimize Your Current Setup 1. Better Quantization for Current Model Run your 27B with higher precision: bash Use Q5_K_M instead of Q4 (fits 24GB, better quality) llama-server -m qwen3.5-27b.Q5_K_M.gguf --n-gpu-layers 90 --ctx-size 2048 --batch-size 512 VRAM Usage Comparison: | Quantization | VRAM Used | Remaining | Speed | |--------------|-----------|-----------|-----------| | Q4_K_S | ~15.6GB | 8.4GB | ~35 tok/s | | Q4_K_M | ~16.7GB | 7.3GB | ~35 tok/s | | Q5_K_M | ~19.8GB | 4.2GB | ~28 tok/s | | Q6_K | ~22.5GB | 1.5GB | ~22 tok/s | 2. Use llama.cpp Directly (Better Performance) bash Install llama.cpp with CUDA git clone https://github.com/ggerganov/llama.cpp cd llama.cpp make LLAMA_CUDA=1 Run optimized: bash Using Q5_K_M for better quality ./llama-server -m qwen3.5-27b.Q5_K_M.gguf --n-gpu-layers 90 --n-ctx 2048 --n-predict 512 --flash-attn --mlock Key benefits: - +20-30% faster than Ollama - Better VRAM management - Support for Flash Attention 🧠 For Pure Reasoning Tasks Top Picks (by reasoning capability): | Model | Size | VRAM @ Q4 | Reasoning Strength | |-------------------------------|------|-------------------|---------------------------| | DeepSeek-R1-Distill-Qwen3-32B | 32B | ~18GB | ⭐⭐⭐⭐⭐ Math/Logic | | DeepSeek-R1-Distill-Llama-70B | 70B | ~38GB (won't fit) | ⭐⭐⭐⭐⭐⭐ Best Overall | | Qwen3-235B-A22B (Distilled) | 32B | ~18GB | ⭐⭐⭐⭐⭐ All-round | | OpenAI o1-Distill-Qwen3-32B | 32B | ~18GB | ⭐⭐⭐⭐⭐ Planning | Recommended for your 24GB VRAM: 1. DeepSeek-R1-Distill-Qwen3-32B@Q4_K_M - Best dedicated reasoning 2. Qwen3.5-35B-A3B (MoE) - Efficient 35B with 3B active 3. DeepSeek-V3-Distill-Qwen-8B - Fast fallback 📦 Download Commands DeepSeek R1 (Best Reasoning) bash 8B version (fits easily) wget https://huggingface.co/bartowski/DeepSeek-R1-Distill-Qwen-8B-GGUF/resolve/main/deepseek-r1-distill-qwen-8b.Q4_K_M.gguf 14B version (sweet spot) wget https://huggingface.co/bartowski/DeepSeek-R1-Distill-Qwen3-14B-GGUF 32B version (better reasoning, fits 24GB) wget https://huggingface.co/bartowski/DeepSeek-R1-Distill-Qwen3-32B-GGUF Qwen3 with Reasoning Distillation bash Jackrong's Claude-distilled version (16GB @ Q4) wget https://huggingface.co/Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-GGUF/resolve/master/Qwen3.5-27B.Q4_K_M.gguf 🎯 Your Best Next Steps 1. Try Qwen3.5-27B Q5_K_M (better quality than Q4, still fits) 2. Test DeepSeek-R1-32B (specifically for reasoning tasks) 3. Keep Qwen2.5-Coder-32B (already has, for coding) 4. Use DeepSeek-V3-8B (fast fallback for simple queries) Sample Workflow for Reasoning: bash For complex reasoning tasks ./llama-server -m DeepSeek-R1-32B.Q4_K_M.gguf --n-gpu-layers 90 For general chat/cognition ./llama-server -m qwen3.5-27b.Q5_K_M.gguf --n-gpu-layers 90 For coding ./llama-server -m Qwen2.5-Coder-32B.Q4_K_M.gguf --n-gpu-layers 90 Your current setup is excellent for local reasoning. The Qwen3.5-27B is a solid choice, but DeepSeek-R1 distilled models specifically excel at mathematical and logical reasoning tasks! 🚀 |
|
Just playing around with it. "──────────────────────────────────────── ● What can you tell me about Bigfoot? Initializing agent... ──────────────────────────────────────── ╭─ ⚕ Hermes ──────────────────────────────────────────────────────────────────────────────────────────────────────╮ Bigfoot (also called Sasquatch) is a legendary cryptid from North American folklore. Here's what I can tell you: Physical Description: - Described as a large, hairy, bipedal creature 6-10 feet tall - Said to weigh 400-1000 pounds - Typically dark brown or red in color - Leaves massive footprints (up to 18 inches long) Legend Origins: - Native American tribes have oral traditions of similar creatures (Peteese, Yetman, Ugly Man) - Modern Bigfoot craze began in the 1950s-60s - Most famous photo: Patterson-Gimlin film (1967) in California Sightings: - Most reports from Pacific Northwest, Alaska, and Great Lakes regions - Similar creatures reported worldwide: Yeti (Himalayas), Yowie (Australia), Skunk Ape (Florida) Scientific Perspective: - No credible physical evidence exists (no bones, DNA, clear images) - Most footprints proven to be hoaxes - Some researchers suggest misidentified black bears standing on hind legs - Occasional "mystery" DNA samples have been linked to known species Cultural Impact: - Numerous documentaries and TV shows investigate claims - Bigfoot hunting/enthusiast communities thrive - Featured in countless movies, books, and merchandise - Some cryptozoologists actively search for evidence Famous Cases: - Patterson-Gimlin film (1967): Most well-known purported footage - Flatwoods Monster (1952): West Virginia - Saylor-Crafts sighting (1967): Montana While many people claim encounters, Bigfoot remains unproven scientifically. Most experts consider it folklore, though the mystery continues to captivate the public imagination. ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯" |
|
Not deep diving yet, just still playing around with it. "──────────────────────────────────────── ● Can you teach me to code with Microsoft Basic for CP/M 80? ──────────────────────────────────────── ╭─ ⚕ Hermes ──────────────────────────────────────────────────────────────────────────────────────────────────────╮ I'd be happy to teach you Microsoft BASIC for CP/M 80! This was a classic language from the late 1970s/early 1980s. Let me guide you through getting started: Environment Setup First, you'll need a CP/M emulator. The easiest options: For Linux (your system): bash Option 1: ChariOS (CP/M emulator) git clone https://github.com/tonymec/chrios.git cd chrios && make Option 2: CP/M simulator sudo apt install cpmsim Option 3: CBM/Cross-platform emulator sudo apt install charis BASIC 80 Primer Starting BASIC: A>BASIC Microsoft BASIC Version 2.00 for CP/M Copyright (C) Microsoft READY Core Commands Line Numbers: basic 10 PRINT "HELLO WORLD" 20 PRINT "MY NAME IS ****" 30 END RUN Variables: basic 10 LET A = 10 20 LET B = 20 30 LET C = A + B 40 PRINT "A + B ="; C 50 END RUN Input/Output: basic 10 PRINT "WHAT IS YOUR NAME"; 20 INPUT NAME$ 30 PRINT "HI "; NAME$ 40 END RUN Loops: basic 10 FOR I = 1 TO 5 20 PRINT I 30 NEXT I 40 END RUN If/Then: basic 10 INPUT "ENTER A NUMBER"; N 20 IF N > 10 THEN PRINT "LARGE" 30 IF N <= 10 THEN PRINT "SMALL" 40 END RUN Arrays: basic 10 DIM A(5) 20 FOR I = 0 TO 5 30 INPUT A(I) 40 NEXT I 50 FOR I = 0 TO 5 60 PRINT A(I) 70 NEXT I 80 END RUN Complete Example Program basic 10 REM CALCULATOR PROGRAM 20 PRINT "=== CALCULATOR ===" 30 PRINT "1. ADD" 40 PRINT "2. SUBTRACT" 50 PRINT "3. MULTIPLY" 60 PRINT "4. DIVIDE" 70 INPUT "CHOOSE"; CHOICE 80 INPUT "NUM1"; X 90 INPUT "NUM2"; Y 100 IF CHOICE = 1 THEN PRINT X + Y 110 IF CHOICE = 2 THEN PRINT X - Y 120 IF CHOICE = 3 THEN PRINT X * Y 130 IF CHOICE = 4 THEN PRINT X / Y 140 END Common BASIC Statements | Statement | Purpose | |------------|-----------------| | PRINT | Display output | | INPUT | Get user input | | LET | Assign value | | IF...THEN | Conditional | | FOR...NEXT | Loop | | DIM | Define array | | GOTO | Jump to line | | GOSUB | Call subroutine | | RETURN | From subroutine | | REM | Comment | | END | End program | | CLS | Clear screen | | LIST | Show all lines | | RUN | Execute | | NEW | Clear program | Editing - To delete a line: Type line number alone - To change a line: Type new line with same number - To view program: LIST - To save: SAVE program.bas - To load: LOAD program.bas Would you like me to: 1. Install a CP/M emulator for you 2. Show more advanced examples 3. Walk you through specific programming concepts What would help most? ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ ⚕ qwen3.5:27b │ 16.7K/262.1K │ [█░░░░░░░░░] 6% │ 5m │ ⏲ 1m 4s " |
Since a new pc is too much $$$, i'm doing a MAJOR rebuild Edit: Project three is done. (Page 2 of 2)
Join the Community
Your next conversation starts here.
Create your free account to join discussions, share your experience, save topics, and connect with the AR15.COM community.
- Join discussions
- Follow topics and replies
- Connect with fellow enthusiasts
Already a member? Sign in
Stay informed by subscribing to our Newsletter























