Spaces:
Sleeping
Sleeping
cxumol
commited on
add is_debug back as class attribute
Browse files- app/taskAI.py +3 -2
app/taskAI.py
CHANGED
@@ -68,10 +68,10 @@ Before officially write the letter, think step by step. First, list what makes a
|
|
68 |
|
69 |
## tasks
|
70 |
class TaskAI(OpenAILike):
|
71 |
-
|
|
|
72 |
def __init__(self, api: dict[str, str], is_debug=False, **kwargs):
|
73 |
log = logger.info
|
74 |
-
self.is_debug : bool = is_debug
|
75 |
|
76 |
def guess_window_size(model=api["model"]):
|
77 |
_mid = model.lower()
|
@@ -97,6 +97,7 @@ class TaskAI(OpenAILike):
|
|
97 |
context_window=guess_window_size(),
|
98 |
**kwargs,
|
99 |
)
|
|
|
100 |
|
101 |
def _debug_print_msg(self, msg):
|
102 |
if not self.is_debug:
|
|
|
68 |
|
69 |
## tasks
|
70 |
class TaskAI(OpenAILike):
|
71 |
+
is_debug: bool = False
|
72 |
+
|
73 |
def __init__(self, api: dict[str, str], is_debug=False, **kwargs):
|
74 |
log = logger.info
|
|
|
75 |
|
76 |
def guess_window_size(model=api["model"]):
|
77 |
_mid = model.lower()
|
|
|
97 |
context_window=guess_window_size(),
|
98 |
**kwargs,
|
99 |
)
|
100 |
+
self.is_debug = is_debug
|
101 |
|
102 |
def _debug_print_msg(self, msg):
|
103 |
if not self.is_debug:
|