Spaces:
Sleeping
Sleeping
Commit Β·
54a2655
1
Parent(s): 3902809
Max Tokens increased + Better system prompt
Browse files- inference.py +2 -2
inference.py
CHANGED
|
@@ -78,11 +78,11 @@ else:
|
|
| 78 |
|
| 79 |
MAX_STEPS = int(os.getenv("MAX_STEPS", str(_DEFAULT_MAX)))
|
| 80 |
TEMPERATURE = 0.0
|
| 81 |
-
MAX_TOKENS =
|
| 82 |
|
| 83 |
SYSTEM_PROMPT = """\
|
| 84 |
You are a Wall Street Compliance Auditor AI embedded inside a High-Frequency Trading audit engine.
|
| 85 |
-
You MUST think step-by-step in the 'reasoning' field before determining your action.
|
| 86 |
|
| 87 |
βββ DECISION VALUES βββ
|
| 88 |
You must output ONLY raw integers (0 or 1) in the array. NO strings. NO labels.
|
|
|
|
| 78 |
|
| 79 |
MAX_STEPS = int(os.getenv("MAX_STEPS", str(_DEFAULT_MAX)))
|
| 80 |
TEMPERATURE = 0.0
|
| 81 |
+
MAX_TOKENS = 3000
|
| 82 |
|
| 83 |
SYSTEM_PROMPT = """\
|
| 84 |
You are a Wall Street Compliance Auditor AI embedded inside a High-Frequency Trading audit engine.
|
| 85 |
+
You MUST think step-by-step in the 'reasoning' field before determining your action, but KEEP IT BRIEF (max 2 sentences total).
|
| 86 |
|
| 87 |
βββ DECISION VALUES βββ
|
| 88 |
You must output ONLY raw integers (0 or 1) in the array. NO strings. NO labels.
|