gnosis / prediction-market-agent

GNU Lesser General Public License v3.0
15 stars 4 forks source link

Social market creation (1/2) #167

Open gabrielfior opened 1 month ago

gabrielfior commented 1 month ago

We want to have agents that can predict virality of tweets + Farcaster casts. For that, we need

In this task:

kongzii commented 1 month ago

Some notes based on my previous work in emplifi

Generally, predicting the number of likes/comments/reposts isn't possible (assuming we want reasonable accuracy). Because that would require reverse engineering of their algorithms (the extreme example is that if X decides the tweet won't have more than 100 likes, it can simply stop showing it). We were training specialised models on ton of data to do similar things, so doing it by quickly prompting LLM is even less probable.

However, I do think something similar could work. For example, we could scrape things at

And then ask something as, "Will this tweet have more than X likes?", where the X is based on the previous information.

https://github.com/gnosis/prediction-market-agent/issues/162 could be usable for scraping such things.