2 ms·
“ determinist harness around the agent ” Can you explain what this means?
by vjvjvjvjghv 19d ago
“ determinist harness around the agent ”
Can you explain what this means?
- chickensong 19d agoIf you can express something deterministically with code, it's better to do that rather than have an agent do it, because it's faster, cheaper, and deterministic. E.g. you regularly copy file A to file B. You can ask the agent to do it, or you can write a script and have the agent call the script via skill. That's the beginning of a harness. Eventually you arrive at building custom software that does a lot in the traditional way, but delegates certain tasks to the model where it makes sense or it's non-trivial/impossible to express via code.
- vjvjvjvjghv 19d agoThat makes sense. Sounds similar to what I am usually doing. I let AI write a python script or similar, review it and then use the python script. I don't think I would let AI do anything important directly.