Merged in feature/remove-query (pull request #201)

remove query from codebase part 1

* remove query

* fix localstack run
This commit is contained in:
Jay Brown
2026-01-14 17:59:04 +00:00
parent ebf47c6013
commit 0ddae4f91e
167 changed files with 1059 additions and 20641 deletions
+2 -3
View File
@@ -4,7 +4,8 @@
//
// If the document text is not already extracted according to the collector standards, trigger the textract job for text detection.
//
// Otherwise, add an event to the QUERYSYNC queue.
// This is the terminal step in the document processing pipeline.
// Query processing has been removed - pipeline ends after text extraction.
package main
import (
@@ -17,7 +18,6 @@ import (
"queryorchestration/internal/server/runner"
"queryorchestration/internal/serviceconfig/build"
"queryorchestration/internal/serviceconfig/objectstore"
"queryorchestration/internal/serviceconfig/queue/querysync"
"queryorchestration/internal/serviceconfig/textract"
_ "github.com/lib/pq"
@@ -26,7 +26,6 @@ import (
type DocTextConfig struct {
runner.BaseConfig[doctextrunner.Body]
textract.TextractConfig
querysync.QuerySyncConfig
objectstore.ObjectStoreConfig
}