|
|
|
|
|
by knexer
1030 days ago
|
|
This is a really natural extension of CoT. I was experimenting for a month or two with a similar concept in a hobby project this past spring: https://github.com/knexer/llmtaskgraph . I'm really excited to see more people exploring in this direction! I was focusing more on an engineering perspective; modeling a complex LLM-and-code process as a dependency graph makes it easy to: - add tracing to continuously measure and monitor even post-deployment - perform reproducible experiments, a la time-rewinding debugging - speed up iteration on prompts by caching the parts of the program you aren't working on right now My test case was using GPT4 to implement the operators in a genetic algorithm, which tbh is a fascinating concept of its own. I drifted away after a while (curse that ADHD) but had a great time with the project in the meantime. |
|