Function
writeCacheStepValue
(builder *strings.Builder, key string, value any)
Source from the content-addressed store, hash-verified
| 471 | } |
| 472 | |
| 473 | func writeCacheStepValue(builder *strings.Builder, key string, value any) { |
| 474 | if value != nil { |
| 475 | fmt.Fprintf(builder, " %s: %v\n", key, value) |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | // generateCacheMemorySteps generates cache setup steps (directory creation, restore, and git init) for the cache-memory configuration. |
| 480 | // Cache-memory provides a simple file share that LLMs can read/write freely. |
Tested by
no test coverage detected