diff --git a/workers/fund_public_goods/db/tables/projects.py b/workers/fund_public_goods/db/tables/projects.py index 7e339d4..3b32c98 100644 --- a/workers/fund_public_goods/db/tables/projects.py +++ b/workers/fund_public_goods/db/tables/projects.py @@ -1,6 +1,6 @@ from typing import Any, Dict -from fund_public_goods.agents.researcher.models.answer import Answer -from fund_public_goods.agents.researcher.models.project import Project +from fund_public_goods.lib.strategy.models.answer import Answer +from fund_public_goods.lib.strategy.models.project import Project from supabase import Client, PostgrestAPIResponse import uuid diff --git a/workers/fund_public_goods/lib/strategy/utils/utils.py b/workers/fund_public_goods/lib/strategy/utils/utils.py index 36a9d68..4cd7a31 100644 --- a/workers/fund_public_goods/lib/strategy/utils/utils.py +++ b/workers/fund_public_goods/lib/strategy/utils/utils.py @@ -1,4 +1,4 @@ -from fund_public_goods.agents.researcher.models.project import Project +from fund_public_goods.lib.strategy.models.project import Project def stringify_projects(projects: list[Project], separator: str) -> str: