Viewing profile — aazo11
aazo11
HN member- Joined
- Wed, Mar 20, 2019, 6:35 PM UTC
- HN karma
- 325
- Public activity
- 102 items
- HN profile
- View on Hacker News ↗
About aazo11
No profile information was provided.
Recent public activity
-
comment
Comment #44053301
I tested on-device LMs (Gemma, DeepSeek) across prompt cleanup, PII redaction, math, and general knowledge on my M2 Max laptop using LM Studio + DSPy. Some observations - Gemma-3 i…
- story
-
comment
Comment #43835147
The trend is that the length of tasks AI can do is doubling every 7 months. Accompanying YT video https://www.youtube.com/watch?v=evSFeqTZdqs
- story
-
comment
Comment #43798917
This is a huge unlock for on-device inference. The download time of larger models makes local inference unusable for non-technical users.
-
comment
Comment #43756622
A better solution would train/finetune the smaller model from the responses of the larger model and only push to the inference to the edge if the smaller model is performant and th…
-
comment
Comment #43756286
Thanks for calling that out. It was 32GB. I updated the post as well.
-
comment
Comment #43755923
Very interesting. I had not thought about gaming at all but that makes a lot of sense. I also agree the goal should not be to replace ChatGPT. I think ChatGPT is way overkill for a…
-
comment
Comment #43755873
They look awesome. Will try it out.
-
comment
Comment #43755847
Exactly. Why does this not exist yet?
-
comment
Comment #43755836
By "too hard" I do not mean getting started with them to run inference on a prompt. Ollama especially makes that quite easy. But as an application developer, I feel these platforms…
-
comment
Comment #43753891
I spent a couple of weeks trying out local inference solutions for a project. Wrote up my thoughts with some performance benchmarks in a blog. TLDR -- What these frameworks can do …
- story
-
comment
Comment #42488320
Great question! The purpose of github-assistant is to showcase the technologies that make it easy to build a tool/feature like this, not necessarily for it to be a stand-alone serv…
-
comment
Comment #42487566
Yes in the future. We share the source code in both commercial and non-commercial engagements already. Drop me a line at amir [at] relta.dev if interested.
-
comment
Comment #42485980
There will new data from the graphql API added over time. Would love your feedback on which data you like to see added https://docs.github.com/en/graphql
-
comment
Comment #42485942
No this currently only answers questions from the GitHub graphql API.
-
comment
Comment #42485937
We pull data from the GitHub API which includes data that that is not available from GitHub.com pages. Currently only PR, Issues, Commit and Star data is being loaded. You can also…
-
comment
Comment #42484469
Was able to reproduce and pushed an update. Thanks for calling this out.
-
comment
Comment #42483786
Hi -- strange that didn't work. Overall, the semantic layer is designed to provide very tight guardrails and not hallucinate. You can see the agent suggest changes to the semantic …
-
story
Show HN: GitHub-assistant – Natural language questions from your GitHub data
Simon(sfarshid) and I spend a lot of time on GitHub. As data nerds we put together a quick tool to explore your repository’s data. How it works: - Data Loading: We use dlt to pull …
-
comment
Comment #40476142
Right now the supported Vector stores are Chroma (which you can self-host), Pinecone and Astra. Adding a new vector store is quite easy: you just need to extend the VectorStore cla…
-
comment
Comment #40476099
There are organizations using Dataherald in production right now. The latency is ~20-30s and it takes some set up, so as long as those are not blockers it can be used in prod.
-
comment
Comment #40476072
Yes when you connect Dataherald to a DB it scans it and you can do exploratory queries.
-
comment
Comment #40473284
ORMs generally map around entities and dimensions. Users generally ask about metrics and measures, which can be expressed in aggregations and group bys. How ould the NLP+ORM system…