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