Skip to content

Commit

Permalink
poetry lock --no-update
Browse files Browse the repository at this point in the history
  • Loading branch information
william-price01 committed Sep 25, 2024
1 parent 8084eab commit 1182b67
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

if TYPE_CHECKING:
from lumaai import LumaAI

logger = logging.getLogger(__name__)


Expand Down
11 changes: 11 additions & 0 deletions griptape/tools/base_video_generation_tool.py
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."
5 changes: 3 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ diffusers = {version = ">=0.29.1,<0.31.0", optional = true}
accelerate = {version = ">=0.32.1,<0.35.0", optional = true}
sentencepiece = {version = "^0.2.0", optional = true}
torch = {version = "^2.3.1", optional = true}
lumaai = {version ="^1.0.2", optional = true}

# loaders
pandas = {version = "^1.3", optional = true}
pypdf = {version = "^3.9", optional = true}
pillow = {version = "^10.2.0", optional = true}
mail-parser = {version = "^3.15.0", optional = true}
filetype = {version = "^1.2", optional = true}
lumaai = "^1.0.2"

[tool.poetry.extras]
drivers-prompt-cohere = ["cohere"]
Expand Down Expand Up @@ -150,6 +150,7 @@ drivers-image-generation-huggingface = [
"torch",
"pillow",
]
drivers-video-generation-lumaai=["lumaai"]

loaders-dataframe = ["pandas"]
loaders-pdf = ["pypdf"]
Expand Down

0 comments on commit 1182b67

Please sign in to comment.