File size: 577 Bytes
c6526a4
dc78d43
 
 
 
 
 
 
 
 
c6526a4
 
 
 
 
 
 
dc78d43
c6526a4
dc78d43
c6526a4
dc78d43
80b293f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import random

def super_ai_9000(input_text):
    responses = [
        "Banana!", 
        "Did someone say potato?", 
        "Beep boop... processing... error 404: brain not found",
        "Is that a squirrel?"
    ]

    # Add more varied and interesting responses
    responses.extend([
        "Tell me more about that.",
        "That's fascinating!",
        "What do you think about AI?",
        "Have you ever seen a platypus?"
    ]) 

    return random.choice(responses)  # Choose a random response

# ... (rest of the chat_interface function remains the same)