Spaces:
Sleeping
Sleeping
messing with system_prompt attribute
Browse files
agent.py
CHANGED
@@ -29,7 +29,8 @@ class QAgent:
|
|
29 |
QAgent description
|
30 |
"""
|
31 |
print(f"Begin QAgent init with: ")
|
32 |
-
|
|
|
33 |
self.verbose = verbose
|
34 |
self.system_prompt = system_prompt or ""
|
35 |
|
|
|
29 |
QAgent description
|
30 |
"""
|
31 |
print(f"Begin QAgent init with: ")
|
32 |
+
ssp = self.system_prompt or "empty"
|
33 |
+
print(f"self.system_prompt = {ssp}, system_prompt = {system_prompt}")
|
34 |
self.verbose = verbose
|
35 |
self.system_prompt = system_prompt or ""
|
36 |
|