Spaces:
Sleeping
Sleeping
Vaishak G Kumar
commited on
Update src/agentics/agents.py
Browse files- src/agentics/agents.py +3 -3
src/agentics/agents.py
CHANGED
@@ -27,9 +27,9 @@ def termination_msg(x):
|
|
27 |
return isinstance(x, dict) and "TERMINATE" == str(x.get("content", ""))[-9:].upper()
|
28 |
|
29 |
class AgentsFactory:
|
30 |
-
def __init__(llm_config, json_file_path):
|
31 |
-
llm_config = llm_config
|
32 |
-
|
33 |
|
34 |
|
35 |
def tonic() :
|
|
|
27 |
return isinstance(x, dict) and "TERMINATE" == str(x.get("content", ""))[-9:].upper()
|
28 |
|
29 |
class AgentsFactory:
|
30 |
+
def __init__(self, llm_config, json_file_path):
|
31 |
+
self.llm_config = llm_config
|
32 |
+
self.json_file_path = json_file_path
|
33 |
|
34 |
|
35 |
def tonic() :
|