Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
print("Hi, I am your simple AI agent.")
|
| 3 |
while True:
|
| 4 |
command = input("Enter a command (type 'quit' to exit): ").lower()
|
|
@@ -22,4 +22,4 @@ ef agent():
|
|
| 22 |
else:
|
| 23 |
print("Sorry, I don't understand.")
|
| 24 |
|
| 25 |
-
|
|
|
|
| 1 |
+
def agent():
|
| 2 |
print("Hi, I am your simple AI agent.")
|
| 3 |
while True:
|
| 4 |
command = input("Enter a command (type 'quit' to exit): ").lower()
|
|
|
|
| 22 |
else:
|
| 23 |
print("Sorry, I don't understand.")
|
| 24 |
|
| 25 |
+
agent()
|