alexkueck commited on
Commit
d931d50
1 Parent(s): 285c233

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -132,7 +132,7 @@ def clear_all(history):
132
  global chats
133
  dic_history = {schluessel: wert for schluessel, wert in history}
134
  summary = "\n\n".join(f'{schluessel}: \n {wert}' for schluessel, wert in dic_history.items())
135
- """
136
  #schlagwort finden zu dem chatverlauf
137
  headers, payload = process_chatverlauf(summary, MODEL_NAME, OAI_API_KEY)
138
  response = requests.post("https://api.openai.com/v1/chat/completions", headers=headers, json=payload)
@@ -144,7 +144,7 @@ def clear_all(history):
144
  #Alternatives Model umd schlagworte zu finden
145
  llm = HuggingFaceHub(repo_id=repo_id, model_kwargs={"temperature": 0.5, "max_length": 128})
146
  result = process_chatverlauf_hf(history,llm)
147
-
148
  #chat hinzufügen zu den chatverläufen und in GUI anzeigen
149
  id_neu = str(len(chats)+1) + "_" + result
150
  #chats ist ein dictionary
 
132
  global chats
133
  dic_history = {schluessel: wert for schluessel, wert in history}
134
  summary = "\n\n".join(f'{schluessel}: \n {wert}' for schluessel, wert in dic_history.items())
135
+
136
  #schlagwort finden zu dem chatverlauf
137
  headers, payload = process_chatverlauf(summary, MODEL_NAME, OAI_API_KEY)
138
  response = requests.post("https://api.openai.com/v1/chat/completions", headers=headers, json=payload)
 
144
  #Alternatives Model umd schlagworte zu finden
145
  llm = HuggingFaceHub(repo_id=repo_id, model_kwargs={"temperature": 0.5, "max_length": 128})
146
  result = process_chatverlauf_hf(history,llm)
147
+ """
148
  #chat hinzufügen zu den chatverläufen und in GUI anzeigen
149
  id_neu = str(len(chats)+1) + "_" + result
150
  #chats ist ein dictionary