├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── assistant.py └── requirements.txt /.env.example: -------------------------------------------------------------------------------- 1 | PERPLEXITY_API_KEY=yourkeyhere 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/prediction-market-assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/prediction-market-assistant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/prediction-market-assistant/HEAD/README.md -------------------------------------------------------------------------------- /assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/prediction-market-assistant/HEAD/assistant.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | requests 3 | pydantic 4 | python-dotenv --------------------------------------------------------------------------------