Leonydis137 commited on
Commit
e583ac6
·
verified ·
1 Parent(s): d119152

Update src/core/cognitive_engine.py

Browse files
Files changed (1) hide show
  1. src/core/cognitive_engine.py +1 -3
src/core/cognitive_engine.py CHANGED
@@ -6,9 +6,7 @@ import re
6
  class CognitiveEngine:
7
  def __init__(self, model):
8
  self.model = model
9
- self.knowledge_file = "knowledge/state.json"
10
- self.load_knowledge()
11
-
12
  def identify_improvements(self, task_description):
13
  prompt = f"What improvements can be made to the following task?\n\nTask: {task_description}\n\nRespond with 3 bullet points."
14
  response = self.model(prompt)
 
6
  class CognitiveEngine:
7
  def __init__(self, model):
8
  self.model = model
9
+
 
 
10
  def identify_improvements(self, task_description):
11
  prompt = f"What improvements can be made to the following task?\n\nTask: {task_description}\n\nRespond with 3 bullet points."
12
  response = self.model(prompt)