Skip to content

Commit 31ae967

Browse files
authored
Merge pull request #9 from dottxt-ai/add-bunny
updated demo.gif to include the bunny
2 parents cf7c40b + ce290e8 commit 31ae967

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

its-a-smol-world/demo.gif

205 KB
Loading

its-a-smol-world/src/app.py

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
from smol_mind import SmolMind, load_functions
77
from constants import MODEL_NAME
88

9+
# Thanks to @torymur for the bunny ascii art!
10+
bunny_ascii = r"""
11+
(\(\
12+
( -.-)
13+
o_(")(")
14+
"""
15+
916
def spinner(stop_event):
1017
spinner = itertools.cycle(['-', '/', '|', '\\'])
1118
while not stop_event.is_set():
@@ -28,6 +35,7 @@ def main():
2835
print("Using model:", sm.model_name)
2936
print("Debug mode:", "Enabled" if args.debug else "Disabled")
3037
print("Instruct mode:", "Enabled" if args.instruct else "Disabled")
38+
print(bunny_ascii)
3139
print("Welcome to the Bunny B1! What do you need?")
3240
while True:
3341
user_input = input("> ")

0 commit comments

Comments
 (0)