├── .env.template ├── .gitignore ├── LICENSE ├── README.md ├── gpt5Research.ipynb └── requirements.txt /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/GPT-5-Research/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/GPT-5-Research/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/GPT-5-Research/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/GPT-5-Research/HEAD/README.md -------------------------------------------------------------------------------- /gpt5Research.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennifermarsman/GPT-5-Research/HEAD/gpt5Research.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | notebook 2 | openai>=1.99.9 3 | python-dotenv 4 | azure.identity 5 | rich 6 | --------------------------------------------------------------------------------