shigel commited on
Commit
66cfbb6
1 Parent(s): 5d312c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,11 +18,11 @@ def respond(message, chat_history):
18
  chat_history.append((message, answer))
19
  return "", chat_history
20
 
21
- title = "OpenAPI Assistant API: " + llm.assistant.name
22
 
23
  if llm.assistant.description is None:
24
  model = llm.assistant.model
25
- description = f"このデモはOpenAPI Assistant APIのデモです。テキストボックスにテキストを入力すると、{model}モデルが応答します。"
26
  else:
27
  description = llm.assistant.description
28
 
 
18
  chat_history.append((message, answer))
19
  return "", chat_history
20
 
21
+ title = "OpenAI Assistant API: " + llm.assistant.name
22
 
23
  if llm.assistant.description is None:
24
  model = llm.assistant.model
25
+ description = f"このデモはOpenAI Assistant APIのデモです。テキストボックスにテキストを入力すると、{model}モデルが応答します。"
26
  else:
27
  description = llm.assistant.description
28