Elektrine lite

← Feed

@el_abuelo@programming.dev

Post #1693018

2026-04-18 17:54 UTC

Tell me more? It’s the only way I’m familiar with interacting with an LLM

Replies (1)

  • @zbyte64@awful.systems 2026-04-18 21:48

    Examples to consider: A code base with TODOs embedded will make fewer mistakes and spend less tokens than if you attempt to direct the LLM only with prompting. A file system gives an LLM more context than a flat file (or large prompt) with the same contents because a file system has a tree like structure and makes it less likely the LLM will ingest context it doesn’t need and confuse it Lastly consider the efficacy of providing it tools vs using agent skills which is another form of prompting. Giving an LLM a deterministic feedback loop beats tweaking your prompts every time

    Open ##1693017