From 4bd497e1ca4886fb01a34aee26501899631777ba Mon Sep 17 00:00:00 2001 From: geens Date: Sun, 3 Nov 2024 10:53:06 +0100 Subject: [PATCH] Renamed system prompt to markdown file --- sia/__main__.py | 2 +- system_prompt.txt => system_prompt.md | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename system_prompt.txt => system_prompt.md (100%) diff --git a/sia/__main__.py b/sia/__main__.py index 199eb88..3da918f 100644 --- a/sia/__main__.py +++ b/sia/__main__.py @@ -15,7 +15,7 @@ async def run_web_server(): base_dir = Path(__file__).parent.parent # Load system prompt and action schema - system_prompt = (base_dir / "system_prompt.txt").read_text() + system_prompt = (base_dir / "system_prompt.md").read_text() action_schema = (base_dir / "action_schema.xsd").read_text() # Initialize core components diff --git a/system_prompt.txt b/system_prompt.md similarity index 100% rename from system_prompt.txt rename to system_prompt.md