Skip to content

Commit 44ec44e

Browse files
committed
Fix LLM model name typo
1 parent 38297fa commit 44ec44e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ passwordRegex: "^(root|qwerty|Smoker666|123456|jenkins|minecraft|sinus|alex|post
229229
deadlineTimeoutSeconds: 60
230230
plugin:
231231
llmProvider: "openai"
232-
llmModel: "gpt4-o" #Models https://platform.openai.com/docs/models
232+
llmModel: "gpt-4o" #Models https://platform.openai.com/docs/models
233233
openAISecretKey: "sk-proj-123456"
234234
```
235235
@@ -268,7 +268,7 @@ passwordRegex: "^(root|qwerty|Smoker666|123456|jenkins|minecraft|sinus|alex|post
268268
deadlineTimeoutSeconds: 60
269269
plugin:
270270
llmProvider: "openai"
271-
llmModel: "gpt4-o"
271+
llmModel: "gpt-4o"
272272
openAISecretKey: "sk-proj-123456"
273273
prompt: "You will act as an Ubuntu Linux terminal. The user will type commands, and you are to reply with what the terminal should show. Your responses must be contained within a single code block."
274274
```

configurations/services/ssh-2222.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ passwordRegex: "^(root|qwerty|Smoker666|123456|jenkins|minecraft|sinus|alex|post
1111
deadlineTimeoutSeconds: 6000
1212
plugin:
1313
llmProvider: "openai"
14-
llmModel: "gpt4-o"
14+
llmModel: "gpt-4o"
1515
openAISecretKey: "sk-proj-12345"

plugins/beelzebub-cloud_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func TestGetHoneypotsConfigurationsWithResults(t *testing.T) {
8585
resp, err := httpmock.NewJsonResponse(200, &[]HoneypotConfigResponseDTO{
8686
{
8787
ID: "123456",
88-
Config: "apiVersion: \"v1\"\nprotocol: \"ssh\"\naddress: \":2222\"\ndescription: \"SSH interactive ChatGPT\"\ncommands:\n - regex: \"^(.+)$\"\n plugin: \"LLMHoneypot\"\nserverVersion: \"OpenSSH\"\nserverName: \"ubuntu\"\npasswordRegex: \"^(root|qwerty|Smoker666|123456|jenkins|minecraft|sinus|alex|postgres|Ly123456)$\"\ndeadlineTimeoutSeconds: 60\nplugin:\n llmModel: \"gpt4-o\"\n openAISecretKey: \"1234\"\n",
88+
Config: "apiVersion: \"v1\"\nprotocol: \"ssh\"\naddress: \":2222\"\ndescription: \"SSH interactive ChatGPT\"\ncommands:\n - regex: \"^(.+)$\"\n plugin: \"LLMHoneypot\"\nserverVersion: \"OpenSSH\"\nserverName: \"ubuntu\"\npasswordRegex: \"^(root|qwerty|Smoker666|123456|jenkins|minecraft|sinus|alex|postgres|Ly123456)$\"\ndeadlineTimeoutSeconds: 60\nplugin:\n llmModel: \"gpt-4o\"\n openAISecretKey: \"1234\"\n",
8989
TokenID: "1234567",
9090
},
9191
})
@@ -120,7 +120,7 @@ func TestGetHoneypotsConfigurationsWithResults(t *testing.T) {
120120
PasswordRegex: "^(root|qwerty|Smoker666|123456|jenkins|minecraft|sinus|alex|postgres|Ly123456)$",
121121
DeadlineTimeoutSeconds: 60,
122122
Plugin: parser.Plugin{
123-
LLMModel: "gpt4-o",
123+
LLMModel: "gpt-4o",
124124
OpenAISecretKey: "1234",
125125
},
126126
},

0 commit comments

Comments
 (0)