docs: fix langchain-chroma example (#298)
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com>swagger2
parent
5a6d9d4e5b
commit
549a01b62e
@ -0,0 +1,5 @@ |
||||
THREADS=4 |
||||
CONTEXT_SIZE=512 |
||||
MODELS_PATH=/models |
||||
DEBUG=true |
||||
# BUILD_TYPE=generic |
@ -0,0 +1,4 @@ |
||||
db/ |
||||
state_of_the_union.txt |
||||
models/bert |
||||
models/ggml-gpt4all-j |
@ -0,0 +1,15 @@ |
||||
version: '3.6' |
||||
|
||||
services: |
||||
api: |
||||
image: quay.io/go-skynet/local-ai:latest |
||||
build: |
||||
context: ../../ |
||||
dockerfile: Dockerfile |
||||
ports: |
||||
- 8080:8080 |
||||
env_file: |
||||
- ../../.env |
||||
volumes: |
||||
- ./models:/models:cached |
||||
command: ["/usr/bin/local-ai"] |
@ -1,5 +1,6 @@ |
||||
name: text-embedding-ada-002 |
||||
parameters: |
||||
model: bert |
||||
threads: 4 |
||||
backend: bert-embeddings |
||||
embeddings: true |
||||
|
Loading…
Reference in new issue