-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8084eab
commit 1182b67
Showing
4 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
|
||
if TYPE_CHECKING: | ||
from lumaai import LumaAI | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from attrs import define | ||
|
||
from griptape.mixins.artifact_file_output_mixin import ArtifactFileOutputMixin | ||
from griptape.tools import BaseTool | ||
|
||
|
||
@define | ||
class BaseVideoGenerationTool(ArtifactFileOutputMixin, BaseTool): | ||
"""A base class for tools that generate videos from text prompts.""" | ||
|
||
prompt_description = "Features and qualities to include in the generated video, descriptive and succinct." |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters