HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tested1

no profile record

Submissions

[untitled]

1 points·by tested1·vor 6 Monaten·0 comments

[untitled]

1 points·by tested1·vor 6 Monaten·0 comments

[untitled]

1 points·by tested1·vor 10 Monaten·0 comments

[untitled]

1 points·by tested1·vor 11 Monaten·0 comments

[untitled]

1 points·by tested1·vor 11 Monaten·0 comments

Claude Sonnet 4 vs. Kimi K2 vs. Gemini 2.5 Pro: Which AI ships production code?

forgecode.dev
5 points·by tested1·vor 11 Monaten·0 comments

MCP security vulnerabilities and attack vectors

forgecode.dev
159 points·by tested1·vor 12 Monaten·19 comments

[untitled]

1 points·by tested1·letztes Jahr·0 comments

Show HN: MistralOCR with Web Search ADK Agent App

github.com
2 points·by tested1·letztes Jahr·0 comments

How to Build a Team of 5 Agents Using Google ADK and Nebius (Llama and Nemotron)

youtu.be
4 points·by tested1·letztes Jahr·0 comments

Show HN: A new fork of OpenDeepResearcher with DeepSeek R1

youtube.com
9 points·by tested1·letztes Jahr·2 comments

Open-DeepThink-Researcher: Open-Source Deep Researcher That Can Think

github.com
5 points·by tested1·letztes Jahr·1 comments

KitOps v1.0.0 is now available, featuring Hugging Face to ModelKit import

jozu.com
6 points·by tested1·letztes Jahr·2 comments

Show HN: Discover facts about anything, powered by Qwen2-VL

patakaro.vercel.app
2 points·by tested1·letztes Jahr·0 comments

Creating your own AI-powered code generator and reviewer

nebius.com
2 points·by tested1·letztes Jahr·1 comments

Building Real-Time Presence Features Like Figma in Your App: Challenge or Not?

old.reddit.com
1 points·by tested1·vor 2 Jahren·0 comments

comments

tested1
·vor 10 Monaten·discuss
When LLM fine-tuning was the hot topic, it felt like we were making models smarter. But the real challenge now? Making them remember, Giving proper Contexts.

AI forgets too quickly. I asked an AI (Qwen-Code CLI) to write code in JS, and a few steps later it was spitting out random backend code in Python. Basically (burnt my 3 million token in loop doing nothing), it wasn’t pulling the right context from the code files.

Now that everyone is shipping agents and talking about context engineering, I keep coming back to the same point: AI memory is just as important as reasoning or tool use. Without solid memory, agents feel more like stateless bots than useful asset.

As developers, we have been trying a bunch of different ways to fix this, and what’s important is - we keep circling back to databases.

Here’s how I’ve seen the progression:

Prompt engineering approach → just feed the model long history or fine-tune. Vector DBs (RAG) approach→ semantic recall using embeddings. Graph or Entity based approach → reasoning over entities + relationships. Hybrid systems → mix of vectors, graphs, key-value. Traditional SQL → reliable, structured, well-tested. Interesting part?: the “newest” solutions are basically reinventing what databases have done for decades only now they’re being reimagined for Ai and agents.

I looked into all of these (with pros/cons + recent research) and also looked at some Memory layers like Mem0, Letta, Zep and one more interesting tool - Memori, a new open-source memory engine that adds memory layers on top of traditional SQL.

Curious, if you are building/adding memory for your agent, which approach would you lean on first - vectors, graphs, new memory tools or good old SQL?

Because shipping simple AI agents is easy - but memory and context is very crucial when you’re building production-grade agents.

I also wrote down the full breakdown, if someone wants to read!
tested1
·letztes Jahr·discuss
Thanks, I saw someone building local researcher on YT, found 1 repo https://github.com/LearningCircuit/local-deep-research . Local ones are with ollama mostly
tested1
·letztes Jahr·discuss
I was exploring KitOps, an open-source tool designed to simplify the packaging, sharing and deployment of AI/ML models. It builds on the concept of containers (like Docker) but focused on the implementation for ml models, making workflows easier for developers and data scientists.

Some highlights from their v1.0 release:

Dev Mode: Run models locally for quick inference without extra setup. PyKitOps SDK: Package models directly in Python environments like Jupyter, no context switching required. CI/CD Integrations: Modules for tools like Dagger and MLflow make automation a breeze. Hugging Face Imports: Easily convert Hugging Face repositories into ModelKits with a single command.

It’s a good project with some exciting use cases, but I’d love to hear what others think or if you have used it.

Check it out: kitops.ml Docs: kitops.ml/docs/pykitops/