Skip to content

Commit

Permalink
Release 0.0.1-beta18
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 12, 2024
1 parent 66b66db commit 1116951
Show file tree
Hide file tree
Showing 152 changed files with 765 additions and 3,821 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ pip install gooeyai
Instantiate and use the client with the following:

```python
from gooey import DeforumSdPageRequestAnimationPromptsItem, Gooey
from gooey import AnimationPrompt, Gooey

client = Gooey(
api_key="YOUR_API_KEY",
)
client.animate(
animation_prompts=[
DeforumSdPageRequestAnimationPromptsItem(
AnimationPrompt(
frame="frame",
prompt="prompt",
)
Expand All @@ -38,7 +38,7 @@ The SDK also exports an `async` client so that you can make non-blocking calls t
```python
import asyncio

from gooey import AsyncGooey, DeforumSdPageRequestAnimationPromptsItem
from gooey import AnimationPrompt, AsyncGooey

client = AsyncGooey(
api_key="YOUR_API_KEY",
Expand All @@ -48,7 +48,7 @@ client = AsyncGooey(
async def main() -> None:
await client.animate(
animation_prompts=[
DeforumSdPageRequestAnimationPromptsItem(
AnimationPrompt(
frame="frame",
prompt="prompt",
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gooeyai"
version = "0.0.1-beta17"
version = "0.0.1-beta18"
description = ""
readme = "README.md"
authors = []
Expand Down
Loading

0 comments on commit 1116951

Please sign in to comment.