Merge branch 'main' into style/clean-copied-text

This commit is contained in:
Romuald Wandji 2025-11-28 08:26:10 +01:00 committed by GitHub
commit ea4596e369
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 77 additions and 11 deletions

View file

@ -0,0 +1,66 @@
name: Docker Dev Staging Images Build
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- target: api-build
file: Dockerfile.multi
image_name: lc-dev-staging-api
- target: node
file: Dockerfile
image_name: lc-dev-staging
steps:
# Check out the repository
- name: Checkout
uses: actions/checkout@v4
# Set up QEMU
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
# Set up Docker Buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Log in to GitHub Container Registry
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Login to Docker Hub
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# Prepare the environment
- name: Prepare environment
run: |
cp .env.example .env
# Build and push Docker images for each target
- name: Build and push Docker images
uses: docker/build-push-action@v5
with:
context: .
file: ${{ matrix.file }}
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ github.sha }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:latest
${{ secrets.DOCKERHUB_USERNAME }}/${{ matrix.image_name }}:${{ github.sha }}
${{ secrets.DOCKERHUB_USERNAME }}/${{ matrix.image_name }}:latest
platforms: linux/amd64,linux/arm64
target: ${{ matrix.target }}

View file

@ -47,7 +47,7 @@
"@langchain/google-genai": "^0.2.13",
"@langchain/google-vertexai": "^0.2.13",
"@langchain/textsplitters": "^0.1.0",
"@librechat/agents": "^3.0.32",
"@librechat/agents": "^3.0.33",
"@librechat/api": "*",
"@librechat/data-schemas": "*",
"@microsoft/microsoft-graph-client": "^3.0.7",

18
package-lock.json generated
View file

@ -61,7 +61,7 @@
"@langchain/google-genai": "^0.2.13",
"@langchain/google-vertexai": "^0.2.13",
"@langchain/textsplitters": "^0.1.0",
"@librechat/agents": "^3.0.32",
"@librechat/agents": "^3.0.33",
"@librechat/api": "*",
"@librechat/data-schemas": "*",
"@microsoft/microsoft-graph-client": "^3.0.7",
@ -16263,9 +16263,9 @@
}
},
"node_modules/@librechat/agents": {
"version": "3.0.32",
"resolved": "https://registry.npmjs.org/@librechat/agents/-/agents-3.0.32.tgz",
"integrity": "sha512-6g7lLuEpot3vrHqgDZzPyrISvUshyWRINdnvkQsQf951QjdcFZuqmQ9mpUcaNQbczHBS4k5DLYIBUK+qzG/eiw==",
"version": "3.0.33",
"resolved": "https://registry.npmjs.org/@librechat/agents/-/agents-3.0.33.tgz",
"integrity": "sha512-Y/bobhsAPgffq2RGEQU542EJR0Va3yZEJLCEZWSG9BqgHS1ekhIiwxdD3UjhAv1Efh1J5BN3+NX+vyVuoZDjQQ==",
"license": "MIT",
"dependencies": {
"@langchain/anthropic": "^0.3.26",
@ -46140,7 +46140,7 @@
},
"packages/api": {
"name": "@librechat/api",
"version": "1.5.0",
"version": "1.6.0",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.21.5",
@ -46180,7 +46180,7 @@
"@azure/storage-blob": "^12.27.0",
"@keyv/redis": "^4.3.3",
"@langchain/core": "^0.3.79",
"@librechat/agents": "^3.0.32",
"@librechat/agents": "^3.0.33",
"@librechat/data-schemas": "*",
"@modelcontextprotocol/sdk": "^1.21.0",
"axios": "^1.12.1",
@ -46246,7 +46246,7 @@
},
"packages/client": {
"name": "@librechat/client",
"version": "0.3.2",
"version": "0.4.0",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
@ -46485,7 +46485,7 @@
},
"packages/data-provider": {
"name": "librechat-data-provider",
"version": "0.8.020",
"version": "0.8.100",
"license": "ISC",
"dependencies": {
"axios": "^1.12.1",
@ -46544,7 +46544,7 @@
},
"packages/data-schemas": {
"name": "@librechat/data-schemas",
"version": "0.0.23",
"version": "0.0.30",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",

View file

@ -84,7 +84,7 @@
"@azure/storage-blob": "^12.27.0",
"@keyv/redis": "^4.3.3",
"@langchain/core": "^0.3.79",
"@librechat/agents": "^3.0.32",
"@librechat/agents": "^3.0.33",
"@librechat/data-schemas": "*",
"@modelcontextprotocol/sdk": "^1.21.0",
"axios": "^1.12.1",