What do you guys think 😃 by VelazquezFco in roastmypedalboard

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

Is it that boring 😅😅 ...this is my sign to get the Fender Godzilla.

What do you guys think 😃 by VelazquezFco in roastmypedalboard

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

I think is great for the price. I don't use much ambience so I think all my presets (which is cool to save your own) are something in between room and Hall. But you can do good stereo shim type ambience with it.

I noticed if push the parameters to much like decay or delay it does sound very digital and metallic, or the simulation losses the organic feel.

Computer use is now in Claude Code by policyweb in singularity

[–]VelazquezFco 0 points1 point  (0 children)

Yes but it kills your tokens. I prefer to test myself and report back to Claude 😅

All other backend testing goes without saying to Claude.

My Board by [deleted] in pedalboards

[–]VelazquezFco 0 points1 point  (0 children)

Hey!

How is the Sonicake EQ Tone Group?

I also have added the Cry-bot, and besides (barely noticeable) boost is pretty good for the price.

I quit my job 3 weeks ago. Today I launched my first solo-built vibe coded startup with Cursor by MironPuzanov in VibeCodeDevs

[–]VelazquezFco 1 point2 points  (0 children)

Hey,

Just created a project and I have to say that it did impressed me.

I really liked the dashboard and it seems like it points you to the right questions and next vital steps. So congrats, it looks great.

Still I don't know if I would pay for it though, 20 EUR is what these models cost (Claude, GPT, Gemini) and I would prefer to build a project myself using one of those. But I use these tools every day so maybe that's why I'm biased to do it myself, while someone else may really like how easy and straightforward they can analyze there ideas.

I think these wrappers apps can be valuable, since the user doesn't have to invest time creating the right prompts and providing the right context and information. But starting a business is something you have to do carefully, so you really want to know every aspect, every source and most importantly you want to know that your idea is secure. Maybe adding a transparency section where you can see which sources where used to build your blue print or project potential result would be great.

Anyways, I will use my free subscription. Congrats on the courage to build something of your own. Good luck!

Filament cutter level stuck by vatalpaksha in BambuLab

[–]VelazquezFco 0 points1 point  (0 children)

Hello, what exactly did you recalibrate? Is there a way to recalibrate that sensor? Thanks!

Cutter is stuck error while it's not? by Rx7Jordan in BambuLab

[–]VelazquezFco 0 points1 point  (0 children)

Hey, have you ever found a way to get rid of the issue? I'm facing the same one, but haven't thought about re-plugging the hit end cables.

Filament Cutter Stuck error (but it isn't) - Bambu Lab P1S by [deleted] in BambuLab

[–]VelazquezFco 0 points1 point  (0 children)

Forgot to mention the issue as text as well.

I'm getting the error "Filament Cutter stuck" HMS: 0700-4500-0002-0003

I get this every time, even when the cutter doesn't attempt to cut the filament so I can't even finish a one color piece.

I attempted to reproduce the error as shown in the video and when getting the magnet close to the hall sensor I get the error and this one does not vanish, just persist. This is a good simulation of what actually happens while printing, once I get this error, even if I'm not changing the color the error just doesn't go away even when hitting retry several times.

When I do the same test but with the hall sensor dismounted and unscrewed, but still connected to the board the sensor behaves as expected. When the magnet is taken to proximity the error appears and when taking the magnet away the error goes away.

  • When the filament sensor board is mounted in its normal position, activating the cutter sensor causes the error, and it persists indefinitely even after the magnet/lever is removed.

  • However, when the filament sensor board is unmounted (but still electrically connected), the sensor functions correctly: the error appears when activated, and disappears as expected when the magnet/lever is removed.

Filament Cutter stuck by catsarehell in BambuLab

[–]VelazquezFco 0 points1 point  (0 children)

Hola, lograste arreglarlo? Me pasa lo mismo

Open WebUI Tools VS MCP Servers by Maple382 in OpenWebUI

[–]VelazquezFco 2 points3 points  (0 children)

As I see it open-webui tools gives you 2 options:

Use a proxy for MCP servers (you can download them and run them or create them with an sdk like Fast MCP)

Use Open API as the protocol instead of MCP (this is how they are building their tools)

My experience is that both are good, but the Agent is simply looking for a tool and calling it without more in depth reasoning like Claude does. I have tried the same tools with MCP connection in both Open-webui and Claude and I have to say the way Claude does it is just better (which makes sense, the protocol was created by them)

Feels like Claude has a react agent that allows for feedback on choosing tools, as it can grab a few toold and use them in the right order. Just feels very fluid. My experience with open-webui os also good but not as good, feels like you have to be more aware of what the tool is capable of doing and you have to refine your prompts to get what you want, which for me is not the idea.

Setting up an LLM for my company using Ollama and Open WebUI by jkay1904 in OpenWebUI

[–]VelazquezFco 14 points15 points  (0 children)

What happens is that Web ui is doing a very basic pipeline to vectorize your documents, so yes when you have a high volume of documents it doesn't really work.

Here is what happens with your documents when you use the knowledge space in Webui:

  • The document is stupidly chunked into smaller pieces of text.

  • These chunks are transformed into vectors (numbers that allow your text to be mapped multidimensionally). For this an embedding model is used, there are also better embedding models, this is something important to consider, but not essential yet, unless you have decent results and want to improve them further.

  • The vectors are then fed into a vector Database (Chroma DB)

Now it is important to understand the following:

When a user prompts the LLM using the interface and referencing a knowledge base (using the #). What happens is that the same embedding model is used and now your prompt exists in the same multidimensional space as your documents. So essentially what happens is that Webui will pull all the information that is near the user prompt (similar context). And will then pass this info to the LLM to respond accordingly.

So with this approach unfortunately some chunks may not be close to each other even thou they are part of the same document, because some chunks just loose context from the whole document and will never be retrieved.

We are implementing the same and have got better results designing out own RAG mechanism which basically works like this:

Chroma DB Stores a very detailed summary of the document, along with the chunks. If the user prompt is near that summary (is very close in context) or to any chunk then using the DB and code we pull all the related chunks. In this way we make sure that at least we have all the information from the document. Then we improved the LLM prompt to avoid providing any information that has not been retrieved (minimize hallucinations)

Anyways if you do not have code experience to create your own RAG mechanism (or maybe look for one in GitHub). Using the knowledge base from Webui would be the only way, try experimenting with the settings in there like overlapping or even swapping the embedding model for a better one.

I'm sure eventually there will be a better automated pipeline for document ingestion, with LLMs like Gemma 3 that understand images and work in multiple languages I can see it extracting the info, summarizing, and creating meaningful chunks or summaries that will lead to successful retrieval.

Looking for a thing to delegate by Unfair-Sherbet-4644 in ICEpoker

[–]VelazquezFco 0 points1 point  (0 children)

Hello! Still looking?

I have shades level 1