Update app.py
Browse files
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 |
|