重构 ExcelIndexer 类,移动到 src 目录并更新导入路径
Browse files- app.py +1 -1
- ExcelIndexer.py → src/ExcelIndexer.py +0 -0
app.py
CHANGED
|
@@ -11,7 +11,7 @@ from tqdm import tqdm
|
|
| 11 |
from text2vec import SentenceModel
|
| 12 |
import streamlit as st
|
| 13 |
import sys
|
| 14 |
-
from retriever.ExcelIndexer import ExcelIndexer
|
| 15 |
|
| 16 |
# 命令行参数处理函数
|
| 17 |
def get_cli_args():
|
|
|
|
| 11 |
from text2vec import SentenceModel
|
| 12 |
import streamlit as st
|
| 13 |
import sys
|
| 14 |
+
from retriever.src.ExcelIndexer import ExcelIndexer
|
| 15 |
|
| 16 |
# 命令行参数处理函数
|
| 17 |
def get_cli_args():
|
ExcelIndexer.py → src/ExcelIndexer.py
RENAMED
|
File without changes
|