HackerTrans
TopNewTrendsCommentsPastAskShowJobs

parthsareen

no profile record

Submissions

Building Reliable AI Agents

parthsareen.com
1 points·by parthsareen·قبل 6 أشهر·0 comments

How to Train an LLM: Part 1

omkaark.com
20 points·by parthsareen·قبل 8 أشهر·3 comments

comments

parthsareen
·قبل 5 أشهر·discuss
Also recently added ollama launch claude if you want to connect to cloud models from there :)
parthsareen
·قبل 6 أشهر·discuss
Hey! One of the maintainers of Ollama. 8GB of VRAM is a bit tight for coding agents since their prompts are quite large. You could try playing with qwen3 and at least 16k context length to see how it works.
parthsareen
·قبل 7 أشهر·discuss
How much ram are you running with? Qwen3 and gpt-oss:20b punch a good bit above their weight. Personally use it for small agents.
parthsareen
·قبل 7 أشهر·discuss
You're welcome to go through the source: https://github.com/ollama/ollama/
parthsareen
·قبل 7 أشهر·discuss
Desktop app is open-source now.
parthsareen
·قبل 10 أشهر·discuss
Since we shipped web search with gpt-oss in the Ollama app I've personally been using that a lot more especially for research heavy tasks that I can shoot off. Plus with a 5090 or the new macs it's super fast.
parthsareen
·قبل 10 أشهر·discuss
Hi - author of the post. Yes it does! The "build a search agent" example can be used with a local model. I'd recommend trying qwen3 or gpt-oss
parthsareen
·قبل 10 أشهر·discuss
Hey! Author of the blogpost and I also work on Ollama's tool calling. There has been a big push on tool calling over the last year to improve the parsing. What's the issues you're running into with local tool use? What models are you using?
parthsareen
·قبل 10 أشهر·discuss
That's a great idea. Going to try this next :)
parthsareen
·قبل 10 أشهر·discuss
Hey! I'm the author of the post. We haven't optimized sampling yet so it's running linearly on the CPU. A lot of SOTA work either does this while the model is running the forward pass or does the masking on the GPU.

The greedy accept is so that the mask doesn't need to be computed. Planning to make this more efficient from either ends.
parthsareen
·قبل 10 أشهر·discuss
Thank you! Maybe not "perfect" but near-perfect is something we can expect. Models like the Osmosis structure which just structure data inspired some of that thinking (https://ollama.com/Osmosis/Osmosis-Structure-0.6B). Historically, JSON generation has been a latent capability of a model rather than a trained one, but that seems to be changing. gpt-oss was particularly trained for this type of behavior and so the token probabilities are heavily skewed to conform to JSON. Will be interesting to see the next batch of models!
parthsareen
·قبل 10 أشهر·discuss
Thanks for posting! Didn't expect this to get picked up – it was a bit of a draft haha. Happy to answer questions around structured outputs :)