Files
receipt-wrangler-api/internal/commands/receipt_processing_metadata.go
2024-06-13 08:13:41 -04:00

17 lines
778 B
Go

package commands
type ReceiptProcessingMetadata struct {
ReceiptProcessingSettingsIdRan uint
DidReceiptProcessingSettingsSucceed bool
FallbackReceiptProcessingSettingsIdRan uint
DidFallbackReceiptProcessingSettingsSucceed bool
RawResponse string
FallbackRawResponse string
PromptSystemTaskCommand UpsertSystemTaskCommand
FallbackPromptSystemTaskCommand UpsertSystemTaskCommand
OcrSystemTaskCommand UpsertSystemTaskCommand
ChatCompletionSystemTaskCommand UpsertSystemTaskCommand
FallbackOcrSystemTaskCommand UpsertSystemTaskCommand
FallbackChatCompletionSystemTaskCommand UpsertSystemTaskCommand
}