Publish new changes in catalog [skip ci]

This commit is contained in:
sonicaj
2025-11-26 12:37:16 +00:00
parent 39c8536704
commit de3422bb33
76 changed files with 11 additions and 2 deletions

View File

@@ -48,4 +48,4 @@ sources:
- https://github.com/LibreChat/LibreChat
title: LibreChat
train: community
version: 1.0.10
version: 1.0.11

View File

@@ -84,6 +84,13 @@ questions:
schema:
type: boolean
default: true
- variable: openai_api_key
label: OpenAI API Key
schema:
type: string
default: "user_provided"
required: true
private: true
- variable: additional_envs
label: Additional Environment Variables
schema:

View File

@@ -44,6 +44,7 @@
{% do c1.environment.add_env("RAG_PORT", values.consts.rag_port_number) %}
{% do c1.environment.add_env("RAG_API_URL", "http://%s:%d"|format(values.consts.rag_container_name, values.consts.rag_port_number)) %}
{% do c1.environment.add_env("ALLOW_REGISTRATION", values.librechat.allow_registration) %}
{% do c1.environment.add_env("OPENAI_API_KEY", values.librechat.openai_api_key) %}
{% do c1.environment.add_user_envs(values.librechat.additional_envs) %}
{% do c1.add_port(values.network.web_port) %}
@@ -77,7 +78,7 @@
{% do rag.environment.add_env("POSTGRES_DB", values.consts.db_name) %}
{% do rag.environment.add_env("POSTGRES_USER", values.consts.db_user) %}
{% do rag.environment.add_env("POSTGRES_PASSWORD", values.librechat.pg_db_password) %}
{% do rag.environment.add_env("OPENAI_API_KEY", "test") %}
{% do rag.environment.add_env("OPENAI_API_KEY", values.librechat.openai_api_key) %}
{% do rag.environment.add_user_envs(values.librechat.additional_envs) %}
{% if perm_container.has_actions() %}

View File

@@ -11,6 +11,7 @@ librechat:
jwt_secret: secret
jwt_refresh_secret: secret
allow_registration: true
openai_api_key: user_provided
additional_envs: []
run_as: