mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-14 15:52:11 +02:00
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
16 lines
453 B
YAML
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
|