blob: 0670de779ec3b9d67215d3951796296b5bf365f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# milla
Milla is an IRC bot that sends things over to ollama when you ask her questions.
### Config
config:
```
ircServer = "myaswesomeircserver.com"
ircPort = 6697
ircNick = "milla"
ircSaslUser = "milla"
ircSaslPass = "myaswesomepassword"
ircChannel = "#myaswesomechannel"
ollamaEndpoint = "http://172.17.0.1:11434/api/generate"
ollamaTemp = 0.2
ollamaSystem = ""
requestTimeout = 10
millaReconnectDelay = 60
enableSasl = true
model = "llama2-uncensored"
chromaStyle = "rose-pine-moon"
chromaFormatter = "terminal256"
```
### Deploy
You can use the provided compose file:<br/>
```yaml
version: "3.9"
services:
milla:
image: milla
build:
context: .
deploy:
resources:
limits:
memory: 64M
logging:
driver: "json-file"
options:
max-size: "100m"
networks:
- millanet
restart: unless-stopped
volumes:
- ./config.toml:/opt/milla/config.toml
cap_drop:
- ALL
dns:
- 9.9.9.9
environment:
- SERVER_DEPLOYMENT_TYPE=deployment
entrypoint: ["/milla/milla"]
networks:
millanet:
```
|