Skip to content

Commit e2e210e

Browse files
taruntarun
authored andcommitted
folder breakdown ebg get func
1 parent 5ef3c3e commit e2e210e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Sources/FatherOfGeorge/EBG.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,12 @@ def run_task(self, task_description: str, context: dict = None) -> dict:
9494
"error": None,
9595
}
9696
return results
97+
98+
def get_prompt(self, prompt_name: str) -> str:
99+
f = open(Path(__file__).parent / "prompts_EBG" / prompt_name, 'r')
100+
prompt = f.read()
101+
f.close()
102+
return prompt
97103

98104

99105
def main():

0 commit comments

Comments
 (0)