Added code review persona

This commit is contained in:
2024-08-19 16:23:58 -05:00
parent 56db392298
commit c362bd9859
3 changed files with 70 additions and 4 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ class BaseTelegramInferenceBot(ABC):
@staticmethod
def load_system_prompt():
with open("prompts/developer_prompt.txt", "r") as file:
with open(os.environ.get("SYSTEM_PROMPT_PATH"), "r") as file:
return file.read().strip()
@staticmethod