Nerva5678 commited on
Commit
e5e7a65
·
verified ·
1 Parent(s): c61a210

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -14
README.md CHANGED
@@ -1,14 +1,24 @@
1
- ---
2
- title: Excel QA Bot
3
- emoji: 🏆
4
- colorFrom: green
5
- colorTo: gray
6
- sdk: streamlit
7
- sdk_version: 1.44.1
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
- short_description: Excel-QA-bot_TEST
12
- ---
13
-
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
1
+ # Excel 問答 AI(ChatGLM)
2
+
3
+ 本專案可上傳 Excel 問答檔案(A欄:問題,B欄:答案),並使用 ChatGLM 回答使用者提問。
4
+
5
+ ## 部署方式(Hugging Face Space)
6
+
7
+ 1. 登入 Hugging Face,建立 Space(選擇 Streamlit + Python)
8
+ 2. 上傳本專案所有檔案
9
+ 3. 等待自動部署完成
10
+
11
+ ## Excel 檔案格式
12
+
13
+ 請確保你上傳的檔案包含以下欄位:
14
+
15
+ | 問題 | 答案 |
16
+ |------|------|
17
+ | 什麼是AI? | AI是人工智慧的縮寫,指的是模擬人類智慧的技術。 |
18
+
19
+ ## 使用模型
20
+
21
+ - 嵌入模型:text2vec-base-chinese(shibing624)
22
+ - 回答模型:ChatGLM3-6B(THUDM)
23
+
24
+ ---