Skip to content

Commit

Permalink
fix prints
Browse files Browse the repository at this point in the history
  • Loading branch information
kongzii committed Mar 25, 2024
1 parent bc6b37f commit 8950868
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prediction_market_agent/agents/known_outcome_agent/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ def pick_markets(self, markets: list[AgentMarket]) -> list[AgentMarket]:
# Assume very high probability markets are already known, and have
# been correctly bet on, and therefore the value of betting on them
# is low.
print(f"Looking at market {market.id=} {market.question=}")
if not market_is_saturated(market=market):
print(f"Checking market {market.id=} {market.question=}")
print(f"Predicting market {market.id=} {market.question=}")
answer = get_known_outcome(
model=self.model,
question=market.question,
Expand Down

0 comments on commit 8950868

Please sign in to comment.