├── .github └── workflows │ └── update-models.yml ├── .gitignore ├── README.md ├── icons ├── NeurochainAI.png └── nvidia.png ├── librechat-env-f.yaml ├── librechat-env-l.yaml ├── librechat-test.yaml ├── librechat-up-f.yaml ├── librechat-up-l.yaml └── scripts ├── .env.example ├── README.md ├── ai302.py ├── apipie.py ├── automated_update.py ├── cohere.py ├── convert_yaml_style.py ├── deepseek.py ├── fireworks.py ├── github.py ├── glhf.py ├── groq.py ├── huggingface.py ├── hyperbolic.py ├── kluster.py ├── mistral.py ├── nanogpt.py ├── nvidia.py ├── openrouter.py ├── perplexity.py ├── requirements.txt ├── sambanova.py ├── togetherai.py ├── unify.py ├── update.py ├── update_models.py └── xai.py /.github/workflows/update-models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/.github/workflows/update-models.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/README.md -------------------------------------------------------------------------------- /icons/NeurochainAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/icons/NeurochainAI.png -------------------------------------------------------------------------------- /icons/nvidia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/icons/nvidia.png -------------------------------------------------------------------------------- /librechat-env-f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/librechat-env-f.yaml -------------------------------------------------------------------------------- /librechat-env-l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/librechat-env-l.yaml -------------------------------------------------------------------------------- /librechat-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/librechat-test.yaml -------------------------------------------------------------------------------- /librechat-up-f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/librechat-up-f.yaml -------------------------------------------------------------------------------- /librechat-up-l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/librechat-up-l.yaml -------------------------------------------------------------------------------- /scripts/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/.env.example -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/ai302.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/ai302.py -------------------------------------------------------------------------------- /scripts/apipie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/apipie.py -------------------------------------------------------------------------------- /scripts/automated_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/automated_update.py -------------------------------------------------------------------------------- /scripts/cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/cohere.py -------------------------------------------------------------------------------- /scripts/convert_yaml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/convert_yaml_style.py -------------------------------------------------------------------------------- /scripts/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/deepseek.py -------------------------------------------------------------------------------- /scripts/fireworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/fireworks.py -------------------------------------------------------------------------------- /scripts/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/github.py -------------------------------------------------------------------------------- /scripts/glhf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/glhf.py -------------------------------------------------------------------------------- /scripts/groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/groq.py -------------------------------------------------------------------------------- /scripts/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/huggingface.py -------------------------------------------------------------------------------- /scripts/hyperbolic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/hyperbolic.py -------------------------------------------------------------------------------- /scripts/kluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/kluster.py -------------------------------------------------------------------------------- /scripts/mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/mistral.py -------------------------------------------------------------------------------- /scripts/nanogpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/nanogpt.py -------------------------------------------------------------------------------- /scripts/nvidia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/nvidia.py -------------------------------------------------------------------------------- /scripts/openrouter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/openrouter.py -------------------------------------------------------------------------------- /scripts/perplexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/perplexity.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /scripts/sambanova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/sambanova.py -------------------------------------------------------------------------------- /scripts/togetherai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/togetherai.py -------------------------------------------------------------------------------- /scripts/unify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/unify.py -------------------------------------------------------------------------------- /scripts/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/update.py -------------------------------------------------------------------------------- /scripts/update_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/update_models.py -------------------------------------------------------------------------------- /scripts/xai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreChat-AI/librechat-config-yaml/HEAD/scripts/xai.py --------------------------------------------------------------------------------