From 1dd3bbfdf372ae63c4f4a33f7428595b8428f85a Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Mon, 17 Jun 2024 09:16:19 -0700 Subject: [PATCH 1/3] Updated cyber summary. --- patterns/create_cyber_summary/system.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/patterns/create_cyber_summary/system.md b/patterns/create_cyber_summary/system.md index 89a6726..c80e206 100644 --- a/patterns/create_cyber_summary/system.md +++ b/patterns/create_cyber_summary/system.md @@ -26,13 +26,11 @@ The goals of this exercise are create a solid summary of all the different types - Output a bulleted list of items within each sections above, maximum of 10 items per section. Keep each item to 25-words or less. -- After each item, link to the story if you have the source, e.g., BLEEPINGCOMPUTER - EXAMPLE OUTPUT # VULNERABILITIES -- There's a new critical vulnerability in Windows 10 that allows attackers to take over the entire system as admin. BLEEPINGCOMPUTER +- There's a new critical vulnerability in Windows 10 that allows attackers to take over the entire system as admin. END EXAMPLES From dad02cda33a2b20647c9ca71ab0159feb045310e Mon Sep 17 00:00:00 2001 From: azmaveth Date: Thu, 20 Jun 2024 12:43:26 -0500 Subject: [PATCH 2/3] Update utils.py to support Claude 3.5 Sonnet --- installer/client/cli/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/client/cli/utils.py b/installer/client/cli/utils.py index 9e7cea2..5bf673a 100644 --- a/installer/client/cli/utils.py +++ b/installer/client/cli/utils.py @@ -407,7 +407,7 @@ class Standalone: fullOllamaList = [] googleList = [] if "CLAUDE_API_KEY" in os.environ: - claudeList = ['claude-3-opus-20240229', 'claude-3-sonnet-20240229', + claudeList = ['claude-3-opus-20240229', 'claude-3-5-sonnet-20240620', 'claude-3-haiku-20240307', 'claude-2.1'] else: claudeList = [] From e1fc5517f54d0f952030aefa9ad38e0a84df1fa4 Mon Sep 17 00:00:00 2001 From: azmaveth Date: Thu, 20 Jun 2024 13:01:46 -0500 Subject: [PATCH 3/3] Update utils.py to add Claude 3 Sonnet back in for backwards compatibility --- installer/client/cli/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/client/cli/utils.py b/installer/client/cli/utils.py index 5bf673a..e8715f4 100644 --- a/installer/client/cli/utils.py +++ b/installer/client/cli/utils.py @@ -407,7 +407,7 @@ class Standalone: fullOllamaList = [] googleList = [] if "CLAUDE_API_KEY" in os.environ: - claudeList = ['claude-3-opus-20240229', 'claude-3-5-sonnet-20240620', + claudeList = ['claude-3-5-sonnet-20240620','claude-3-opus-20240229', 'claude-3-sonnet-20240229', 'claude-3-haiku-20240307', 'claude-2.1'] else: claudeList = []