Eric Botti commited on
Commit ·
c68d320
1
Parent(s): 46ba8c8
increased max tokens
Browse files- src/controllers.py +1 -1
src/controllers.py
CHANGED
|
@@ -10,7 +10,7 @@ def player_input(prompt):
|
|
| 10 |
response = AIMessage(content=input())
|
| 11 |
return response
|
| 12 |
|
| 13 |
-
MAX_TOKENS =
|
| 14 |
|
| 15 |
def controller_from_name(name: str):
|
| 16 |
if name == "tgi":
|
|
|
|
| 10 |
response = AIMessage(content=input())
|
| 11 |
return response
|
| 12 |
|
| 13 |
+
MAX_TOKENS = 50
|
| 14 |
|
| 15 |
def controller_from_name(name: str):
|
| 16 |
if name == "tgi":
|