Skip to content
This repository was archived by the owner on May 29, 2025. It is now read-only.
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8c2d468
Merge pull request #207 from valory-xyz/develop
jmoreira-valory Jan 29, 2024
fd2941f
Merge pull request #212 from valory-xyz/develop
jmoreira-valory Jan 31, 2024
7e9bea4
Merge pull request #218 from valory-xyz/develop
0xArdi Feb 2, 2024
a1073f3
Merge pull request #220 from valory-xyz/develop
dagacha Feb 5, 2024
b36be3a
Merge pull request #224 from valory-xyz/develop
dagacha Feb 6, 2024
3d9325f
Merge pull request #229 from valory-xyz/develop
jmoreira-valory Feb 8, 2024
1aab976
Merge pull request #230 from valory-xyz/develop
dagacha Feb 9, 2024
a161404
Merge pull request #236 from valory-xyz/develop
jmoreira-valory Feb 20, 2024
ae7d0e4
Merge pull request #238 from valory-xyz/develop
Adamantios Feb 29, 2024
b3429a4
Merge pull request #241 from valory-xyz/develop
dagacha Mar 1, 2024
b2f9f24
Merge pull request #244 from valory-xyz/develop
DavidMinarsch Mar 7, 2024
bd4121d
Merge pull request #250 from valory-xyz/develop
jmoreira-valory Mar 15, 2024
8a49b70
Merge pull request #255 from valory-xyz/develop
jmoreira-valory Mar 22, 2024
316d823
Merge pull request #259 from valory-xyz/develop
DavidMinarsch Apr 6, 2024
986ebc2
Merge pull request #262 from valory-xyz/develop
dagacha Apr 15, 2024
6e940a5
Merge pull request #268 from valory-xyz/develop
jmoreira-valory Apr 23, 2024
1af3242
Merge pull request #271 from valory-xyz/develop
DavidMinarsch Apr 23, 2024
9db1618
Merge pull request #274 from valory-xyz/develop
dagacha Apr 26, 2024
f05a4a5
Merge pull request #277 from valory-xyz/develop
dagacha May 1, 2024
e61c2ff
Merge pull request #280 from valory-xyz/develop
Adamantios May 15, 2024
383e284
feat: bet 2.5 times more than the suggested kelly amount
Adamantios May 27, 2024
ca674f2
feat: increase the bet threshold to 1 xDAI
Adamantios May 27, 2024
e345655
Merge pull request #281 from valory-xyz/feat/bet-amount
Adamantios May 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions run_service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1056,9 +1056,9 @@ export ALL_PARTICIPANTS='["'$agent_address'"]'
# This is the default market creator. Feel free to update with other market creators
export OMEN_CREATORS='["0x89c5cc945dd550BcFfb72Fe42BfF002429F46Fec"]'
# 10 cents minimum bet amount. Also, the bet will not be placed if expected returns - bet_threshold <= 0
export BET_THRESHOLD=100000000000000000
export BET_THRESHOLD=1000000000000000000
export TRADING_STRATEGY=kelly_criterion
export STRATEGIES_KWARGS='[["bet_kelly_fraction",1],["floor_balance",500000000000000000],["bet_amount_per_threshold",{"0.0":0,"0.1":0,"0.2":0,"0.3":0,"0.4":0,"0.5":0,"0.6":60000000000000000,"0.7":80000000000000000,"0.8":160000000000000000,"0.9":1000000000000000000,"1.0":1000000000000000000}]]'
export STRATEGIES_KWARGS='[["bet_kelly_fraction",2.5],["floor_balance",500000000000000000],["bet_amount_per_threshold",{"0.0":0,"0.1":0,"0.2":0,"0.3":0,"0.4":0,"0.5":0,"0.6":60000000000000000,"0.7":80000000000000000,"0.8":160000000000000000,"0.9":1000000000000000000,"1.0":1000000000000000000}]]'
export PROMPT_TEMPLATE="Please take over the role of a Data Scientist to evaluate the given question. With the given question \"@{question}\" and the \`yes\` option represented by \`@{yes}\` and the \`no\` option represented by \`@{no}\`, what are the respective probabilities of \`p_yes\` and \`p_no\` occurring?"
export IRRELEVANT_TOOLS='["prediction-request-rag","prediction-request-reasoning-claude","prediction-url-cot-claude","claude-prediction-offline","claude-prediction-online","prediction-offline-sme","deepmind-optimization", "deepmind-optimization-strong", "openai-gpt-3.5-turbo", "openai-gpt-3.5-turbo-instruct", "openai-gpt-4", "openai-text-davinci-002", "openai-text-davinci-003", "prediction-online-sum-url-content", "prediction-online-summarized-info", "stabilityai-stable-diffusion-512-v2-1", "stabilityai-stable-diffusion-768-v2-1", "stabilityai-stable-diffusion-v1-5", "stabilityai-stable-diffusion-xl-beta-v2-2-2"]'
export STAKING_CONTRACT_ADDRESS=$CUSTOM_STAKING_ADDRESS
Expand Down