Skip to content

Commit

Permalink
PR cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
collindutter committed Jan 6, 2025
1 parent a62bfc5 commit 3fd4d20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions griptape/tasks/prompt_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
from attrs import NOTHING, Attribute, Factory, NothingType, define, field

from griptape import utils
from griptape.artifacts import ActionArtifact, BaseArtifact, ErrorArtifact, ListArtifact, TextArtifact
from griptape.artifacts.json_artifact import JsonArtifact
from griptape.artifacts import ActionArtifact, BaseArtifact, ErrorArtifact, JsonArtifact, ListArtifact, TextArtifact
from griptape.common import PromptStack, ToolAction
from griptape.configs import Defaults
from griptape.memory.structure import Run
Expand Down
2 changes: 1 addition & 1 deletion griptape/tools/structured_output/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class StructuredOutputTool(BaseTool):
@activity(
config={
"description": "Used to provide the final response which ends this conversation.",
"schema": lambda self: self.output_schema,
"schema": lambda _self: _self.output_schema,
}
)
def provide_output(self, params: dict) -> BaseArtifact:
Expand Down

0 comments on commit 3fd4d20

Please sign in to comment.