Spaces:
Sleeping
Sleeping
kanhatakeyama
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -48,22 +48,22 @@ def save_or_update_conversation(conversation_id, history,
|
|
48 |
data = [json.loads(line) for line in f if line.strip()]
|
49 |
|
50 |
# Find if an entry with the same id and message_index exists
|
51 |
-
entry_index = next((i for i, entry in enumerate(data) if entry['id'] == conversation_id and entry['message_index'] == message_index), None)
|
52 |
|
53 |
#if entry_index is not None:
|
54 |
## # Update existing entry
|
55 |
-
|
56 |
#else:
|
57 |
#always append
|
58 |
if True:
|
59 |
# Append new entry
|
60 |
data.append({
|
61 |
-
"id": conversation_id,
|
62 |
"timestamp": datetime.now(ZoneInfo("Asia/Tokyo")).isoformat(),
|
63 |
"history":history,
|
64 |
"prompt": str(message),
|
65 |
"completion": str(response),
|
66 |
-
"message_index": message_index,
|
67 |
"label": liked
|
68 |
})
|
69 |
|
@@ -135,7 +135,8 @@ description = """
|
|
135 |
HEADER = description
|
136 |
FOOTER = """### 注意
|
137 |
- コンテクスト長が4096までなので、あまり会話が長くなると、エラーで停止します。ページを再読み込みしてください。
|
138 |
-
- GPUサーバーが不安定なので、応答しないことがあるかもしれません。
|
|
|
139 |
|
140 |
def run():
|
141 |
conversation_id = gr.State(create_conversation_id)
|
|
|
48 |
data = [json.loads(line) for line in f if line.strip()]
|
49 |
|
50 |
# Find if an entry with the same id and message_index exists
|
51 |
+
#entry_index = next((i for i, entry in enumerate(data) if entry['id'] == conversation_id and entry['message_index'] == message_index), None)
|
52 |
|
53 |
#if entry_index is not None:
|
54 |
## # Update existing entry
|
55 |
+
# data[entry_index]['label'] = liked
|
56 |
#else:
|
57 |
#always append
|
58 |
if True:
|
59 |
# Append new entry
|
60 |
data.append({
|
61 |
+
#"id": conversation_id,
|
62 |
"timestamp": datetime.now(ZoneInfo("Asia/Tokyo")).isoformat(),
|
63 |
"history":history,
|
64 |
"prompt": str(message),
|
65 |
"completion": str(response),
|
66 |
+
#"message_index": message_index,
|
67 |
"label": liked
|
68 |
})
|
69 |
|
|
|
135 |
HEADER = description
|
136 |
FOOTER = """### 注意
|
137 |
- コンテクスト長が4096までなので、あまり会話が長くなると、エラーで停止します。ページを再読み込みしてください。
|
138 |
+
- GPUサーバーが不安定なので、応答しないことがあるかもしれません。
|
139 |
+
- v1.01"""
|
140 |
|
141 |
def run():
|
142 |
conversation_id = gr.State(create_conversation_id)
|