Spaces:
Running
Running
kanhatakeyama
commited on
Commit
•
d42024d
1
Parent(s):
219f5f4
Update app.py
Browse files
app.py
CHANGED
@@ -105,9 +105,10 @@ def respond(
|
|
105 |
token=chunk.choices[0].delta.content
|
106 |
if token is not None:
|
107 |
if response.find("### 指示:")>0:
|
108 |
-
response=response.split("### 指示:")[0]
|
109 |
break
|
110 |
response += token
|
|
|
111 |
yield response
|
112 |
|
113 |
# Save conversation after the full response is generated
|
@@ -140,7 +141,7 @@ HEADER = description
|
|
140 |
FOOTER = """### 注意
|
141 |
- コンテクスト長が4096までなので、あまり会話が長くなると、エラーで停止します。ページを再読み込みしてください。
|
142 |
- GPUサーバーが不安定なので、応答しないことがあるかもしれません。
|
143 |
-
- v1.
|
144 |
|
145 |
def run():
|
146 |
conversation_id = gr.State(create_conversation_id)
|
|
|
105 |
token=chunk.choices[0].delta.content
|
106 |
if token is not None:
|
107 |
if response.find("### 指示:")>0:
|
108 |
+
#response=response.split("### 指示:")[0]
|
109 |
break
|
110 |
response += token
|
111 |
+
response=response.split("### 指示:")[0]
|
112 |
yield response
|
113 |
|
114 |
# Save conversation after the full response is generated
|
|
|
141 |
FOOTER = """### 注意
|
142 |
- コンテクスト長が4096までなので、あまり会話が長くなると、エラーで停止します。ページを再読み込みしてください。
|
143 |
- GPUサーバーが不安定なので、応答しないことがあるかもしれません。
|
144 |
+
- v1.05"""
|
145 |
|
146 |
def run():
|
147 |
conversation_id = gr.State(create_conversation_id)
|