mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-15 00:02:11 +02:00
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
This commit is contained in:
parent
9136526863
commit
40f01c123b
42 changed files with 1845 additions and 14 deletions
|
|
@ -52,7 +52,7 @@ info:
|
|||
Workspace context comes from the authenticated token.
|
||||
|
||||
Accessed via `/api/v1/flow/{flow}/service/{kind}`:
|
||||
- AI services: agent, text-completion, prompt, RAG (document/graph)
|
||||
- AI services: agent, text-completion, image-to-text, prompt, RAG (document/graph)
|
||||
- Embeddings: embeddings, graph-embeddings, document-embeddings
|
||||
- Query: triples, rows, nlp-query, structured-query, sparql-query, row-embeddings
|
||||
- Data loading: text-load, document-load
|
||||
|
|
@ -136,6 +136,8 @@ paths:
|
|||
$ref: './paths/flow/graph-rag.yaml'
|
||||
/api/v1/flow/{flow}/service/text-completion:
|
||||
$ref: './paths/flow/text-completion.yaml'
|
||||
/api/v1/flow/{flow}/service/image-to-text:
|
||||
$ref: './paths/flow/image-to-text.yaml'
|
||||
/api/v1/flow/{flow}/service/prompt:
|
||||
$ref: './paths/flow/prompt.yaml'
|
||||
/api/v1/flow/{flow}/service/embeddings:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue