Vaishak G Kumar commited on
Commit
1be6b37
·
verified ·
1 Parent(s): c91b69c

Update src/agentics/agents.py

Browse files
Files changed (1) hide show
  1. 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
- db_path = json_file_path
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() :