From 7be93d1d1646c46bdabbb102bf511cca7d637e09 Mon Sep 17 00:00:00 2001 From: poimen Date: Tue, 8 Sep 2026 17:06:44 -0700 Subject: [PATCH] fix: remove duplicate PersistInput type definition Type already re-exported from pkg/types at top of file --- workflow/synthesis.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/workflow/synthesis.go b/workflow/synthesis.go index dac9339..f4e9254 100644 --- a/workflow/synthesis.go +++ b/workflow/synthesis.go @@ -123,14 +123,3 @@ func SynthesisWorkflow(ctx workflow.Context, input SynthesisInput) (*SynthesisRe return result, nil } - -// PersistInput groups all synthesis results for persistence. -type PersistInput struct { - ChunkID string `json:"chunk_id"` - Project string `json:"project"` - Source string `json:"source"` - Kind string `json:"kind"` - Entities []ExtractedEntity `json:"entities"` - Facts []ExtractedFact `json:"facts"` - Contradictions []ContradictionResult `json:"contradictions"` -}