trustgraph/dev-tools/proc-group/groups/image-to-text.yaml
Sunny Yang 40f01c123b
feat: pluggable image-to-text service with OpenAI vision backend (#1038)
Adds a full-stack image description service: schema, base class,                                                                  
OpenAI backend, gateway dispatch, client APIs (sync/async REST +
websocket), tg-describe-image CLI, IAM capability, and specs.                                                                     
                                                                                                                                    
Closes #879
2026-07-12 12:47:04 +01:00

16 lines
453 B
YAML

# Image-to-text. Outbound vision-model calls. Isolated for the same
# reason as the LLM group: the upstream API is the most likely thing to
# need restart (provider changes, model changes, API flakiness).
_defaults: &defaults
pubsub_backend: rabbitmq
rabbitmq_host: localhost
log_level: INFO
processors:
- class: trustgraph.model.image_to_text.openai.Processor
params:
<<: *defaults
id: image-to-text
max_output: 4096