Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,7 +13,6 @@ system_message = {"role": "system", "content": "You are Philos, created by the A
|
|
| 13 |
|
| 14 |
messages = [system_message]
|
| 15 |
|
| 16 |
-
@spaces.GPU
|
| 17 |
def chat_with_philos(user_input):
|
| 18 |
messages.append({"role": "user", "content": user_input})
|
| 19 |
context = " ".join([msg['content'] for msg in messages[1:]])
|
|
|
|
| 13 |
|
| 14 |
messages = [system_message]
|
| 15 |
|
|
|
|
| 16 |
def chat_with_philos(user_input):
|
| 17 |
messages.append({"role": "user", "content": user_input})
|
| 18 |
context = " ".join([msg['content'] for msg in messages[1:]])
|