Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ service:
category: optional
depends_on: []
compose_file: compose.yaml
env_vars:
- key: OPEN_INTERPRETER_API_KEY
description: API key for Open Interpreter authentication (required — compose will fail without it)
required: true
secret: true
description: |
Open Interpreter lets LLMs run code locally (Python, JavaScript, Shell, etc.).
It provides a ChatGPT-like interface in your terminal and can control Chrome,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ service:
compose_file: compose.yaml
category: optional
depends_on: []
env_vars: []
env_vars:
- key: WEAVIATE_API_KEY
description: API key for Weaviate authentication (required — compose will fail without it)
required: true
secret: true
description: |
Weaviate is an open-source vector database that stores both objects and vectors.
Supports semantic search, hybrid search, structured filtering, and multi-tenancy.
Expand Down
Loading