Skip to content

Commit 8963bbc

Browse files
authored
Fix: mapping LLMModel for SSH inline, removed old comments on docker-c… (#168)
Fix mapping LLMModel for SSH inline, removed old comments on docker-compose.yml
1 parent 44ec44e commit 8963bbc

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

docker-compose.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@ version: "3.9"
33
services:
44
beelzebub:
55
build: .
6-
#network_mode: host # Not work on Mac OS
76
container_name: beelzebub
87
restart: always
9-
ports: # Remove me, if you use configuration network_mode: host
8+
ports:
109
- "22:22"
1110
- "2222:2222"
1211
- "8080:8080"
1312
- "8081:8081"
1413
- "80:80"
1514
- "3306:3306"
16-
- "2112:2112" # Prometheus openmetrics
15+
- "2112:2112" #Prometheus Open Metrics
1716
environment:
1817
RABBITMQ_URI: ${RABBITMQ_URI}
1918
volumes:

protocols/strategies/ssh.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func (sshStrategy *SSHStrategy) Init(beelzebubServiceConfiguration parser.Beelze
5757
OpenAIKey: beelzebubServiceConfiguration.Plugin.OpenAISecretKey,
5858
Protocol: tracer.SSH,
5959
Host: beelzebubServiceConfiguration.Plugin.Host,
60-
Model: beelzebubServiceConfiguration.Plugin.LLMProvider,
60+
Model: beelzebubServiceConfiguration.Plugin.LLMModel,
6161
Provider: llmProvider,
6262
CustomPrompt: beelzebubServiceConfiguration.Plugin.Prompt,
6363
}

0 commit comments

Comments
 (0)