mirror of
https://github.com/Receipt-Wrangler/receipt-wrangler-api.git
synced 2026-01-20 01:50:03 -06:00
11 lines
267 B
Go
11 lines
267 B
Go
package structs
|
|
|
|
type PromptTemplateVariable string
|
|
|
|
const (
|
|
CATEGORIES PromptTemplateVariable = "@categories"
|
|
TAGS PromptTemplateVariable = "@tags"
|
|
OCR_TEXT PromptTemplateVariable = "@ocrText"
|
|
CURRENT_YEAR PromptTemplateVariable = "@currentYear"
|
|
)
|