|
|
|
|
|
by jrvarela56
750 days ago
|
|
This requires: - function calling: the LLM can take action - Integration to your runtime: functions called by the LLM can run your tests, linters, compiler, etc - Agents: the LLM can define what to do, execute a few tasks, and keep going with more tasks generated by itself - Codebase/filesystem access: could be RAG or just ability to read files in your project - Graceful integration of the human in the agent loop: this is just an iteration of the agent but it seems useful for it to ask inputs from the programmer. Maybe even something more sophisticated where the agent waits for the programmer to change stuff in the codebase |
|