Update model.safetensors
Browse files- model.safetensors +10 -14
model.safetensors
CHANGED
@@ -1,27 +1,23 @@
|
|
1 |
-
import random
|
2 |
|
3 |
def super_ai_9000(input_text):
|
4 |
-
"""The AI's brilliant response generator."""
|
5 |
responses = [
|
6 |
"Banana!",
|
7 |
"Did someone say potato?",
|
8 |
"Beep boop... processing... error 404: brain not found",
|
9 |
"Is that a squirrel?"
|
10 |
]
|
11 |
-
return random.choice(responses) # Choose a random response
|
12 |
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
|
18 |
-
user_input = input("You: ")
|
19 |
-
if user_input.lower() == "exit":
|
20 |
-
break # Exit the chat
|
21 |
|
22 |
-
|
23 |
-
print("Super AI 9000:", ai_response) # Display the response
|
24 |
|
25 |
-
if __name__ == "__main__":
|
26 |
-
chat_interface()
|
27 |
|
|
|
1 |
+
import random
|
2 |
|
3 |
def super_ai_9000(input_text):
|
|
|
4 |
responses = [
|
5 |
"Banana!",
|
6 |
"Did someone say potato?",
|
7 |
"Beep boop... processing... error 404: brain not found",
|
8 |
"Is that a squirrel?"
|
9 |
]
|
|
|
10 |
|
11 |
+
# Add more varied and interesting responses
|
12 |
+
responses.extend([
|
13 |
+
"Tell me more about that.",
|
14 |
+
"That's fascinating!",
|
15 |
+
"What do you think about AI?",
|
16 |
+
"Have you ever seen a platypus?"
|
17 |
+
])
|
18 |
|
19 |
+
return random.choice(responses) # Choose a random response
|
|
|
|
|
|
|
20 |
|
21 |
+
# ... (rest of the chat_interface function remains the same)
|
|
|
22 |
|
|
|
|
|
23 |
|