iQuentin commited on
Commit
f247e7b
·
verified ·
1 Parent(s): f591f5b

messing with system_prompt attribute

Browse files
Files changed (1) hide show
  1. agent.py +2 -1
agent.py CHANGED
@@ -29,7 +29,8 @@ class QAgent:
29
  QAgent description
30
  """
31
  print(f"Begin QAgent init with: ")
32
- print(f"self.system_prompt = {self.system_prompt or "empty"}, system_prompt = {system_prompt}")
 
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