File size: 1,112 Bytes
3a7e30a 22507c4 3a7e30a 22507c4 3a7e30a 22507c4 3a7e30a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# Open-o1
It thinks like o1
## TODO
[ ] Add fallback llms
[ ] Better error handling
[ ] Add Tools (web, math, code)
[ ] Make cli
## What it does
- It takes a prompt , thinks, thinks again, critics itself, then returns answer
## Installation
```bash
git clone https://github.com/tikendraw/open-o1.git
cd open-o1
streamlit run app.py
```
HAVE FUN.
## Helpful Papers
1. To Cot or not to Cot? CHAIN-OF-THOUGHT HELPS MAINLY ON MATH AND SYMBOLIC REASONING
2. The Impact of Reasoning Step Length on Large Language Models
3. Towards Understanding Chain-of-Thought Prompting: An Empirical Study of What Matters [2212.10001](https://arxiv.org/abs/2212.10001)
```bibtex
@misc{wang2023understandingchainofthoughtpromptingempirical,
title={Towards Understanding Chain-of-Thought Prompting: An Empirical Study of What Matters},
author={Boshi Wang and Sewon Min and Xiang Deng and Jiaming Shen and You Wu and Luke Zettlemoyer and Huan Sun},
year={2023},
eprint={2212.10001},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2212.10001},
}
``` |