gnosis / prediction-market-agent-tooling

Tools to benchmark, deploy and monitor prediction market agents.
GNU Lesser General Public License v3.0
18 stars 4 forks source link

Filter out banned markets #473

Closed kongzii closed 1 month ago

kongzii commented 1 month ago

Markets such as this one, talking about murders, assassinations, etc. are banned on Omen.

Banned in a sense that according to the rules, they should always resolve to Invalid. So it doesn't make sense to have them.

I think we need to:

  1. Add LLM-based function to PMAT is_banned, similarly as we have is_predictable
  2. Use it in PMA here to not Replicate banned markets
  3. Use it in PMA also here, to resolve such markets as Invalid.
kongzii commented 1 month ago

Done in https://github.com/gnosis/prediction-market-agent-tooling/pull/482 and https://github.com/gnosis/prediction-market-agent/pull/506