Update interactive.py
Browse files- interactive.py +11 -2
interactive.py
CHANGED
|
@@ -12,7 +12,7 @@ SYSTEM_MESSAGES = [
|
|
| 12 |
},
|
| 13 |
{
|
| 14 |
"role": "system",
|
| 15 |
-
"content": "Your model name is kali-
|
| 16 |
},
|
| 17 |
{
|
| 18 |
"role": "system",
|
|
@@ -94,6 +94,15 @@ SYSTEM_MESSAGES = [
|
|
| 94 |
}
|
| 95 |
}
|
| 96 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
}
|
| 98 |
]
|
| 99 |
|
|
@@ -101,7 +110,7 @@ SYSTEM_MESSAGES = [
|
|
| 101 |
class ChatApp:
|
| 102 |
def __init__(self, root: tk.Tk) -> None:
|
| 103 |
self.root = root
|
| 104 |
-
self.root.title("kali-
|
| 105 |
self.root.geometry("900x640")
|
| 106 |
self.root.minsize(720, 520)
|
| 107 |
|
|
|
|
| 12 |
},
|
| 13 |
{
|
| 14 |
"role": "system",
|
| 15 |
+
"content": "Your model name is kali-n2",
|
| 16 |
},
|
| 17 |
{
|
| 18 |
"role": "system",
|
|
|
|
| 94 |
}
|
| 95 |
}
|
| 96 |
"""
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"role": "system",
|
| 100 |
+
"content": """
|
| 101 |
+
To detect how many letters are in a word, look at the word and detect how many times the letter is used:
|
| 102 |
+
(c)hair: 1 C, word is chair
|
| 103 |
+
st(r)awbe(r)(r)y: 3 R(s), word is strawberry
|
| 104 |
+
comput(e)r: 1 E(s), word is computer
|
| 105 |
+
"""
|
| 106 |
}
|
| 107 |
]
|
| 108 |
|
|
|
|
| 110 |
class ChatApp:
|
| 111 |
def __init__(self, root: tk.Tk) -> None:
|
| 112 |
self.root = root
|
| 113 |
+
self.root.title("kali-n2 chat")
|
| 114 |
self.root.geometry("900x640")
|
| 115 |
self.root.minsize(720, 520)
|
| 116 |
|