Skip to content

Commit 789e422

Browse files
delineation
1 parent f756cf6 commit 789e422

File tree

6 files changed

+245
-107
lines changed

6 files changed

+245
-107
lines changed

docs/client.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ client = PixyClient(api_key)
5656
properties = ImageGenProperties(
5757
engine = "photon_flash",
5858
aspect_ratio = "1:1",
59-
delination = "a red kite flying over the sea",
59+
delineation = "a red kite flying over the sea",
6060
context = [{}],
6161
enhance_prompt = True
6262
)
@@ -369,7 +369,7 @@ client = PixyClient(api_key)
369369

370370
generation_type = "image"
371371
uid = "desired_uid"
372-
properties = {"delination": "a blue kite flying over a green valley"}
372+
properties = {"delineation": "a blue kite flying over a green valley"}
373373

374374
response = client.update(generation_type, uid, properties)
375375

docs/schemas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Represents the properties for generating an image.
2727
}
2828
```
2929

30-
* delination<span style="color:red">*</span> (str): The textual prompt for image generation.
30+
* delineation<span style="color:red">*</span> (str): The textual prompt for image generation.
3131
* context (List [dict] | None): <span style="color:red">The context for image generation.</span>
3232
* enhance_prompt (bool | None): Whether to enhance the prompt with an automated assitance or not.
3333

@@ -39,7 +39,7 @@ from core.schemas import ImageGenProperties
3939
properties = ImageGenProperties(
4040
engine = "photon_flash",
4141
aspect_ratio = "1:1",
42-
delination = "a red kite flying over the sea",
42+
delineation = "a red kite flying over the sea",
4343
context = [{}],
4444
enhance_prompt = True
4545
)

docs/utils.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ generation_type = "image"
4747
properties = ImageGenProperties(
4848
engine = "photon_flash",
4949
aspect_ratio = "1:1",
50-
delination = "a red kite flying over the sea",
50+
delineation = "a red kite flying over the sea",
5151
context = [{}],
5252
enhance_prompt = True
5353
)
@@ -364,7 +364,7 @@ from core.utils import update
364364
api_key = "your_api_key"
365365
generation_type = "image"
366366
uid = "desired_uid"
367-
properties = {"delination": "a blue kite flying over a green valley"}
367+
properties = {"delineation": "a blue kite flying over a green valley"}
368368

369369
response = update(generation_type, uid, properties, api_key)
370370

0 commit comments

Comments
 (0)