Skip to content

Commit

Permalink
完善文档
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterH0323 committed May 22, 2024
1 parent 758a2eb commit 72157e9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ license: Apache License 2.0

- [2024.05.22] 支持上传新商品,上传后会自动生成数据库
- [2024.05.21] 接入 RAG,主播每次回答问题都会借鉴说明书,**实现加商品无需微调即可让回答更加贴近商品实际**
- [2024.05.19] 新增说明书生成脚本,可以根据网页图片快速生成说明书,具体逻辑:Web 图片 -> OCR -> LLM -> 说明书
- [2024.05.15] 接入 [LMDeploy](https://github.com/InternLM/lmdeploy)**推理效率提升 3倍+** 🚀🚀🚀
- [2024.05.10] 发布【乐乐喵】4 bit 模型
- [2024.04.16] 发布【乐乐喵】模型,完成初版页面
Expand Down
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def main(model_dir, using_lmdeploy, enable_rag):
with st.sidebar:
# 标题
st.markdown("## 销冠 —— 卖货主播大模型")
"[销冠 —— 卖货主播大模型 Github repo](https://github.com/PeterH0323/Streamer-Sales)"
st.markdown("[销冠 —— 卖货主播大模型 Github repo](https://github.com/PeterH0323/Streamer-Sales)")

st.markdown(f"## 主播后台信息")
st.markdown(f"共有商品:{len(product_name_list)} 件")
Expand Down
Binary file modified doc/architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions pages/selling_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def init_sidebar():
with st.sidebar:
# 标题
st.markdown("## 销冠 —— 卖货主播大模型")
"[销冠 —— 卖货主播大模型 Github repo](https://github.com/PeterH0323/Streamer-Sales)"
st.markdown("[销冠 —— 卖货主播大模型 Github repo](https://github.com/PeterH0323/Streamer-Sales)")

st.subheader("目前讲解")
with st.container(height=400, border=True):
Expand Down Expand Up @@ -76,8 +76,6 @@ def init_sidebar():

def main(meta_instruction):



# 检查页面切换状态并进行切换
if st.session_state.page_switch != st.session_state.current_page:
st.switch_page(st.session_state.page_switch)
Expand Down

0 comments on commit 72157e9

Please sign in to comment.