mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-14 15:52: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
|
|
@ -29,11 +29,14 @@ def main():
|
|||
("trustgraph", "Base trustgraph package"),
|
||||
("trustgraph.base", "Base classes"),
|
||||
("trustgraph.base.llm_service", "LLM service base class"),
|
||||
("trustgraph.base.image_to_text_service", "Image-to-text service base class"),
|
||||
("trustgraph.schema", "Schema definitions"),
|
||||
("trustgraph.exceptions", "Exception classes"),
|
||||
("trustgraph.model", "Model package"),
|
||||
("trustgraph.model.text_completion", "Text completion package"),
|
||||
("trustgraph.model.text_completion.vertexai", "VertexAI package"),
|
||||
("trustgraph.model.image_to_text", "Image-to-text package"),
|
||||
("trustgraph.model.image_to_text.openai", "Image-to-text OpenAI package"),
|
||||
]
|
||||
|
||||
success_count = 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue