driveripper disk monitor agent deployed
All checks were successful
Podman DDNS Image / build-and-push-ddns (push) Successful in 1m16s

This commit is contained in:
2026-03-23 23:43:28 -04:00
parent b0fb09d706
commit 2ac5f980ac
3 changed files with 33 additions and 5 deletions

View File

@@ -215,7 +215,7 @@ def load_ses_creds() -> AWS_SES_DOTENV:
raw_values = dotenv_values(ses_dotenv_location)
if raw_values:
aws_ses_config = cast(AWS_SES_DOTENV, raw_values)
print(f"AWS SES Credentials loaded: {aws_ses_config}")
# print(f"AWS SES Credentials loaded: {aws_ses_config}")
return aws_ses_config
print("No email credentials supplied. Exiting.")
exit(1)
@@ -302,9 +302,9 @@ def run_conversation(user_message: str, max_tool_calls=10):
print(f"Attempting to call {tool_name} with arguments {arguments}...")
# Give the user a chance to stop a problem before it starts
keep_going = input("Continue? (Y/n) ")
if keep_going.lower() == "n":
exit(1)
# keep_going = input("Continue? (Y/n) ")
# if keep_going.lower() == "n":
# exit(1)
result = execute_tool(tool_name, arguments)