diff --git a/crab/core/task_generator.py b/crab-benchmark-v0/task_generator.py similarity index 99% rename from crab/core/task_generator.py rename to crab-benchmark-v0/task_generator.py index 2f373eb..326eff2 100644 --- a/crab/core/task_generator.py +++ b/crab-benchmark-v0/task_generator.py @@ -24,7 +24,7 @@ from openai import OpenAI from termcolor import colored -from .models import GeneratedTask, SubTask, SubTaskInstance, Task +from crab import GeneratedTask, SubTask, SubTaskInstance, Task SYSTEM_PROMPT_SINGLE = """ You are a wise operator who is familiar with both the Ubuntu and Android operating diff --git a/crab/core/__init__.py b/crab/core/__init__.py index 3b98052..528d2f4 100644 --- a/crab/core/__init__.py +++ b/crab/core/__init__.py @@ -20,4 +20,3 @@ from .experiment import Experiment from .graph_evaluator import Evaluator, GraphEvaluator from .models import * -from .task_generator import TaskGenerator