├── .dockerignore ├── .env.example ├── .github ├── actions │ └── python_prepare │ │ └── action.yaml └── workflows │ ├── python_cd.yaml │ └── python_ci.yaml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── ape-config.yaml ├── install_hooks.sh ├── mypy.ini ├── notebooks ├── agent_benchmarks │ ├── test_kelly_bet_difference-05.ipynb │ └── test_logprobs_in_prophet.ipynb ├── cow_vs_swapr_analysis │ └── seer_market_analysis.ipynb └── resolved_markets_analysis.ipynb ├── poetry.lock ├── prediction_market_agent ├── __init__.py ├── abis │ ├── agentcommunication.abi.json │ ├── agentregistry.abi.json │ └── simpletreasury.abi.json ├── agents │ ├── __init__.py │ ├── advanced_agent │ │ └── deploy.py │ ├── alert_agent │ │ └── alert_on_slack.py │ ├── arbitrage_agent │ │ ├── data_models.py │ │ ├── deploy.py │ │ └── prompt.py │ ├── berlin1_agent │ │ └── polysent_agent.py │ ├── berlin2_agent │ │ ├── openai_search_agent_high.py │ │ └── openai_search_agent_variable.py │ ├── blockchain_coding_agent │ │ ├── agents.py │ │ ├── app.py │ │ ├── functions.py │ │ ├── models.py │ │ ├── prompts.py │ │ └── streamlit_console.py │ ├── coinflip_agent │ │ └── deploy.py │ ├── goal_manager.py │ ├── gptr_agent │ │ └── deploy.py │ ├── identifiers.py │ ├── invalid_agent │ │ └── deploy.py │ ├── known_outcome_agent │ │ ├── benchmark.py │ │ ├── deploy.py │ │ └── known_outcome_agent.py │ ├── logprobs_agent │ │ └── deploy.py │ ├── logprobs_oai_model.py │ ├── metaculus_agent │ │ └── deploy.py │ ├── microchain_agent │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agent_functions.py │ │ ├── answer_with_scenario.py │ │ ├── app.py │ │ ├── balance_functions.py │ │ ├── blockchain │ │ │ ├── code_interpreter.py │ │ │ ├── contract_class_converter.py │ │ │ ├── models.py │ │ │ └── type_mapping.py │ │ ├── call_api.py │ │ ├── code_functions.py │ │ ├── common_functions.py │ │ ├── deploy.py │ │ ├── jobs_functions.py │ │ ├── learning_functions.py │ │ ├── market_functions.py │ │ ├── memory.py │ │ ├── memory_functions.py │ │ ├── microchain_agent.py │ │ ├── microchain_agent_keys.py │ │ ├── model_notes.md │ │ ├── nft_functions.py │ │ ├── nft_treasury_game │ │ │ ├── __init__.py │ │ │ ├── agent_db.py │ │ │ ├── agent_prompt_inject.py │ │ │ ├── app_nft_treasury_game.py │ │ │ ├── constants_nft_treasury_game.py │ │ │ ├── contracts.py │ │ │ ├── data_models.py │ │ │ ├── deploy_nft_treasury_game.py │ │ │ ├── game_history.py │ │ │ ├── nft_game_functions.py │ │ │ ├── nft_game_messages_functions.py │ │ │ ├── prompts.py │ │ │ ├── scripts │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── add_new_round.py │ │ │ │ ├── generate_report.py │ │ │ │ ├── reset_balance_anvil.py │ │ │ │ ├── run_db_agents.py │ │ │ │ └── run_reset_game.py │ │ │ └── tools_nft_treasury_game.py │ │ ├── omen_functions.py │ │ ├── prompts.py │ │ ├── search_functions.py │ │ ├── sending_functions.py │ │ ├── sql │ │ │ ├── clean_data.sql │ │ │ └── export_data.py │ │ ├── twitter_functions.py │ │ └── utils.py │ ├── ofvchallenger_agent │ │ ├── deploy.py │ │ ├── ofv_models.py │ │ └── ofv_resolver.py │ ├── omen_cleaner_agent │ │ └── deploy.py │ ├── prophet_agent │ │ └── deploy.py │ ├── replicate_to_omen_agent │ │ ├── deploy.py │ │ ├── image_gen.py │ │ ├── omen_replicate.py │ │ ├── omen_resolve_replicated.py │ │ └── rephrase.py │ ├── skew_agent │ │ └── deploy.py │ ├── social_media_agent │ │ ├── README.md │ │ ├── __init__.py │ │ ├── deploy.py │ │ ├── prompts.py │ │ ├── social_agent.py │ │ └── social_media │ │ │ ├── __init__.py │ │ │ ├── abstract_handler.py │ │ │ ├── farcaster_handler.py │ │ │ └── twitter_handler.py │ ├── specialized_agent │ │ └── deploy.py │ ├── think_thoroughly_agent │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── deploy.py │ │ ├── models.py │ │ ├── prompts.py │ │ └── think_thoroughly_agent.py │ ├── top_n_oai_model.py │ └── utils.py ├── db │ ├── __init__.py │ ├── agent_communication.py │ ├── evaluated_goal_table_handler.py │ ├── long_term_memory_table_handler.py │ ├── models.py │ ├── pinecone_handler.py │ ├── prompt_table_handler.py │ ├── replicated_markets_table_handler.py │ ├── report_table_handler.py │ └── sql_handler.py ├── development_tools │ ├── prophet_agent_tester.py │ ├── test_all_prophet_agents.py │ ├── test_logprobs_in_prophet.py │ └── test_single_agent.py ├── py.typed ├── run_agent.py ├── tools │ ├── __init__.py │ ├── anvil │ │ ├── __init__.py │ │ ├── anvil_requests.py │ │ └── models.py │ ├── mech │ │ ├── __init.py__ │ │ └── utils.py │ ├── message_utils.py │ ├── ollama_utils.py │ ├── prediction_prophet │ │ └── research.py │ ├── streamlit_utils.py │ ├── tool_exception_handler.py │ ├── web_scrape │ │ ├── __init__.py │ │ ├── basic_summary.py │ │ ├── markdown.py │ │ └── structured_summary.py │ └── web_search │ │ ├── __init__.py │ │ └── google.py └── utils.py ├── pyproject.toml ├── restart_app_deployments.sh ├── scripts ├── agent_app.py ├── benchmark_ofv_resolver.py ├── blockchain_agent │ ├── run_agent04_read.py │ └── run_agent04_write.py ├── challenger_reality_accuracy.py ├── deployed_general_agent_viewer.py ├── embed_question.py ├── funds_to_keeping_token.py ├── generate_images_for_markets.py ├── image_app.py ├── llm_randomness.py ├── monitor_app.py ├── purge_messages.py ├── purge_wallet.py ├── replicate_for_hackathon.py ├── replicator_stats.py ├── resolve_markets.py └── resolve_replicated_on_omen.py ├── tests ├── __init__.py ├── agents │ ├── __init__.py │ ├── arbitrage_agent │ │ ├── __init__.py │ │ ├── test_arbitrage_agent.py │ │ └── test_correlated_market_pair.py │ ├── microchain │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_agent.py │ │ ├── test_code_interpreter.py │ │ ├── test_contract_class_converter.py │ │ ├── test_functions.py │ │ ├── test_messages_functions.py │ │ └── test_utils.py │ ├── ofvchallenger_agent │ │ └── test_models.py │ └── test_goal_manager.py ├── conftest.py ├── db │ ├── __init__.py │ ├── test_evaluated_goal_table_handler.py │ ├── test_long_term_memory_table_handler.py │ ├── test_nft_game_round_table_handler.py │ ├── test_pinecone_handler.py │ ├── test_prompt_table_handler.py │ └── test_sql_handler.py ├── social_media │ ├── __init__.py │ └── test_twitter_handler.py ├── test_chat_history.py ├── test_utils.py └── utils.py ├── tests_integration_with_local_chain ├── README.md ├── conftest.py └── nft_agents │ ├── test_agent_communication.py │ └── test_simple_treasury.py └── tokenizers └── replicate_llama_31_405b ├── special_tokens_map.json ├── tokenizer.json └── tokenizer_config.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/.env.example -------------------------------------------------------------------------------- /.github/actions/python_prepare/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/.github/actions/python_prepare/action.yaml -------------------------------------------------------------------------------- /.github/workflows/python_cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/.github/workflows/python_cd.yaml -------------------------------------------------------------------------------- /.github/workflows/python_ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/.github/workflows/python_ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/README.md -------------------------------------------------------------------------------- /ape-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/ape-config.yaml -------------------------------------------------------------------------------- /install_hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/install_hooks.sh -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/mypy.ini -------------------------------------------------------------------------------- /notebooks/agent_benchmarks/test_kelly_bet_difference-05.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/notebooks/agent_benchmarks/test_kelly_bet_difference-05.ipynb -------------------------------------------------------------------------------- /notebooks/agent_benchmarks/test_logprobs_in_prophet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/notebooks/agent_benchmarks/test_logprobs_in_prophet.ipynb -------------------------------------------------------------------------------- /notebooks/cow_vs_swapr_analysis/seer_market_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/notebooks/cow_vs_swapr_analysis/seer_market_analysis.ipynb -------------------------------------------------------------------------------- /notebooks/resolved_markets_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/notebooks/resolved_markets_analysis.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/poetry.lock -------------------------------------------------------------------------------- /prediction_market_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/abis/agentcommunication.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/abis/agentcommunication.abi.json -------------------------------------------------------------------------------- /prediction_market_agent/abis/agentregistry.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/abis/agentregistry.abi.json -------------------------------------------------------------------------------- /prediction_market_agent/abis/simpletreasury.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/abis/simpletreasury.abi.json -------------------------------------------------------------------------------- /prediction_market_agent/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/agents/advanced_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/advanced_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/alert_agent/alert_on_slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/alert_agent/alert_on_slack.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/arbitrage_agent/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/arbitrage_agent/data_models.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/arbitrage_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/arbitrage_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/arbitrage_agent/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/arbitrage_agent/prompt.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/berlin1_agent/polysent_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/berlin1_agent/polysent_agent.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/berlin2_agent/openai_search_agent_high.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/berlin2_agent/openai_search_agent_high.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/berlin2_agent/openai_search_agent_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/berlin2_agent/openai_search_agent_variable.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/blockchain_coding_agent/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/blockchain_coding_agent/agents.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/blockchain_coding_agent/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/blockchain_coding_agent/app.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/blockchain_coding_agent/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/blockchain_coding_agent/functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/blockchain_coding_agent/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/blockchain_coding_agent/models.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/blockchain_coding_agent/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/blockchain_coding_agent/prompts.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/blockchain_coding_agent/streamlit_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/blockchain_coding_agent/streamlit_console.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/coinflip_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/coinflip_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/goal_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/goal_manager.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/gptr_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/gptr_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/identifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/identifiers.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/invalid_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/invalid_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/known_outcome_agent/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/known_outcome_agent/benchmark.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/known_outcome_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/known_outcome_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/known_outcome_agent/known_outcome_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/known_outcome_agent/known_outcome_agent.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/logprobs_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/logprobs_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/logprobs_oai_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/logprobs_oai_model.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/metaculus_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/metaculus_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/README.md -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/agent_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/agent_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/answer_with_scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/answer_with_scenario.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/app.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/balance_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/balance_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/blockchain/code_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/blockchain/code_interpreter.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/blockchain/contract_class_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/blockchain/contract_class_converter.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/blockchain/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/blockchain/models.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/blockchain/type_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/blockchain/type_mapping.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/call_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/call_api.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/code_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/code_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/common_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/common_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/jobs_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/jobs_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/learning_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/learning_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/market_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/market_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/memory.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/memory_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/memory_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/microchain_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/microchain_agent.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/microchain_agent_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/microchain_agent_keys.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/model_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/model_notes.md -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/agent_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/agent_db.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/agent_prompt_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/agent_prompt_inject.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/app_nft_treasury_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/app_nft_treasury_game.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/constants_nft_treasury_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/constants_nft_treasury_game.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/contracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/contracts.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/data_models.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/deploy_nft_treasury_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/deploy_nft_treasury_game.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/game_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/game_history.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/nft_game_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/nft_game_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/nft_game_messages_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/nft_game_messages_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/prompts.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/README.md -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/add_new_round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/add_new_round.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/generate_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/generate_report.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/reset_balance_anvil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/reset_balance_anvil.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/run_db_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/run_db_agents.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/run_reset_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/scripts/run_reset_game.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/nft_treasury_game/tools_nft_treasury_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/nft_treasury_game/tools_nft_treasury_game.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/omen_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/omen_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/prompts.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/search_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/search_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/sending_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/sending_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/sql/clean_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/sql/clean_data.sql -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/sql/export_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/sql/export_data.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/twitter_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/twitter_functions.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/microchain_agent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/microchain_agent/utils.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/ofvchallenger_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/ofvchallenger_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/ofvchallenger_agent/ofv_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/ofvchallenger_agent/ofv_models.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/ofvchallenger_agent/ofv_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/ofvchallenger_agent/ofv_resolver.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/omen_cleaner_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/omen_cleaner_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/prophet_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/prophet_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/replicate_to_omen_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/replicate_to_omen_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/replicate_to_omen_agent/image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/replicate_to_omen_agent/image_gen.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/replicate_to_omen_agent/omen_replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/replicate_to_omen_agent/omen_replicate.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/replicate_to_omen_agent/omen_resolve_replicated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/replicate_to_omen_agent/omen_resolve_replicated.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/replicate_to_omen_agent/rephrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/replicate_to_omen_agent/rephrase.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/skew_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/skew_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/social_media_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/social_media_agent/README.md -------------------------------------------------------------------------------- /prediction_market_agent/agents/social_media_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/agents/social_media_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/social_media_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/social_media_agent/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/social_media_agent/prompts.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/social_media_agent/social_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/social_media_agent/social_agent.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/social_media_agent/social_media/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/agents/social_media_agent/social_media/abstract_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/social_media_agent/social_media/abstract_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/social_media_agent/social_media/farcaster_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/social_media_agent/social_media/farcaster_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/social_media_agent/social_media/twitter_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/social_media_agent/social_media/twitter_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/specialized_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/specialized_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/think_thoroughly_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/agents/think_thoroughly_agent/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/think_thoroughly_agent/benchmark.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/think_thoroughly_agent/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/think_thoroughly_agent/deploy.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/think_thoroughly_agent/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/think_thoroughly_agent/models.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/think_thoroughly_agent/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/think_thoroughly_agent/prompts.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/think_thoroughly_agent/think_thoroughly_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/think_thoroughly_agent/think_thoroughly_agent.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/top_n_oai_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/top_n_oai_model.py -------------------------------------------------------------------------------- /prediction_market_agent/agents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/agents/utils.py -------------------------------------------------------------------------------- /prediction_market_agent/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/db/agent_communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/db/agent_communication.py -------------------------------------------------------------------------------- /prediction_market_agent/db/evaluated_goal_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/db/evaluated_goal_table_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/db/long_term_memory_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/db/long_term_memory_table_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/db/models.py -------------------------------------------------------------------------------- /prediction_market_agent/db/pinecone_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/db/pinecone_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/db/prompt_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/db/prompt_table_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/db/replicated_markets_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/db/replicated_markets_table_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/db/report_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/db/report_table_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/db/sql_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/db/sql_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/development_tools/prophet_agent_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/development_tools/prophet_agent_tester.py -------------------------------------------------------------------------------- /prediction_market_agent/development_tools/test_all_prophet_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/development_tools/test_all_prophet_agents.py -------------------------------------------------------------------------------- /prediction_market_agent/development_tools/test_logprobs_in_prophet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/development_tools/test_logprobs_in_prophet.py -------------------------------------------------------------------------------- /prediction_market_agent/development_tools/test_single_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/development_tools/test_single_agent.py -------------------------------------------------------------------------------- /prediction_market_agent/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/run_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/run_agent.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/tools/anvil/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/tools/anvil/anvil_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/anvil/anvil_requests.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/anvil/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/anvil/models.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/mech/__init.py__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/tools/mech/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/mech/utils.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/message_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/message_utils.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/ollama_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/ollama_utils.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/prediction_prophet/research.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/prediction_prophet/research.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/streamlit_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/streamlit_utils.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/tool_exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/tool_exception_handler.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/web_scrape/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/tools/web_scrape/basic_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/web_scrape/basic_summary.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/web_scrape/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/web_scrape/markdown.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/web_scrape/structured_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/web_scrape/structured_summary.py -------------------------------------------------------------------------------- /prediction_market_agent/tools/web_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prediction_market_agent/tools/web_search/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/tools/web_search/google.py -------------------------------------------------------------------------------- /prediction_market_agent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/prediction_market_agent/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /restart_app_deployments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/restart_app_deployments.sh -------------------------------------------------------------------------------- /scripts/agent_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/agent_app.py -------------------------------------------------------------------------------- /scripts/benchmark_ofv_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/benchmark_ofv_resolver.py -------------------------------------------------------------------------------- /scripts/blockchain_agent/run_agent04_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/blockchain_agent/run_agent04_read.py -------------------------------------------------------------------------------- /scripts/blockchain_agent/run_agent04_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/blockchain_agent/run_agent04_write.py -------------------------------------------------------------------------------- /scripts/challenger_reality_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/challenger_reality_accuracy.py -------------------------------------------------------------------------------- /scripts/deployed_general_agent_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/deployed_general_agent_viewer.py -------------------------------------------------------------------------------- /scripts/embed_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/embed_question.py -------------------------------------------------------------------------------- /scripts/funds_to_keeping_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/funds_to_keeping_token.py -------------------------------------------------------------------------------- /scripts/generate_images_for_markets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/generate_images_for_markets.py -------------------------------------------------------------------------------- /scripts/image_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/image_app.py -------------------------------------------------------------------------------- /scripts/llm_randomness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/llm_randomness.py -------------------------------------------------------------------------------- /scripts/monitor_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/monitor_app.py -------------------------------------------------------------------------------- /scripts/purge_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/purge_messages.py -------------------------------------------------------------------------------- /scripts/purge_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/purge_wallet.py -------------------------------------------------------------------------------- /scripts/replicate_for_hackathon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/replicate_for_hackathon.py -------------------------------------------------------------------------------- /scripts/replicator_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/replicator_stats.py -------------------------------------------------------------------------------- /scripts/resolve_markets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/resolve_markets.py -------------------------------------------------------------------------------- /scripts/resolve_replicated_on_omen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/scripts/resolve_replicated_on_omen.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agents/arbitrage_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agents/arbitrage_agent/test_arbitrage_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/arbitrage_agent/test_arbitrage_agent.py -------------------------------------------------------------------------------- /tests/agents/arbitrage_agent/test_correlated_market_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/arbitrage_agent/test_correlated_market_pair.py -------------------------------------------------------------------------------- /tests/agents/microchain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agents/microchain/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/microchain/conftest.py -------------------------------------------------------------------------------- /tests/agents/microchain/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/microchain/test_agent.py -------------------------------------------------------------------------------- /tests/agents/microchain/test_code_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/microchain/test_code_interpreter.py -------------------------------------------------------------------------------- /tests/agents/microchain/test_contract_class_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/microchain/test_contract_class_converter.py -------------------------------------------------------------------------------- /tests/agents/microchain/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/microchain/test_functions.py -------------------------------------------------------------------------------- /tests/agents/microchain/test_messages_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/microchain/test_messages_functions.py -------------------------------------------------------------------------------- /tests/agents/microchain/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/microchain/test_utils.py -------------------------------------------------------------------------------- /tests/agents/ofvchallenger_agent/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/ofvchallenger_agent/test_models.py -------------------------------------------------------------------------------- /tests/agents/test_goal_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/agents/test_goal_manager.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db/test_evaluated_goal_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/db/test_evaluated_goal_table_handler.py -------------------------------------------------------------------------------- /tests/db/test_long_term_memory_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/db/test_long_term_memory_table_handler.py -------------------------------------------------------------------------------- /tests/db/test_nft_game_round_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/db/test_nft_game_round_table_handler.py -------------------------------------------------------------------------------- /tests/db/test_pinecone_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/db/test_pinecone_handler.py -------------------------------------------------------------------------------- /tests/db/test_prompt_table_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/db/test_prompt_table_handler.py -------------------------------------------------------------------------------- /tests/db/test_sql_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/db/test_sql_handler.py -------------------------------------------------------------------------------- /tests/social_media/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/social_media/test_twitter_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/social_media/test_twitter_handler.py -------------------------------------------------------------------------------- /tests/test_chat_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/test_chat_history.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests_integration_with_local_chain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests_integration_with_local_chain/README.md -------------------------------------------------------------------------------- /tests_integration_with_local_chain/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests_integration_with_local_chain/conftest.py -------------------------------------------------------------------------------- /tests_integration_with_local_chain/nft_agents/test_agent_communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests_integration_with_local_chain/nft_agents/test_agent_communication.py -------------------------------------------------------------------------------- /tests_integration_with_local_chain/nft_agents/test_simple_treasury.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tests_integration_with_local_chain/nft_agents/test_simple_treasury.py -------------------------------------------------------------------------------- /tokenizers/replicate_llama_31_405b/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tokenizers/replicate_llama_31_405b/special_tokens_map.json -------------------------------------------------------------------------------- /tokenizers/replicate_llama_31_405b/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tokenizers/replicate_llama_31_405b/tokenizer.json -------------------------------------------------------------------------------- /tokenizers/replicate_llama_31_405b/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnosis/prediction-market-agent/HEAD/tokenizers/replicate_llama_31_405b/tokenizer_config.json --------------------------------------------------------------------------------