Skip to content
This repository was archived by the owner on Jul 1, 2024. It is now read-only.

Commit c7a6094

Browse files
committed
Fri Apr 19 19:45:12 PDT 2024
1 parent 133adf3 commit c7a6094

3 files changed

Lines changed: 37 additions & 3 deletions

File tree

ollama/config.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Ollama"
2+
description: "Ollama addon"
3+
version: "0.0.0"
4+
slug: "ollama"
5+
init: false
6+
arch:
7+
- aarch64
8+
- amd64
9+
ports:
10+
11434/tcp: 11434
11+
image: ollama/ollama:latest
12+
homeassistant_api: true
13+
ingress: true
14+
ingress_port: 11434

server/Dockerfile.addon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ LABEL \
3838
io.hass.version=${BUILD_VERSION} \
3939
io.hass.base.version=${BUILD_VERSION} \
4040
io.hass.base.name="debian" \
41-
io.hass.base.image="ghcr.io/0x77dev/ava/hass_ava_server" \
41+
io.hass.base.image="ghcr.io/0x77dev/ava/server" \
4242
maintainer="Mykhailo Marynenko <mykhailo@0x77.dev>" \
4343
org.opencontainers.image.title="ava Server for ${BUILD_ARCH}" \
4444
org.opencontainers.image.description="ava Server Add-on: ${BUILD_ARCH} bun debian v1 image" \

server/config.yaml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,34 @@
11
name: "Ava Server"
22
description: "Self-hosted personal assistant in minutes with built-in Home Assistant integration and great extensibility and customizability."
33
version: "0.0.0"
4-
slug: "hass_ava_server"
4+
slug: "server"
55
init: false
66
arch:
77
- aarch64
88
- amd64
99
ports:
1010
2881/tcp: 2881
11-
image: ghcr.io/0x77dev/ava/hass_ava_server
11+
image: ghcr.io/0x77dev/ava/server:edge
1212
homeassistant_api: true
1313
ingress: true
1414
ingress_port: 2881
15+
options:
16+
llm:
17+
namespace: anthropic
18+
token: "your token"
19+
model: claude-3-opus-20240229
20+
embeddings:
21+
namespace: ollama
22+
baseURL: "http://04c4e5a1-ollama:11434"
23+
model: nomic-embed-text
24+
schema:
25+
llm:
26+
namespace: str
27+
model: "str"
28+
token: "str?"
29+
baseURL: "str?"
30+
embeddings:
31+
namespace: str
32+
model: "str"
33+
token: "str?"
34+
baseURL: "str?"

0 commit comments

Comments
 (0)