mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
example(bruno): add image generation
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
parent
1a7be035d3
commit
d17a92eef3
@ -0,0 +1,25 @@
|
|||||||
|
meta {
|
||||||
|
name: Generate image
|
||||||
|
type: http
|
||||||
|
seq: 1
|
||||||
|
}
|
||||||
|
|
||||||
|
post {
|
||||||
|
url: {{PROTOCOL}}{{HOST}}:{{PORT}}/v1/images/generations
|
||||||
|
body: json
|
||||||
|
auth: none
|
||||||
|
}
|
||||||
|
|
||||||
|
headers {
|
||||||
|
Content-Type: application/json
|
||||||
|
}
|
||||||
|
|
||||||
|
body:json {
|
||||||
|
{
|
||||||
|
"prompt": "<positive prompt>|<negative prompt>",
|
||||||
|
"model": "model-name",
|
||||||
|
"step": 51,
|
||||||
|
"size": "1024x1024",
|
||||||
|
"image": ""
|
||||||
|
}
|
||||||
|
}
|
@ -15,10 +15,16 @@ headers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
body:json {
|
body:json {
|
||||||
{
|
{
|
||||||
"model": "{{DEFAULT_MODEL}}",
|
"model": "{{DEFAULT_MODEL}}",
|
||||||
"messages": [{"role": "user", "content": "How could one use friction to cook an egg?"}],
|
"messages": [
|
||||||
"max_tokens": 256,
|
{
|
||||||
"temperature": 0.2
|
"role": "user",
|
||||||
|
"content": "How could one use friction to cook an egg?"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"max_tokens": 256,
|
||||||
|
"temperature": 0.2,
|
||||||
|
"grammar": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user