Spaces:
Runtime error
Runtime error
move openai key textbox to main page
Browse files
app.py
CHANGED
@@ -118,9 +118,13 @@ with st.sidebar:
|
|
118 |
- 双击页面可直接定位输入栏
|
119 |
- Ctrl + Enter 可快捷提交问题
|
120 |
""")
|
121 |
-
|
122 |
-
|
123 |
-
|
|
|
|
|
|
|
|
|
124 |
# 加载数据
|
125 |
if ("history" + current_chat not in st.session_state) or (st.session_state['if_chat_change']):
|
126 |
for key, value in load_data(st.session_state["path"], current_chat).items():
|
@@ -132,9 +136,6 @@ if ("history" + current_chat not in st.session_state) or (st.session_state['if_c
|
|
132 |
st.session_state['if_chat_change'] = False
|
133 |
|
134 |
|
135 |
-
# 一键复制按钮
|
136 |
-
st.markdown('<center><a href="https://huggingface.co/spaces/Pearx/ChatGPT-Assistant?duplicate=true">'
|
137 |
-
'<img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a><center>', unsafe_allow_html=True)
|
138 |
# 对话展示
|
139 |
show_messages(st.session_state["history" + current_chat])
|
140 |
|
@@ -190,11 +191,6 @@ with tap_set:
|
|
190 |
|
191 |
st.button("清空聊天记录", use_container_width=True, on_click=clear_button_callback)
|
192 |
|
193 |
-
st.markdown("OpenAI API Key (可选)")
|
194 |
-
st.text_input("OpenAI API Key (可选)", type='password', key='apikey_input', label_visibility='collapsed')
|
195 |
-
st.caption(
|
196 |
-
"此Key仅在当前网页有效,且优先级高于Secrets中的配置,仅自己可用,他人无法共享。[官网获取](https://platform.openai.com/account/api-keys)")
|
197 |
-
|
198 |
st.markdown("包含对话次数:")
|
199 |
st.slider("Context Level", 0, 10, st.session_state['context_level' + current_chat + "default"], 1,
|
200 |
on_change=write_data,
|
|
|
118 |
- 双击页面可直接定位输入栏
|
119 |
- Ctrl + Enter 可快捷提交问题
|
120 |
""")
|
121 |
+
|
122 |
+
st.markdown("OpenAI API Key")
|
123 |
+
st.text_input("OpenAI API Key", type='password', key='apikey_input', label_visibility='collapsed')
|
124 |
+
st.caption(
|
125 |
+
"此Key仅在当前网页有效,且优先级高于Secrets中的配置,仅自己可用,他人无法共享。[官网获取](https://platform.openai.com/account/api-keys)")
|
126 |
+
|
127 |
+
|
128 |
# 加载数据
|
129 |
if ("history" + current_chat not in st.session_state) or (st.session_state['if_chat_change']):
|
130 |
for key, value in load_data(st.session_state["path"], current_chat).items():
|
|
|
136 |
st.session_state['if_chat_change'] = False
|
137 |
|
138 |
|
|
|
|
|
|
|
139 |
# 对话展示
|
140 |
show_messages(st.session_state["history" + current_chat])
|
141 |
|
|
|
191 |
|
192 |
st.button("清空聊天记录", use_container_width=True, on_click=clear_button_callback)
|
193 |
|
|
|
|
|
|
|
|
|
|
|
194 |
st.markdown("包含对话次数:")
|
195 |
st.slider("Context Level", 0, 10, st.session_state['context_level' + current_chat + "default"], 1,
|
196 |
on_change=write_data,
|