Mxytyu commited on
Commit
c6526a4
·
verified ·
1 Parent(s): 4a880ed

Update model.safetensors

Browse files
Files changed (1) hide show
  1. model.safetensors +10 -14
model.safetensors CHANGED
@@ -1,27 +1,23 @@
1
- import random # For the AI's "randomness"
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
- def chat_interface():
14
- """The main chat loop."""
15
- print("Welcome to Super AI 9000! (The one that runs on AA batteries)")
 
 
 
 
16
 
17
- while True:
18
- user_input = input("You: ")
19
- if user_input.lower() == "exit":
20
- break # Exit the chat
21
 
22
- ai_response = super_ai_9000(user_input) # Get the AI's response
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