Skip to content

Commit

Permalink
Reduce bet_on_n_markets_per_run for expensive agents (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
evangriffiths authored Oct 29, 2024
1 parent 4aea81b commit 02166ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions prediction_market_agent/agents/prophet_agent/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ def load(self) -> None:

class DeployablePredictionProphetGPTo1PreviewAgent(DeployableTraderAgentER):
agent: PredictionProphetAgent
bet_on_n_markets_per_run = 2

def get_betting_strategy(self, market: AgentMarket) -> BettingStrategy:
return KellyBettingStrategy(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class DeployableThinkThoroughlyAgentBase(DeployableTraderAgent):
agent_class: type[ThinkThoroughlyBase]
model: str
bet_on_n_markets_per_run = 2
bet_on_n_markets_per_run = 1

def load(self) -> None:
self.agent = self.agent_class(
Expand Down

0 comments on commit 02166ce

Please sign in to comment.