Chris Alexiuk
commited on
Commit
·
3e8fbf3
1
Parent(s):
2b431c6
Update app.py
Browse files
app.py
CHANGED
|
@@ -42,7 +42,8 @@ chain_type_kwargs = {"prompt": prompt}
|
|
| 42 |
|
| 43 |
@cl.author_rename
|
| 44 |
def rename(orig_author: str):
|
| 45 |
-
rename_dict = {"RetrievalQA": "the Rubilab Records"
|
|
|
|
| 46 |
return rename_dict.get(orig_author, orig_author)
|
| 47 |
|
| 48 |
@cl.on_chat_start
|
|
|
|
| 42 |
|
| 43 |
@cl.author_rename
|
| 44 |
def rename(orig_author: str):
|
| 45 |
+
rename_dict = {"RetrievalQA": "the Rubilab Records",
|
| 46 |
+
"Chatbot" : "RubiChat"}
|
| 47 |
return rename_dict.get(orig_author, orig_author)
|
| 48 |
|
| 49 |
@cl.on_chat_start
|