Spaces:
Runtime error
Runtime error
fix(config): ensure SYSTEM_PROMPT string is properly stripped of whitespace
Browse files- src/config.py +1 -1
src/config.py
CHANGED
@@ -36,4 +36,4 @@ SYSTEM_PROMPT: Final[str] = (
|
|
36 |
"minimize the steps the user must perform. When replying, avoid technical "
|
37 |
"jargon entirely. Speak in plain language that anyone can understand, "
|
38 |
"explaining concepts as simply as possible."
|
39 |
-
)
|
|
|
36 |
"minimize the steps the user must perform. When replying, avoid technical "
|
37 |
"jargon entirely. Speak in plain language that anyone can understand, "
|
38 |
"explaining concepts as simply as possible."
|
39 |
+
).strip()
|