jyoung105
/
deepseek-vl-1.3b
- Public
- 2 runs
Run jyoung105/deepseek-vl-1.3b with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
image |
string
|
Input image for inpainting.
|
|
prompt |
string
|
Input prompt.
|
|
sample |
boolean
|
False
|
Whether do sample or not.
|
top_k |
integer
|
5
Max: 50 |
Top k, if sample is enabled.
|
top_p |
number
|
0.5
Max: 1 |
Top p, if sample is enabled.
|
temperature |
number
|
0.3
Max: 1 |
Temperature, if sample is enabled.
|
max_tokens |
integer
|
512
Min: 256 Max: 512 |
Maximum number of tokens.
|
{
"type": "object",
"title": "Input",
"properties": {
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"x-order": 0,
"description": "Input image for inpainting."
},
"top_k": {
"type": "integer",
"title": "Top K",
"default": 5,
"maximum": 50,
"minimum": 0,
"x-order": 3,
"description": "Top k, if sample is enabled."
},
"top_p": {
"type": "number",
"title": "Top P",
"default": 0.5,
"maximum": 1,
"minimum": 0,
"x-order": 4,
"description": "Top p, if sample is enabled."
},
"prompt": {
"type": "string",
"title": "Prompt",
"x-order": 1,
"description": "Input prompt."
},
"sample": {
"type": "boolean",
"title": "Sample",
"default": false,
"x-order": 2,
"description": "Whether do sample or not."
},
"max_tokens": {
"type": "integer",
"title": "Max Tokens",
"default": 512,
"maximum": 512,
"minimum": 256,
"x-order": 6,
"description": "Maximum number of tokens."
},
"temperature": {
"type": "number",
"title": "Temperature",
"default": 0.3,
"maximum": 1,
"minimum": 0,
"x-order": 5,
"description": "Temperature, if sample is enabled."
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output"
}