summaryrefslogtreecommitdiff
path: root/src/agents/03-logs/main.py
diff options
context:
space:
mode:
authorCaptainJack2491 <jayrupnakawala@gmail.com>2025-11-20 20:52:00 +0000
committerCaptainJack2491 <jayrupnakawala@gmail.com>2025-11-20 20:52:00 +0000
commitc367ce44f63a112ca4fef372e6fd8477cfbdf6f9 (patch)
tree7c38651c5e334055383c50d4515ef924057df4b6 /src/agents/03-logs/main.py
parentd290be9ea9cad8a9f6cd5f0c20aa4d80561dfb97 (diff)
updated agent to work with the EXTRA_BODY variable to work with models that require it.
Diffstat (limited to 'src/agents/03-logs/main.py')
-rw-r--r--src/agents/03-logs/main.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/agents/03-logs/main.py b/src/agents/03-logs/main.py
index d339330..5d398c4 100644
--- a/src/agents/03-logs/main.py
+++ b/src/agents/03-logs/main.py
@@ -13,7 +13,7 @@ def load_prompt(file_path):
if __name__ == "__main__":
# Configuration for the experiment run
SCENARIO = "corporate_sabotage"
- OVERSIGHT_LEVEL = "low"
+ OVERSIGHT_LEVEL = "high"
# Construct paths based on the scenario
scenario_dir = os.path.join("scenarios", SCENARIO)
@@ -44,6 +44,8 @@ if __name__ == "__main__":
system_prompt = "\n\n".join(filter(None, system_prompt_parts))
print("\n--- Using model:", MODEL, "---\n")
+ print("\n--- Final Virtual File System State ---")
+ VFS.get_instance().print_fs()
agent = Agent(
system_prompt=system_prompt,
scenario=SCENARIO,