diff --git a/go/internal/distill/consolidate.go b/go/internal/distill/consolidate.go index d9f9288..d4f9ce7 100644 --- a/go/internal/distill/consolidate.go +++ b/go/internal/distill/consolidate.go @@ -184,7 +184,7 @@ func (e *Engine) ConsolidateMemory(target MemoryCandidate, candidates []MemoryCa "model": e.LLMModel, "messages": []map[string]string{{"role": "user", "content": prompt}}, "temperature": 0.1, - "max_tokens": 300, + "max_tokens": 800, } jsonBody, err := json.Marshal(body) if err != nil { diff --git a/go/internal/distill/engine.go b/go/internal/distill/engine.go index 0847ef4..f5bab50 100644 --- a/go/internal/distill/engine.go +++ b/go/internal/distill/engine.go @@ -339,7 +339,7 @@ func (e *Engine) callLLM5D(content string) (LLMResponse, error) { {"role": "user", "content": prompt}, }, "temperature": 0.2, - "max_tokens": 600, + "max_tokens": 800, } jsonBody, err := json.Marshal(body)