alexkueck commited on
Commit
cff3a66
1 Parent(s): f0fac31

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -132,6 +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
  #schlagwort finden zu dem chatverlauf
136
  headers, payload = process_chatverlauf(summary, MODEL_NAME, OAI_API_KEY)
137
  response = requests.post("https://api.openai.com/v1/chat/completions", headers=headers, json=payload)
@@ -143,7 +144,7 @@ def clear_all(history):
143
  #Alternatives Model umd schlagworte zu finden
144
  llm = HuggingFaceHub(repo_id=repo_id, model_kwargs={"temperature": 0.5, "max_length": 128})
145
  result = process_chatverlauf_hf(history,llm)
146
- """
147
  #chat hinzufügen zu den chatverläufen und in GUI anzeigen
148
  id_neu = str(len(chats)+1) + "_" + result
149
  #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