Spaces:
Runtime error
Runtime error
File size: 1,204 Bytes
4d7183d 7317b00 |
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 |
<div style="width: 100%;">
<img src="../statics/title.svg" style="width: 100%;">
</div>
受[gpt-researcher](https://github.com/assafelovic/gpt-researcher)启发,本项目提供了一种利用第三方API而不是官方API生成研究报告的替代方法。要访问此第三方API,请参阅[chimeragpt](https://chimeragpt.adventblocks.cc/)或者[GPT-API-free](https://github.com/chatanywhere/GPT_API_free)。一旦获得API密钥,您就可以使用它来访问chimeragpt API。因此,在运行项目之前,请确保您设置了环境变量`OPENAI_API_KEY`和`OPENAI_API_BASE`。
```shell
$ export OPENAI_API_KEY = your_api_key
$ export OPENAI_API_BASE = your_api_base
```
或者您可以在`.env`文件中设置api密钥和基础。
## 安装
1. 克隆存储库
```shell
$ git clone git@github.com:paradoxtown/ai_research_assistant.git
$ cd ai_research_assistant
```
2. 安装依赖项
```shell
$ pip install -r requirements.txt
```
3. 导出环境变量
```shell
$ export OPENAI_API_KEY = your_api_key
$ export OPENAI_API_BASE = your_api_base
```
或修改`.env`文件。
4. 运行项目
```shell
$ python app.py
``` |