HackerTrans
TopNewTrendsCommentsPastAskShowJobs

sudoapps

no profile record

Submissions

[untitled]

1 points·by sudoapps·20 dagen geleden·0 comments

[untitled]

1 points·by sudoapps·3 maanden geleden·0 comments

[untitled]

1 points·by sudoapps·3 maanden geleden·0 comments

[untitled]

1 points·by sudoapps·3 maanden geleden·0 comments

[untitled]

1 points·by sudoapps·4 maanden geleden·0 comments

[untitled]

1 points·by sudoapps·4 maanden geleden·0 comments

Show HN: Lightweight agent proxy for monitoring sensitive data exposure

github.com
1 points·by sudoapps·4 maanden geleden·0 comments

Codex built my startup in a weekend

sudoapps.substack.com
3 points·by sudoapps·4 maanden geleden·1 comments

Show HN: Night Watch, zero-dependency DevOps agent

github.com
2 points·by sudoapps·5 maanden geleden·0 comments

[untitled]

1 points·by sudoapps·2 jaar geleden·0 comments

Show HN: Small Hours, An AI-powered observability and root cause analysis

smallhours.dev
3 points·by sudoapps·2 jaar geleden·0 comments

[untitled]

1 points·by sudoapps·3 jaar geleden·0 comments

[untitled]

1 points·by sudoapps·3 jaar geleden·0 comments

Gorilla LLM: Going deeper with the team at UC Berkeley

sudoapps.substack.com
2 points·by sudoapps·3 jaar geleden·0 comments

Gorilla LLM: An interview with the team at UC Berkeley

sudoapps.substack.com
2 points·by sudoapps·3 jaar geleden·0 comments

The Age of Agents: Can multiple LLM agents improve outputs?

sudoapps.substack.com
2 points·by sudoapps·3 jaar geleden·3 comments

The Age of Agents

sudoapps.substack.com
2 points·by sudoapps·3 jaar geleden·1 comments

Giving GPT “Infinite” Knowledge

sudoapps.substack.com
121 points·by sudoapps·3 jaar geleden·86 comments

Technical Dive into AutoGPT

sudoapps.substack.com
2 points·by sudoapps·3 jaar geleden·1 comments

comments

sudoapps
·3 maanden geleden·discuss
Awesome! Let me know if you run into any issues with the setup.
sudoapps
·3 maanden geleden·discuss
Coding agents have changed how I build. Constantly switching between the terminal and an IDE started to feel inefficient, so I wanted a better terminal-first setup where I could manage multiple agent sessions and make quick edits without the overhead of a full IDE. So I built Helm for myself: https://github.com/samirkhoja/helm
sudoapps
·3 maanden geleden·discuss
Coding agents should help us reduce dependencies overall. I agree Go is already best positioned as a language for this. Using random dependencies for some small feature seems archaic now.
sudoapps
·4 maanden geleden·discuss
Hot take - Local LLM computing will move to stationary, always on devices (Mac mini & studio). Developers and users will move to lighter, portable devices to interface with their long running agent workers (MacBook Airs & iPads).
sudoapps
·4 maanden geleden·discuss
Codex built my old startup in a weekend. What took me a few months to build 2+ years ago can now be done with coding agents in 2 days. The last couple months feel like a step change with Codex and Claude.
sudoapps
·3 jaar geleden·discuss
How do others feel about the pace of innovation in AI? Is there ever a reason to slow down advancements in a given field?
sudoapps
·3 jaar geleden·discuss
Speed and performance improvements like this are why VSCode has passed Atom and other editors over time.
sudoapps
·3 jaar geleden·discuss
Very similar to a consensus network. That is probably the future of LLM agents.
sudoapps
·3 jaar geleden·discuss
This was a quick experiment on creating multiple LLM (GPT) agents with their own objective to see if outputs can be improved.
sudoapps
·3 jaar geleden·discuss
I can see this being useful as a specialized (fine-tuned) LLM in a chain of LLMs for full autonomy
sudoapps
·3 jaar geleden·discuss
Autonomous agents could be the next evolution of AI, extending the capabilities of LLMs. Interested to see which agent implementations seem the most promising today.
sudoapps
·3 jaar geleden·discuss
As this LLM agent architecture continues to evolve and improve, we will probably see a lot of incredible products built on top of it.
sudoapps
·3 jaar geleden·discuss
This is really interesting. Could this lead to eventually being able to deconstruct these "black-boxes" to remove proprietary data or enforce legal issues?
sudoapps
·3 jaar geleden·discuss
Completely agree
sudoapps
·3 jaar geleden·discuss
This wasn't mean't to say that all training would stop. I think, to some extent, the model won't need additional recent data (that is already similar in structure to what it has) to better understand language and interpret the next set of characters. I could be completely wrong, but I still think techniques like transformers, RLHF and of course others will still exist and evolve to eventually get to some higher intelligence level.
sudoapps
·3 jaar geleden·discuss
OpenAI doesn't let you fine-tune GPT-4 or GPT-3.5 yet (https://platform.openai.com/docs/guides/fine-tuning), but fine-tuning models on a set of documents is still an option but not really scalable if you want to keep feeding it more relevant information over time. I guess it could depend on the base model you are using and its size.
sudoapps
·3 jaar geleden·discuss
> But then I see model context length getting longer and longer just within the transformer architecture and the training engineering going on.

Do you have any references to this? Seems really interesting if that can be a long term approach.
sudoapps
·3 jaar geleden·discuss
The article is definitely still high level and mean't to provide enough understanding of what capabilities are today. Some of what you are mentioning goes deeper on how you take these learnings/tools and come up with the any number of solutions to fit the problem you are solving for.

> "Do you use the whole document as context directly? Do you summarize the documents first using the LLM (now the risk of hallucination in this step is added)?"

In my opinion the best approach is to take a large document and break it down into chunks before storing as embeddings and only querying back the relevant passages (chunks).

> "What about that trick where you shrink a whole document of context down to the embedding space of a single token (which is how ChatGPT is remembering the previous conversations)"

Not sure I follow here but seems interesting if possible, do you have any references?

> "What about simply asking the LLM to craft its own search prompt to the DB given the user input, rather than returning articles that semantically match the query the closest? This would also make hybird search (keyword or bm25 + embeddings) more viable in the context of combining it with an LLM"

This is definitely doable but just adds to the overall processing/latency (if that is a concern).
sudoapps
·3 jaar geleden·discuss
A lot of what prompting has turned into seems silly to me too, but it has shown to be effective (at least with GPT-4).
sudoapps
·3 jaar geleden·discuss
Agreed, GPT answering based on its own training data has been the best experience by far (aside from hallucinations) and comparing against that is difficult. Embeddings might not even be the long term solution. I think it's still early to really know for certain but models are already getting better at interpreting with less overall training data so there are bound to be some new ideas.