Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions priv/llm_db/local/xai/grok-imagine-image.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
id = "grok-imagine-image"
name = "Grok Imagine Image"
family = "grok-imagine"

[modalities]
input = ["text"]
output = ["image"]

[capabilities]
chat = false
embeddings = false

[capabilities.json]
native = false
schema = false
strict = false

[capabilities.reasoning]
enabled = false

[capabilities.streaming]
text = false
tool_calls = false

[capabilities.tools]
enabled = false

[pricing]
currency = "USD"
merge = "merge_by_id"

[[pricing.components]]
id = "image.input"
kind = "image"
unit = "image"
per = 1
rate = 0.002

[[pricing.components]]
id = "image.generated"
kind = "image"
unit = "image"
per = 1
rate = 0.02

[extra]
api = "images"
2 changes: 1 addition & 1 deletion priv/llm_db/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"generated_at": "2026-02-01T19:46:04.615050Z",
"generated_at": "2026-02-02T02:27:37.800922Z",
"providers": [
"302ai",
"abacus",
Expand Down
55 changes: 50 additions & 5 deletions priv/llm_db/providers/xai.json
Original file line number Diff line number Diff line change
Expand Up @@ -1090,23 +1090,68 @@
"grok-imagine-image": {
"aliases": [],
"base_url": null,
"capabilities": null,
"capabilities": {
"chat": false,
"embeddings": false,
"json": {
"native": false,
"schema": false,
"strict": false
},
"reasoning": {
"enabled": false
},
"streaming": {
"text": false,
"tool_calls": false
},
"tools": {
"enabled": false
}
},
"cost": null,
"deprecated": false,
"extra": {
"api": "images",
"created": 1769558400,
"owned_by": "xai"
},
"family": null,
"family": "grok-imagine",
"id": "grok-imagine-image",
"knowledge": null,
"last_updated": null,
"lifecycle": null,
"limits": null,
"modalities": null,
"modalities": {
"input": [
"text"
],
"output": [
"image"
]
},
"model": null,
"name": null,
"pricing": null,
"name": "Grok Imagine Image",
"pricing": {
"components": [
{
"id": "image.input",
"kind": "image",
"per": 1,
"rate": 0.002,
"unit": "image"
},
{
"id": "image.generated",
"kind": "image",
"per": 1,
"rate": 0.02,
"unit": "image"
}
],
"currency": "USD",
"merge": "merge_by_id"
},
"provider": "xai",
"provider_model_id": null,
"release_date": null,
Expand Down