Spaces:
Runtime error
Runtime error
Update src/core/cognitive_engine.py
Browse files
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 |
-
|
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)
|