not-lain commited on
Commit
1322445
·
verified ·
1 Parent(s): 822c8dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -53,7 +53,7 @@ class SupportCrew:
53
  "You need to make sure that you provide the best support! "
54
  "Make sure to provide full complete answers, and make no assumptions."
55
  ),
56
- llm = self.llm
57
  allow_delegation=False,
58
  verbose=True
59
  )
@@ -67,7 +67,7 @@ class SupportCrew:
67
  "You need to make sure that the support representative is providing full "
68
  "complete answers, and make no assumptions."
69
  ),
70
- llm = self.llm
71
  verbose=True
72
  )
73
 
 
53
  "You need to make sure that you provide the best support! "
54
  "Make sure to provide full complete answers, and make no assumptions."
55
  ),
56
+ llm = self.llm,
57
  allow_delegation=False,
58
  verbose=True
59
  )
 
67
  "You need to make sure that the support representative is providing full "
68
  "complete answers, and make no assumptions."
69
  ),
70
+ llm = self.llm,
71
  verbose=True
72
  )
73