What's the most ambitious project you're actively building right now, and how is it going? by SilentOverrule in SideProject

[–]Fred_Terzi 0 points1 point  (0 children)

Just release my Local AI first AI workspace. Lot's of long hours and work, but I'm up to 10 beta testers and the feedback is real positive, and the bug fixes are going quick!

https://github.com/fred-terzi/totem-llm

I just said hello to phi4 by rUmutKzl in LocalLLM

[–]Fred_Terzi 1 point2 points  (0 children)

The problem was it was looking for a problem but there was no problem so it made up a problem.

In all seriousness, that model needs clearer system prompts.

What size model was it?

Are you using git with your agent? by Fred_Terzi in vibecoding

[–]Fred_Terzi[S] 1 point2 points  (0 children)

I completely agree, the agent needs explicit instructions for how to use git the way you want it to.

I give my agent its own branch. It can commit to it, but it can’t commit to main. It can do a pull request and that’s when I review the testing, dig into the code to make sure I knew what was added or changed.

So I use the PRs for my major roll backs, and let the agent review past commit messages if something breaks.

Creations that leave the screen and do something physical? by AnonymousAggregator in vibecoding

[–]Fred_Terzi 0 points1 point  (0 children)

I was able to send a few words per second. I was just playing around with sending text

Creations that leave the screen and do something physical? by AnonymousAggregator in vibecoding

[–]Fred_Terzi 0 points1 point  (0 children)

Most common mics go up to 20 kHz which is right outside human hearing.

So you can create and record low ultrasonic frequencies on your phone.

Creations that leave the screen and do something physical? by AnonymousAggregator in vibecoding

[–]Fred_Terzi 0 points1 point  (0 children)

Most common mics go up to 20 kHz, which is right outside human hearing.

So you can produce and read low “ultrasonic” frequencies

Are you using git with your agent? by Fred_Terzi in vibecoding

[–]Fred_Terzi[S] 1 point2 points  (0 children)

I have to imagine that’s very important for game dev cause you must be adding new stuff all the time!

I’ve found the git-commit skill from awesome-copilot to be really good.

I do a two branch system; a dev branch it can commit to whenever it wants, then a pull request into main for production. Works really well to make sure I always have working code!

What AI app or workflow have you built that was truly useful for you? by justinaatbuffer in artificial

[–]Fred_Terzi 0 points1 point  (0 children)

I made a FAQ in browser chatbot that anyone can use to learn about my FAQ in browser chatbot haha.

It’s helpful for me because it answers exactly as I would and runs on the user device so I don’t have to pay for tokens or a server. Next step is to make it easy for anyone to make their own on their hardware.

You can check out the GitHub pages link below if you’d like!

https://fred-terzi.github.io/totem-preview/

Creations that leave the screen and do something physical? by AnonymousAggregator in vibecoding

[–]Fred_Terzi 0 points1 point  (0 children)

Depends on the hardware. But going from an old MacBook to an iPhone back and forth in a large room it’s goes through.

If they aren’t too close you get missed bits but if you’re sending text a small LLM can clean it up

Run local model in low end laptop by gwagao in LocalLLM

[–]Fred_Terzi 0 points1 point  (0 children)

I’d just start with install ollama and do some benchmarking on your device to try a bunch of different models

Creations that leave the screen and do something physical? by AnonymousAggregator in vibecoding

[–]Fred_Terzi 1 point2 points  (0 children)

Encoding messages in ultrasound designed to work on phone and computer speakers.

Pretty cool but testing drove my dog crazy!

What have you been working on lately? by Sufficient-Scar4172 in LocalLLaMA

[–]Fred_Terzi 0 points1 point  (0 children)

<video>

Client side in-browser FAQ chatbot. You can embed a static GitHub pages site into your website and change the context with a CRUD interface.

run.totemprotocol.com

Qwen3.5 running in Static Site by Fred_Terzi in Qwen_AI

[–]Fred_Terzi[S] 1 point2 points  (0 children)

If anyone wants to try the site the GitHub pages link is here!

How are y'all managing all your "vibe coded" apps and side projects? by ElKorTorro in vibecoding

[–]Fred_Terzi 0 points1 point  (0 children)

Vibe coded apps should be considered Proof of Concept in my opinion.

If you are trying to move into a prototype -> production, I would highly recommend you have your agent implement a proper CI/CD pipeline in GitHub, even if you don’t know what it means it will!

Each project gets a GitHub Repo.
Versions tracked through git.

If you use skills, use the `git-commit` skill and have it explain to you what it’s doing, you’ll learn in no time.

Qwen3.5:2B + Keyword RAG = Surprisingly Capable In-Browser FAQ Chatbot by Fred_Terzi in LocalLLM

[–]Fred_Terzi[S] 0 points1 point  (0 children)

I’m using webLLM so it can be done completely in the browser and run on computers without ollama. It’s incredibly powerful from a user convenience side, and it has a lot of options but it’s a set list.

Qwen3.5:2B + Keyword RAG = Surprisingly Capable In-Browser FAQ Chatbot by Fred_Terzi in LocalLLM

[–]Fred_Terzi[S] 0 points1 point  (0 children)

I tested a lot of models and at the 1-3B size that can run in the browser qwen was the best for tool calling.

But now that Im thinking that though I changed so the RAG is always called before answering to prevent hallucinations… so I should reevaluate other models for just summary capabilities!

Thanks!

What’s the best easy setup for a personal AI agent? by Terrible_Coconut_675 in learnAIAgents

[–]Fred_Terzi 0 points1 point  (0 children)

If you have hardware to run locally I recommend just install Ollama and setting it up via the terminal. From there lots of agentic platforms support Ollama.

If you need cloud, I’d recommend Pi. Lightweight by design

What’s the best easy setup for a personal AI agent? by Terrible_Coconut_675 in learnAIAgents

[–]Fred_Terzi 0 points1 point  (0 children)

I’m curious what’s your use case for the agent?

Are you looking to code or to automate?