Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
felixocker committed Nov 1, 2024
1 parent da26535 commit 02edc70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/tulip_agent/agents/dfs_tulip_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
TREE_TULIP_SYSTEM_PROMPT,
TREE_TULIP_TASK_PROMPT,
)
from tulip_agent.task_tree import Task, Tool
from tulip_agent.task import Task
from tulip_agent.tool import Tool
from tulip_agent.tool_library import ToolLibrary

from .tulip_agent import TulipAgent
Expand Down
3 changes: 2 additions & 1 deletion tests/test_task_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
#
import unittest

from tulip_agent.task_tree import Task, Tool
from tulip_agent.task import Task
from tulip_agent.tool import Tool


class TestCore(unittest.TestCase):
Expand Down

0 comments on commit 02edc70

Please sign in to comment.