From eb97d8163ffe119093d0e15719d22db6e1116781 Mon Sep 17 00:00:00 2001 From: Peter Jung Date: Wed, 30 Oct 2024 17:31:30 +0100 Subject: [PATCH] move python import --- prediction_prophet/benchmark/agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prediction_prophet/benchmark/agents.py b/prediction_prophet/benchmark/agents.py index 8a2bd100..0318f42b 100644 --- a/prediction_prophet/benchmark/agents.py +++ b/prediction_prophet/benchmark/agents.py @@ -11,7 +11,6 @@ from prediction_prophet.autonolas.research import EmbeddingModel from prediction_prophet.autonolas.research import make_prediction, get_urls_from_queries from prediction_prophet.autonolas.research import research as research_autonolas -from prediction_market_agent_tooling.tools.is_predictable import is_predictable_binary from prediction_prophet.functions.rephrase_question import rephrase_question from prediction_prophet.functions.research import Research, research as prophet_research from prediction_prophet.functions.search import search @@ -26,6 +25,7 @@ from pydantic.types import SecretStr from prediction_prophet.autonolas.research import Prediction as LLMCompletionPredictionDict from prediction_market_agent_tooling.tools.langfuse_ import observe +from prediction_market_agent_tooling.tools.is_predictable import is_predictable_binary if t.TYPE_CHECKING: from loguru import Logger