-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
boyjiangboyu
committed
Jan 1, 2024
1 parent
267c219
commit 476e10b
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,4 @@ | |
infobox.markdown(st.session_state.study_tate[key]) | ||
|
||
if st.sidebar.button('测试'): | ||
None | ||
|
||
|
||
None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import streamlit as st | ||
import sys | ||
import os | ||
from dotenv import load_dotenv | ||
from apps.chatbot import get_chatbot_page | ||
|
||
sys.path.append(os.path.abspath('..')) | ||
load_dotenv() | ||
|
||
|
||
st.markdown("## C++ 编程导师") | ||
|
||
get_chatbot_page("codeboy", "codeboy", mr_ranedeer=True) |