├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── examples └── predict_markets.py ├── llm_oracle ├── __init__.py ├── agents │ ├── __init__.py │ ├── agent_basic.py │ ├── agent_tools.py │ ├── base.py │ └── output.py ├── link_scraping.py ├── llm.py ├── markets │ ├── __init__.py │ ├── base.py │ ├── custom.py │ ├── kalshi.py │ └── manifold.py ├── processing_utils.py ├── text_utils.py └── tools │ ├── __init__.py │ ├── read_link.py │ └── search.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/README.md -------------------------------------------------------------------------------- /examples/predict_markets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/examples/predict_markets.py -------------------------------------------------------------------------------- /llm_oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_oracle/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_oracle/agents/agent_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/agents/agent_basic.py -------------------------------------------------------------------------------- /llm_oracle/agents/agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/agents/agent_tools.py -------------------------------------------------------------------------------- /llm_oracle/agents/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/agents/base.py -------------------------------------------------------------------------------- /llm_oracle/agents/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/agents/output.py -------------------------------------------------------------------------------- /llm_oracle/link_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/link_scraping.py -------------------------------------------------------------------------------- /llm_oracle/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/llm.py -------------------------------------------------------------------------------- /llm_oracle/markets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_oracle/markets/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/markets/base.py -------------------------------------------------------------------------------- /llm_oracle/markets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/markets/custom.py -------------------------------------------------------------------------------- /llm_oracle/markets/kalshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/markets/kalshi.py -------------------------------------------------------------------------------- /llm_oracle/markets/manifold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/markets/manifold.py -------------------------------------------------------------------------------- /llm_oracle/processing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/processing_utils.py -------------------------------------------------------------------------------- /llm_oracle/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/text_utils.py -------------------------------------------------------------------------------- /llm_oracle/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_oracle/tools/read_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/tools/read_link.py -------------------------------------------------------------------------------- /llm_oracle/tools/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/llm_oracle/tools/search.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm_oracle/HEAD/setup.py --------------------------------------------------------------------------------