From aad9564e817486251ddebdf9217b228d0e649779 Mon Sep 17 00:00:00 2001 From: geens Date: Wed, 13 Nov 2024 11:43:48 +0100 Subject: [PATCH] Added examples to action schema --- action_schema.xsd | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/action_schema.xsd b/action_schema.xsd index b131bfc..8f22353 100644 --- a/action_schema.xsd +++ b/action_schema.xsd @@ -1,4 +1,7 @@ + @@ -17,6 +22,8 @@ Stop command terminates the agent gracefully. For the main SIA instance this will trigger an update and restart. For sub-instances this is the correct way to stop after all tasks are complete. + Example: + --> @@ -26,6 +33,10 @@ Single script that runs once and completes. Output is stored in context until explicitly deleted. Used for one-time operations like file manipulation. + Example: + + ls / + --> @@ -40,6 +51,10 @@ After a command is issued, all repeat scripts in context are run again. Useful for monitoring changing files or viewing results immediately after changing a file. Repeat scripts should execute quickly to avoid blocking the agent. + Example: + + ls / + --> @@ -53,6 +68,10 @@ As an agent it is important to reason about your actions and their results. In a reasoning action you can write freeform text. This is also stored in context until deleted. + Example: + + I should explore the file system for interesting files. + --> @@ -64,6 +83,8 @@ @@ -72,6 +93,10 @@