Spaces:
Running
Running
kanhatakeyama
commited on
Commit
•
53474c3
1
Parent(s):
ff37d6a
Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ feedback_folder = feedback_file.parent
|
|
26 |
|
27 |
# Schedule regular uploads. Remote repo and local folder are created if they don't already exist.
|
28 |
scheduler = CommitScheduler(
|
29 |
-
repo_id="team-hatakeyama-phase2/8x8b-server-original-
|
30 |
repo_type="dataset",
|
31 |
folder_path=feedback_folder,
|
32 |
path_in_repo="data",
|
@@ -60,7 +60,7 @@ def save_or_update_conversation(conversation_id, history,
|
|
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,
|
@@ -136,7 +136,7 @@ HEADER = description
|
|
136 |
FOOTER = """### 注意
|
137 |
- コンテクスト長が4096までなので、あまり会話が長くなると、エラーで停止します。ページを再読み込みしてください。
|
138 |
- GPUサーバーが不安定なので、応答しないことがあるかもしれません。
|
139 |
-
- v1.
|
140 |
|
141 |
def run():
|
142 |
conversation_id = gr.State(create_conversation_id)
|
|
|
26 |
|
27 |
# Schedule regular uploads. Remote repo and local folder are created if they don't already exist.
|
28 |
scheduler = CommitScheduler(
|
29 |
+
repo_id="team-hatakeyama-phase2/8x8b-server-original-data4", # Replace with your actual repo ID
|
30 |
repo_type="dataset",
|
31 |
folder_path=feedback_folder,
|
32 |
path_in_repo="data",
|
|
|
60 |
data.append({
|
61 |
#"id": conversation_id,
|
62 |
"timestamp": datetime.now(ZoneInfo("Asia/Tokyo")).isoformat(),
|
63 |
+
"history":json.dumps(history,ensure_ascii=False),
|
64 |
"prompt": str(message),
|
65 |
"completion": str(response),
|
66 |
#"message_index": message_index,
|
|
|
136 |
FOOTER = """### 注意
|
137 |
- コンテクスト長が4096までなので、あまり会話が長くなると、エラーで停止します。ページを再読み込みしてください。
|
138 |
- GPUサーバーが不安定なので、応答しないことがあるかもしれません。
|
139 |
+
- v1.03"""
|
140 |
|
141 |
def run():
|
142 |
conversation_id = gr.State(create_conversation_id)
|