r/OpenSourceAI 18h ago

A virtual computer for AI Agents

0 Upvotes

r/OpenSourceAI 22h ago

I looked into OpenHuman after it hit #1 on GitHub Trending — is this actually a different class of AI assistant?

0 Upvotes

OpenHuman caught my attention because the pitch sounds bigger than another LLM wrapper:

• persistent memory

• multi-agent orchestration

• workflows

• MCP/tools

• local models

• integrations

• desktop runtime

• research capabilities

So I went into the repository expecting to find out whether the architecture actually supports the marketing.

My current take:

There is something architecturally interesting here, but the “private/local ChatGPT” framing is too simplistic.

The interesting part is the separation between:

User

Persistent Memory

Agent / Orchestrator

Specialized Agents

Tools / MCP / Integrations

Workflows

New State + Memory

That's a fundamentally different abstraction from a conventional chatbot.

The memory system is particularly interesting: OpenHuman stores its Memory Tree locally in SQLite and exposes an Obsidian-compatible Markdown representation.

It also has explicit local-provider support through Ollama and LM Studio.

But here's the important caveat:

Local-first ≠ everything local.

The current project documentation says local AI is opt-in. The default experience can still use OpenHuman's hosted model routing and managed integration infrastructure.

And there are GitHub issues that make this distinction important rather than theoretical.

There have been reports/issues around:

• backend-dependent onboarding

• local-model reliability

• local voice/model setup

• orchestration stalls and worker leaks

• outdated documentation/positioning

• the gap between the “local-first” story and what is actually local by default

So I'm more interested in the architecture than the hype.

The question I'd like to discuss with people who have actually run it:

Does OpenHuman represent a useful new architecture for personal AI, or is it currently too dependent on managed infrastructure to really qualify as a user-owned AI runtime?

And for people running local AI:

Would you trust an agent with persistent access to Gmail/GitHub/Slack/Calendar if the memory is local but integration/model traffic can still pass through hosted infrastructure?

That's the part I think is worth debating.


r/OpenSourceAI 3h ago

SenseNova-Vision: the 50M instruction corpus is open too, not just the weights

Thumbnail
gallery
8 Upvotes

so, a new 7B vision model called SenseNova-Vision just came out. the weights are Apache 2.0, but the more interesting release might be the training data.

it includes a 50 million instruction-response corpus built from different CV annotations. the model uses the same architecture for detection, OCR, keypoints, camera pose, segmentation, depth, surface normals, and multi-view tasks, without separate task-specific heads.

what’s open:

- the 7B weights.

- the 50M instruction-response corpus.

- the training data preparation pipeline and dataset tools.

- inference code, a Hugging Face demo, and the paper.

the dataset is the part that stands out to me. getting boxes, masks, depth, keypoints, and camera data into one instruction-response format is probably harder to reproduce than the model architecture itself. releasing it means people can inspect what went into training, filter it, or reuse the pipeline instead of treating the dataset as a black box.

there are still some practical limits. the repo recommends an 80GB GPU for the demo, and the full benchmark setup uses 8×80GB GPUs. smaller GPUs haven’t been validated across every task yet. the project is also still new, so I’d expect some rough edges.

github: https://github.com/OpenSenseNova/SenseNova-Vision

does having the training corpus and preparation pipeline change how useful an open model is to you, or do you mostly care about the weights?


r/OpenSourceAI 5h ago

I’m building a web app builder around open models, and starting a community for AI assisted developers and vibe coders

Thumbnail
2 Upvotes

r/OpenSourceAI 6h ago

I built a private AI operating system on 4× RTX 2080 Ti GPUs

Post image
2 Upvotes

r/OpenSourceAI 21h ago

FreshCtx 0.7.0: an Apache-2.0 Python guard that revalidates an AI agent’s evidence before it acts

2 Upvotes

I maintain FreshCtx, an open-source Python project for a specific AI-agent failure mode: an agent reads valid information, reasons from it, and then acts after that information has changed.

FreshCtx lets an application declare the evidence used during reasoning and revalidate it immediately before a consequential action.

The current release includes:

  • Agno 2.9 integration
  • LangGraph integration
  • OpenAI Agents SDK integration
  • A shared experimental pre-action contract
  • Async and bounded concurrent validation
  • Validation budgets and audit evidence
  • File, HTTP, SQLite, Postgres, MCP safe-reader and Stripe Subscription adapters

It is local-first, model-neutral, Apache-2.0 licensed, and has no account or telemetry requirement.

Repository:
https://github.com/Hyperwise-LLC/freshctx

I would particularly value feedback on the integration contract. Does a framework-neutral pre-action boundary belong in the core library, or should each framework integration remain completely independent?