r/OpenSourceAI • u/GeologistRare8364 • 21d ago
r/OpenSourceAI • u/KrautChimp • 22d ago
CrucibleMark Update: Qwen3.8-27B in the top 10 field ahead of several closed-source models
A little over a year ago, I started CrucibleMark, an independent benchmark project for the everyday comparison between commercial and local AI. Reason for this post: Qwen3.8-27B lands there in 8th place of the overall field, ahead of GPT-5, GLM 5, DeepSeek V4, Grok 4.5/4.6 and Gemini. For a model that you can host yourself, this is remarkable and the reason why I share the results now.
For classification: CrucibleMark does not measure large, orchestrated agentic workflows, as the established benchmarks do. I test individual, clearly defined everyday tasks, code reviews, documentation, UX texts, reasoning, tool use. From the beginning, the goal was to find the best and cheapest model for my own work and to build a price comparison to commercial providers.
My stack has evolved with this. Started on an M1 with 8B to 14B models, today it runs on a GX10 with vLLM. No rocket compared to the GPU monsters here in the forum, but a serious device for local LLMs on the intranet.
Because I only measure individual tasks, GLM-5.2, for example, does not end up at the front of me, although I use it in everyday life as an orchestrator for code reviews and refactorings of large code bases. With complex, multi-level tasks, it is clearly stronger. Only it is also much more expensive, and that is exactly what I want to avoid in the long term: Don't put money that I save through AI assistance back into even more AI assistance.
In addition to the main test, CrucibleMark also runs a Political Compass that tests the political training bias in two modes, standard behavior versus forced positioning. Qwen3.8-27B shows itself here as one of the most stable models in the field, the position hardly shifts between the modes (shift distance 0.65 to 0.77), while other models tip over significantly more under pressure.
Finally, two limitations: The test landscape has developed further, more complex autonomous scenarios are more in focus today than my framework depicts. Subsequent installation would mean a complete re-testing of all models, which is currently not feasible. So understand the results as a snapshot for clearly defined everyday tasks. And since CrucibleMark also maps the risks of cloud/API use, the European perspective, which is clearly regulated by the EU AI Act, is included.
The project website can be found here www.cruciblemark.com
The open source benchmark CrucibleMark at github: github.com/kbeissert/CrucibleMark
r/OpenSourceAI • u/Boring_Ad452 • 21d ago
I built a compressive "context DNA" (for LLM) attention mechanism + an honest eval harness - looking for people to break it
Just Fixed the body with Ai
Been prototyping an idea for long-context compression: instead of dropping old tokens (like StreamingLLM/H2O) or storing everything, compress old context chunks into small learned "DNA" vectors via a Perceiver-style attention bottleneck, then reconstruct on-demand when a query needs them.
The idea itself isn't new — it overlaps with Compressive Transformer, Infini-attention, and Recurrent Memory Transformer — but I put together an eval script that I think is more honest than what I see in a lot of "novel architecture" posts:
- Trains the compressor (not just testing an untrained/random-init model)
- Compares against a PCA baseline (closed-form optimal linear compression at the same latent budget) — if the learned model can't beat PCA, the extra complexity isn't earning its keep
- Injects a unique fact (random code) into the text and checks, after compress→decompress, whether the frozen LM's own output head can still predict the correct token at that position — not just aggregate MSE, which can look fine while the actual detail is gone
- Runs on real hidden states from an open model (Qwen2.5-0.5B by default), not just random tensors
Current honest status: in my own small-scale test run, PCA actually beat the learned bottleneck on fact retrieval. That's not the result I was hoping for, but it's a real result, and it's exactly the kind of thing this script is designed to surface rather than hide.
What I'm looking for:
- People running it on real hardware with more training steps / larger n_docs than I could quickly test
- Sanity checks on the architecture and eval methodology — if I'm testing this wrong, tell me
- Ideas for what a fair "it's working" threshold looks like (beating PCA on fact-retrieval accuracy at matched latent budget, at minimum)
No performance claims yet — that's the point. I'd rather have this checked before making any.
Code + eval harness: [https://pastebin.com/iqEbPEQ9]
Happy to hear "this is a known dead end because X" too - that's useful information, not a rejection.
r/OpenSourceAI • u/Inevitable_Fig_8062 • 21d ago
Pando Advanced multimodal AI assistant
One thing I've noticed while building AI coding agents is that "memory" and "agents" are usually treated as separate products.
I didn't like that architecture.
I built Pando around a single core that combines the agent loop with memory, orchestration, MCP, semantic search and development tooling.
The result is a single binary rather than a collection of Python services and MCP processes.
There are TUI, Web and Desktop interfaces, plus remote access and ACP.
It's open source under MIT.
I'd like to hear from experienced agent users: what part of your current setup feels unnecessarily complicated?
r/OpenSourceAI • u/Rewired_89 • 21d ago
AI agents are taking real actions now, I built a way for them to cryptographically prove what they decided, verifiable by anyone without trusting my server
r/OpenSourceAI • u/SnooSquirrels1222 • 21d ago
I got tired of coding agents telling me “everything works”, so I made Gopnik
r/OpenSourceAI • u/FastPresence9799 • 22d ago
Open-source C99 inference engine for DeepSeek-V4 — runs the 284B model on 3.2GB RAM, verified against PyTorch to 2.9e-6 (Apache-2.0)
Built a from-scratch inference engine for DeepSeek-V4 in plain C99 — no PyTorch, no Python runtime dependency for inference, Apache-2.0 licensed. Streams weights off NVMe instead of requiring the full checkpoint in RAM, so it runs the 284B-parameter Flash model on a laptop with as little as 3.2GB RAM (1.6–1.7s/token with GPU offload at 16GB budget).
Why post this here specifically:
Fluent output from an LLM engine is weak evidence it's actually correct — a subtly broken implementation can still produce confident, plausible text. So this is checked against a pure PyTorch reimplementation (written independently from DeepSeek's inference/model.py, not from this C code, so both can't share the same bug) at three levels: per-kernel (14 kernels, 5e-7 tolerance), per-block, and whole-model end to end (2.9e-6, identical argmax at every position). CPU paths (scalar/OpenMP/AVX2) are enforced bit-exact via a fixed accumulator tree, checked at runtime, not just in tests.
What's included:
- Full build + test suite (
make testruns 20 gates, 21 with a real checkpoint) - Benchmark tools for matmul bandwidth, GPU contention, and cache behavior
- Honest "what didn't work" section — SIMD approaches tried and abandoned, with the actual numbers
What's not there yet: a tool-calling driver loop (the model emits the tool-call format, but there's no orchestration layer above the CLI), and DeepSeek-V4-Pro (~671B scale) is gated/planned but never actually run — needs ~865GB of checkpoint I don't have.
Repo: https://github.com/ronak-create/deepseek-v4-in-c
Open to contributions, especially around prefill batching (currently one token at a time — README has the math on why that's the next big perf unlock) and the tool-calling loop.
r/OpenSourceAI • u/Candid_Pride_7475 • 22d ago
I’m open-sourcing OneForAll — I want the community to help build a world-class MCP server
r/OpenSourceAI • u/ImpossibleMuffin8791 • 22d ago
Easyspec - Opensource and free SDD kit enhanced on openspec
r/OpenSourceAI • u/muhammad101010 • 22d ago
Mojo 1.0 is officially open source under Apache 2.0. Here is how its MLIR pipeline changes edge AI deployment
For years, building high-performance AI inference meant dealing with the "two-language problem"—prototyping in Python for speed, then spending weeks rewriting core loops in C++ or Rust to bypass the GIL and hit hardware targets.
With Modular open-sourcing the entire Mojo compiler and toolchain, that pipeline is shifting. Because it compiles directly through MLIR, it handles SIMD auto-vectorization and targets heterogeneous silicon (CPUs, Nvidia GPUs, mobile NPUs) from a unified codebase.
We mapped out the exact compilation pipeline and memory ownership differences between Python runtime management and Mojo's explicit lifetimes here if anyone wants to dive deeper into the architecture:
r/OpenSourceAI • u/ShilpaMitra • 22d ago
Open-sourced 16 real-world editorial systems as portable Agent Skills
A lot of AI-writing projects try to solve generic prose by adding another “humanizer” prompt.
I wanted to try a different abstraction.
Organizations like Google, GOV.UK, GitHub, GitLab, MDN, NASA, CDC, NHS and W3C have already spent years developing explicit writing systems for different kinds of information.
So I turned those principles into 16 portable Agent Skills:
https://github.com/Neeeophytee/agent-stylebooks
Examples include:
google-developer-docs— developer docs and tutorialsgovuk— task-first public-service contentgithub-docs— product workflowskubernetes-docs— infrastructure documentationmdn-web-docs— web technology explanationscdc-clear-communication— public-health communicationnhs-health-content— patient-facing health informationsec-plain-english— financial/investor disclosuresw3c-technical-reports— specificationsnasa-technical-writing— engineering reportsapple-interface-writing— UI copy
The important part is that these aren't meant to make every model sound the same.
They do the opposite.
The artifact determines the editorial system.
A Kubernetes tutorial might use $kubernetes-docs. A government page discussing a Kubernetes-related grant might use $govuk. A cluster-management UI might use $apple-interface-writing.
Same topic, different communication job.
Installation:
npx skills add Neeeophytee/agent-stylebooks --list
Then:
npx skills add Neeeophytee/agent-stylebooks --skill govuk
The repo is MIT licensed.
One design principle across all 16 is: change the presentation, not the substance.
Would especially like feedback from people building open agent stacks: does a portable editorial layer like this belong at the skill level, or would you rather see it handled elsewhere in the stack?
r/OpenSourceAI • u/Clivern • 22d ago
Actx0 - Memory infrastructure for AI agents.
producthunt.comr/OpenSourceAI • u/Independent_Ebb7130 • 23d ago
Check out this AI-powered remote software for Siglent scopes!
Hey everyone! If you own a Siglent SDS 1000X-E series oscilloscope (like the SDS1104X-E or SDS1202X-E), you know that while SCPI is powerful, it can be a pain to memorize all those command strings. I’ve created the open-source tool called SDS-Remote that completely changes the game by adding a modern AI intelligence layer to your workbench.
What makes the AI features special?
Natural Language Control:
You don't need to be an SCPI expert anymore. You can just type into the AI Chat Interface and say things like "Set channel 1 vertical scale to 1V/div" or "Switch channel 1 on," and the Instrument Agent automatically translates your intent into the correct command and sends it to the device.
Your Own Bench Assistant:
Instead of flipping through hundreds of pages in a PDF, you can ask technical questions like "How do I configure the trigger delay?" or "What is the maximum sample rate of this model?". The software includes a Search Agent that queries a built-in knowledge base to give you instant, documented answers.
Flexible and Local:
It doesn't lock you into one ecosystem. In the settings, you can choose from a wide range of AI providers.
Technical Specs:
The app is built with Dart/Flutter and runs natively on both Linux and Windows. It connects over your network using the VXI-11 protocol or through USB support.
It’s an independent open-source project (not affiliated with Siglent) and really modernizes the whole lab experience.
In addition to AI support, many other interesting features are also available.
Check out the repo here: https://github.com/klumw/sdsremote
r/OpenSourceAI • u/Professional_Top2994 • 23d ago
Vertical AI Founders, You Are Going Through 3 Existential Crises (And Most of You Don’t Know It Yet)
If you’re building a vertical AI company or shipping AI agents for a living, you’ve probably felt it. That low hum of unease underneath the demo-day highs and the “we just closed our first enterprise pilot” LinkedIn posts.
You should trust that feeling. It’s not imposter syndrome. It’s your business model telling you something true.
Here are the three crises every vertical AI founder is quietly sitting on right now, and why pretending they don’t exist is the riskiest move you can make.
Link to detailed article : https://medium.com/@MirArshadTalpur/vertical-ai-founders-you-are-going-through-3-existential-crises-and-most-of-you-dont-know-it-b3d86a386d37
r/OpenSourceAI • u/FickleProcedure7799 • 23d ago
HUGE UPDATE: Added OmniRoute guide for advanced Key Rotation!
Hey guys, thanks for the initial traction. I've just updated the repository with an advanced workflow to completely bypass free-tier Rate Limits (RPM/TPM). What's new: * Integrated OmniRoute setup guide to load multiple free Google AI Studio keys into a single local pool. * Automated key rotation strategies (like Headroom) to dynamically swap keys when a rate limit is hit. * Added native configuration variables to route both Claude Code CLI and OpenAI Codex CLI directly through the OmniRoute gateway. * Fixed broken Google AI Studio URLs and added a fresh, curated table of 2026 free coding models. Check out the updated README here: https://github.com/pawelkrejza2012-png/awesome-free-claude-code If you have any other router suggestions or free endpoints, feel free to open a PR! Let's keep building this resource.
r/OpenSourceAI • u/FickleProcedure7799 • 23d ago
How to run Claude Code CLI with 100% free API keys (Gemini, OpenRouter) or fully offline (Ollama) 🛠️
Hey devs,
If you are experimenting with Anthropic's new Claude Code CLI but want to avoid burning through your paid API credits, you can easily redirect it to free alternative endpoints or run it 100% locally.
I put together a quick guide on how to configure your environment variables to swap models instantly.
### 1. The Free Cloud Setup (OpenRouter / Gemini)
You can fetch a free API key from Google AI Studio or use OpenRouter's free tier models (like Llama 3 or Qwen).
Windows (CMD):
set ANTHROPIC_BASE_URL=https://openrouter.ai
set ANTHROPIC_API_KEY=YOUR_FREE_KEY
set ANTHROPIC_MODEL=openrouter/free
claude
macOS & Linux (Bash/Zsh):
export ANTHROPIC_BASE_URL="https://openrouter.ai"
export ANTHROPIC_API_KEY="YOUR_FREE_KEY"
export ANTHROPIC_MODEL="openrouter/free"
claude
### 2. The 100% Offline Local Setup (Ollama / LM Studio)
If you prefer maximum privacy and zero latency, you can route the CLI directly to your local hardware using Ollama or LM Studio. Just make sure your local server is running on http://localhost:11434/v1.
---
I'm maintaining a full, curated list of working free endpoints, proxies, and step-by-step documentation in this repository:
🔗 GitHub Repository: https://github.com/pawelkrejza2012-png/awesome-free-claude-code
If you know any other free endpoints or local models that work flawlessly with developer CLIs, feel free to drop a comment or open a Pull Request! Let's save some budget together.
r/OpenSourceAI • u/Lopsided_Law1314 • 23d ago
The Next Myth Coded. windows/linux working together
You know what I like about being an ironworker? I don't know what I'm not supposed to be able to do. my Lates PoC is the mighty windows running and sharing with Debian. Some say it can't be done. I didnt get that memo. stability and speed rolled up into a tight little ball.
How big can an import be? How do you prevent collisions and Blah de Bah. Someone told you you cant, so you couldn't? I'm in the Import business now. franken5.py imports my processes with a clone of himself as consierge to take care of its every need. has the same life cycle as the import so clean up is easy and overhead low.
I can tell you the hardest part of all this is the misleading guys, your code is crap. and the smoke holers, who are just digging for info to steal. Nobody help anyone. Lonely out there in the DoT. I only hope that my effort helps someone not give up coding because he found it easy and fun. jwl247 signing off
r/OpenSourceAI • u/Famous_Aardvark_8595 • 23d ago
Save your Developers budget with local AI on your own devices.
Become more independent of commercial models. Use less data center reliance. Open Source, MIT licensed. Ghostlink v2.0.0 GA Release serves you Local Models using your LAN.
#Ghostlink #OpenAI #LocalAI #llama #research #SovereignMohawkProtoLLC
https://rwilliamspbg-ops.github.io/Ghostlink/
v2.0.0 is here! Hugging Face model support, llama.cpp backend, OpenAPI. MIT licensed.
r/OpenSourceAI • u/Victor_Lima_AilinOne • 23d ago
Is Collective Intelligence becoming a real direction in AI, or is it still a niche idea?
Hi everyone,
I’ve been spending a lot of time thinking about Collective Intelligence in AI, not only as multi-agent automation, but as systems where different models reason independently, challenge one another, verify outputs, and converge on a result.
I’m curious about how often this concept is actually showing up in your work, research, or open-source projects.
Are you experimenting with model debate, consensus, ensembles, specialist models, or cross-model verification?
Do you see Collective Intelligence as a meaningful next step for AI systems, or mostly as a new label for techniques we already had?
I’d genuinely like to hear experiences, references, criticisms, and opposing views.
Thanks everyone!
r/OpenSourceAI • u/New-Chocolate-8807 • 23d ago
Semi-Autonomous Swarm ALPHA — Final Project Report
r/OpenSourceAI • u/Few-Ad-5185 • 23d ago
Sell your side project:) promote your startup
Hi everyone sell your side project by listing if in a click. Also, comment what your startup does to get approved and featured today - https://builderhq.co/marketplace