Skip to content

Commit

Permalink
Add KnownOutcomeAgent to run_agent.py (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
kongzii authored Apr 12, 2024
1 parent efc1ef7 commit 9bb017a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions prediction_market_agent/run_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,19 @@
from prediction_market_agent_tooling.markets.markets import MarketType

from prediction_market_agent.agents.coinflip_agent.deploy import DeployableCoinFlipAgent
from prediction_market_agent.agents.known_outcome_agent.deploy import (
DeployableKnownOutcomeAgent,
)


class RunnableAgent(str, Enum):
coinflip = "coinflip"
knownoutcome = "knownoutcome"


RUNNABLE_AGENTS = {
RunnableAgent.coinflip: DeployableCoinFlipAgent,
RunnableAgent.knownoutcome: DeployableKnownOutcomeAgent,
}


Expand Down

0 comments on commit 9bb017a

Please sign in to comment.