FileChat/README.md
2024-08-27 20:44:40 +08:00

33 lines
599 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 文件对话demo
调用智谱AI文件对话接口进行问答
## 代码结构
```
.
├── LICENSE
├── README.md
├── environment.yml
└── file_chat.py
```
## 环境配置
* Python虚拟环境建议使用命令行安装[Miniconda](https://docs.anaconda.com/miniconda/#quick-command-line-install)
* 创建虚拟环境
```
conda env create -f environment.yml --name <虚拟环境名称>
```
## 启动
* 激活虚拟环境
```
conda activate <虚拟环境名称>
```
* 启动文件对话用户界面
```
streamlit run file_chat.py
```