Skip to content

Commit

Permalink
change DALL-E test prompts (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkolas authored Nov 7, 2023
1 parent ed9d81d commit 21d0b33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/steamship_tests/agents/tools/test_dalle_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_dalle_tool(client: Steamship):
OpenAI(client=client),
AgentContext.get_or_create(client=client, context_keys={"id": "test"}),
)
res = tool.run([Block(text="Mario jumping over a fire flower")], context)
res = tool.run([Block(text="a man jumping over a rock")], context)
assert len(res) == 1
assert res[0].public_data is True

Expand All @@ -34,6 +34,6 @@ def test_dalle_tool_private_block(client: Steamship):
OpenAI(client=client),
AgentContext.get_or_create(client=client, context_keys={"id": "test"}),
)
res = tool.run([Block(text="Mario jumping over a fire flower")], context)
res = tool.run([Block(text="a man jumping over a rock")], context)
assert len(res) == 1
assert res[0].public_data is False

0 comments on commit 21d0b33

Please sign in to comment.