Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] 无法发送图片(100%报错) #6755

Closed
cyo57 opened this issue Mar 6, 2025 · 15 comments
Closed

[Bug] 无法发送图片(100%报错) #6755

cyo57 opened this issue Mar 6, 2025 · 15 comments
Labels
🐛 Bug Something isn't working | 缺陷 Gemini vision

Comments

@cyo57
Copy link

cyo57 commented Mar 6, 2025

📦 Platform

Self hosting Docker

📦 Deploymenet mode

server db(lobe-chat-database image)

📌 Version

lobehub/lobe-chat-database:1.68.7

💻 Operating System

Windows

🌐 Browser

Chrome

🐛 Bug Description

无法向任何发送图片,尝试过的有

  • 硅基/Qwen2VL
  • Gemini 2.0 Flash
  • Gemini 2.0 Pro
  • Doubao1.5-VisionPro

在聊天框内粘贴图片:

Image

按下发送键后无法预览图片并且会报错,无法对话:
Image

  • Qwen2-VL
{
  "error": {
    "status": 400,
    "headers": {
      "content-type": "application/json; charset=utf-8",
      "content-length": "128"
    }
  },
  "provider": "siliconcloud"
}
  • Gemini 2.0 Flash
{
  "error": {
    "message": "[GoogleGenerativeAI Error]: Error fetching from https://MYPROXY.MYPROXY/gemini/v1beta/models/gemini-2.0-flash-exp:streamGenerateContent?alt=sse: [400 Bad Request] Unable to submit request because it has a mimeType parameter with value application/xml, which is not supported. Update the mimeType and try again. Learn more: https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/gemini"
  },
  "provider": "google"
}
  • Doubao 1.5 VisionPro
{
  "error": {
    "code": "InvalidParameter",
    "type": "BadRequest",
    "param": "image_url",
    "message": "Invalid base64 image_url Request id: 02174125756537918eba5266a58c539c83c52fd7ffcXXXXXXXXX"
  },
  "endpoint": "https://ark.cn-beijing.volces.com/api/v3",
  "provider": "volcengine"
}

📷 Recurrence Steps

发送带图片的消息即报错!!

🚦 Expected Behavior

No response

📝 Additional Information

使用官方一键部署脚本,Docker-compose.yaml

root@hw-sh1:~/data/lobechat-db# cat docker-compose.yml 
name: lobe-chat-database
services:
  network-service:
    image: alpine
    container_name: lobe-network
    ports:
      - '${MINIO_PORT}:${MINIO_PORT}' # MinIO API
      - '9001:9001' # MinIO Console
      - '${CASDOOR_PORT}:${CASDOOR_PORT}' # Casdoor
      - '${LOBE_PORT}:3210' # LobeChat
    command: tail -f /dev/null
    networks:
      - lobe-network

  postgresql:
    image: pgvector/pgvector:pg16
    container_name: lobe-postgres
    ports:
      - '5432:5432'
    volumes:
      - './data:/var/lib/postgresql/data'
    environment:
      - 'POSTGRES_DB=${LOBE_DB_NAME}'
      - 'POSTGRES_PASSWORD=${POSTGRES_PASSWORD}'
    healthcheck:
      test: ['CMD-SHELL', 'pg_isready -U postgres']
      interval: 5s
      timeout: 5s
      retries: 5
    restart: always
    networks:
      - lobe-network

  minio:
    image: minio/minio
    container_name: lobe-minio
    network_mode: 'service:network-service'
    volumes:
      - './s3_data:/etc/minio/data'
    environment:
      - 'MINIO_API_CORS_ALLOW_ORIGIN=*'
    env_file:
      - .env
    restart: always
    entrypoint: >
      /bin/sh -c "
        minio server /etc/minio/data --address ':${MINIO_PORT}' --console-address ':9001' &
        MINIO_PID=\$!
        while ! curl -s http://localhost:${MINIO_PORT}/minio/health/live; do
          echo 'Waiting for MinIO to start...'
          sleep 1
        done
        sleep 5
        mc alias set myminio http://localhost:${MINIO_PORT} ${MINIO_ROOT_USER} ${MINIO_ROOT_PASSWORD}
        echo 'Creating bucket ${MINIO_LOBE_BUCKET}'
        mc mb myminio/${MINIO_LOBE_BUCKET}
        wait \$MINIO_PID
      "

  casdoor:
    image: casbin/casdoor
    container_name: lobe-casdoor
    entrypoint: /bin/sh -c './server --createDatabase=true'
    network_mode: 'service:network-service'
    depends_on:
      postgresql:
        condition: service_healthy
    environment:
      RUNNING_IN_DOCKER: 'true'
      driverName: 'postgres'
      dataSourceName: 'user=postgres password=${POSTGRES_PASSWORD} host=postgresql port=5432 sslmode=disable dbname=casdoor'
      runmode: 'dev'
    volumes:
      - ./init_data.json:/init_data.json
    env_file:
      - .env

  lobe:
    image: lobehub/lobe-chat-database:1.68.7
    container_name: lobe-chat
    network_mode: 'service:network-service'
    depends_on:
      postgresql:
        condition: service_healthy
      network-service:
        condition: service_started
      minio:
        condition: service_started
      casdoor:
        condition: service_started

    environment:
      - 'NEXT_AUTH_SSO_PROVIDERS=casdoor'
      - 'KEY_VAULTS_SECRET=Kix2wcUONd4CX51E/ZPAd36BqM4wzJgKjPtz2sGztqQ='
      - 'NEXT_AUTH_SECRET=NX2kaPE923dt6BL2U8e9oSre5RfoT7hg'
      - 'DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgresql:5432/${LOBE_DB_NAME}'
      - 'S3_BUCKET=${MINIO_LOBE_BUCKET}'
      - 'S3_ENABLE_PATH_STYLE=1'
      - 'S3_ACCESS_KEY=${MINIO_ROOT_USER}'
      - 'S3_ACCESS_KEY_ID=${MINIO_ROOT_USER}'
      - 'S3_SECRET_ACCESS_KEY=${MINIO_ROOT_PASSWORD}'
      - 'LLM_VISION_IMAGE_USE_BASE64=1'
    env_file:
      - .env
    restart: always

volumes:
  data:
    driver: local
  s3_data:
    driver: local

networks:
  lobe-network:
    driver: bridge
@cyo57 cyo57 added the 🐛 Bug Something isn't working | 缺陷 label Mar 6, 2025
@github-project-automation github-project-automation bot moved this to Roadmap - Chat 1.x in Lobe Chat Routine Mar 6, 2025
@lobehubbot
Copy link
Member

👀 @cyo57

Thank you for raising an issue. We will investigate into the matter and get back to you as soon as possible.
Please make sure you have given us as much context as possible.
非常感谢您提交 issue。我们会尽快调查此事,并尽快回复您。 请确保您已经提供了尽可能多的背景信息。

Copy link

dosubot bot commented Mar 6, 2025

@cyo57 你好! 我是Dosu,一个可以帮助你解决问题、回答疑问并成为贡献者的机器人。我将在等待人类维护者的期间为你提供帮助。

The errors you're encountering when sending images in the lobe-chat framework seem to be related to MIME type issues and base64 image conversion problems. Here are some insights and potential solutions:

  1. MIME Type Issue with Gemini 2.0 Flash: The error message indicates that the MIME type application/xml is not supported. You should ensure that the MIME type for the image is correctly set to a supported format like image/png or image/jpeg. Check the configuration settings for the image upload process to ensure the correct MIME type is being used.

  2. Base64 Image Conversion with Doubao 1.5 VisionPro: The error suggests an issue with the base64 encoding of the image URL. Make sure that the image is correctly encoded in base64 format before sending. You might need to verify the encoding process or update the configuration to handle base64 images properly.

  3. General 400 Bad Request Error: This error typically indicates that the server cannot process the request due to incorrect parameters. Double-check the request payload and ensure all required fields are correctly formatted and included.

For the Gemini model, there have been known issues with base64 image conversion failures in previous versions of Lobe Chat, which could result in errors like 'Failed to fetch' [1]. Ensure your setup is updated to the latest version, as some issues might have been resolved in newer releases.

If these steps do not resolve the issue, you may need to look into the specific configurations for each AI provider to ensure compatibility with their image processing requirements.

To continue talking to Dosu, mention @dosu.


Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Bug Report | Other

@NekokeCore
Copy link

有配置S3兼容的OSS或者自建过MinIO吗?

@lobehubbot
Copy link
Member

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


Have you configured S3-compatible OSS or built MinIO by yourself?

@cyo57
Copy link
Author

cyo57 commented Mar 6, 2025

有配置S3兼容的OSS或者自建过MinIO吗?

使用官方一键部署脚本,是MinIO,已更新issue

@lobehubbot
Copy link
Member

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


Have you configured S3-compatible OSS or built MinIO by yourself?

Using the official one-click deployment script, it is MinIO, updated issue

@NekokeCore
Copy link

有配置S3兼容的OSS或者自建过MinIO吗?

使用官方一键部署脚本,是MinIO,已更新issue

进minio后台看看存储桶是公开的还是私有的

@lobehubbot
Copy link
Member

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


Have you configured S3-compatible OSS or built MinIO by yourself?

Use the official one-click deployment script, it is MinIO, updated issue

Enter the minio background to see if the bucket is public or private

@cyo57
Copy link
Author

cyo57 commented Mar 7, 2025

有配置S3兼容的OSS或者自建过MinIO吗?

使用官方一键部署脚本,是MinIO,已更新issue

进minio后台看看存储桶是公开的还是私有的

看起来确实是Minio出了问题,我这里无法访问Minio的webui。
看起来应该是我在部署的时候哪里搞错了

.env

MINIO_PORT=9000
APP_URL=https://lobe.XXX.top
AUTH_URL=https://lobe.XXX.top/api/auth

# MinIO S3 配置
MINIO_ROOT_USER=admin
MINIO_ROOT_PASSWORD=XXXXXX

# 在下方配置 minio 中添加的桶
S3_PUBLIC_DOMAIN=https://minio.XXX.top
S3_ENDPOINT=https://minio.XXX.top
MINIO_LOBE_BUCKET=lobe

docker-compose.yaml

name: lobe-chat-database
services:
  network-service:
    image: alpine
    container_name: lobe-network
    ports:
      - '${MINIO_PORT}:${MINIO_PORT}' # MinIO API
      - '9001:9001' # MinIO Console
      - '${CASDOOR_PORT}:${CASDOOR_PORT}' # Casdoor
      - '${LOBE_PORT}:3210' # LobeChat
    command: tail -f /dev/null
    networks:
      - lobe-network

  minio:
    image: minio/minio
    container_name: lobe-minio
    network_mode: 'service:network-service'
    volumes:
      - './s3_data:/etc/minio/data'
    environment:
      - 'MINIO_API_CORS_ALLOW_ORIGIN=*'
    env_file:
      - .env
    restart: always
    entrypoint: >
      /bin/sh -c "
        minio server /etc/minio/data --address ':${MINIO_PORT}' --console-address ':9001' &
        MINIO_PID=\$!
        while ! curl -s http://localhost:${MINIO_PORT}/minio/health/live; do
          echo 'Waiting for MinIO to start...'
          sleep 1
        done
        sleep 5
        mc alias set myminio http://localhost:${MINIO_PORT} ${MINIO_ROOT_USER} ${MINIO_ROOT_PASSWORD}
        echo 'Creating bucket ${MINIO_LOBE_BUCKET}'
        mc mb myminio/${MINIO_LOBE_BUCKET}
        wait \$MINIO_PID
      "

    environment:
      - 'NEXT_AUTH_SSO_PROVIDERS=casdoor'
      - 'KEY_VAULTS_SECRET=XXXXXX'
      - 'NEXT_AUTH_SECRET=XXXXXX'
      - 'DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgresql:5432/${LOBE_DB_NAME}'
      - 'S3_BUCKET=${MINIO_LOBE_BUCKET}'
      - 'S3_ENABLE_PATH_STYLE=1'
      - 'S3_ACCESS_KEY=${MINIO_ROOT_USER}'
      - 'S3_ACCESS_KEY_ID=${MINIO_ROOT_USER}'
      - 'S3_SECRET_ACCESS_KEY=${MINIO_ROOT_PASSWORD}'
      - 'LLM_VISION_IMAGE_USE_BASE64=1'
    env_file:
      - .env
    restart: always

volumes:
  data:
    driver: local
  s3_data:
    driver: local

networks:
  lobe-network:
    driver: bridge

重新部署:

root@hw-sh1:~/data/lobechat-db# docker-compose down; docker-compose up -d 
WARN[0000] The "MINIO_PID" variable is not set. Defaulting to a blank string. 
[+] Running 6/6
 ✔ Container lobe-chat                      Removed                                                                                                                                                                                                                   10.2s 
 ✔ Container lobe-casdoor                   Removed                                                                                                                                                                                                                    0.1s 
 ✔ Container lobe-minio                     Removed                                                                                                                                                                                                                   10.1s 
 ✔ Container lobe-postgres                  Removed                                                                                                                                                                                                                    0.2s 
 ✔ Container lobe-network                   Removed                                                                                                                                                                                                                   10.4s 
 ✔ Network lobe-chat-database_lobe-network  Removed                                                                                                                                                                                                                    0.2s 
WARN[0000] The "MINIO_PID" variable is not set. Defaulting to a blank string. 
[+] Running 6/6
 ✔ Network lobe-chat-database_lobe-network  Created                                                                                                                                                                                                                    0.1s 
 ✔ Container lobe-network                   Started                                                                                                                                                                                                                    0.1s 
 ✔ Container lobe-postgres                  Healthy                                                                                                                                                                                                                    0.1s 
 ✔ Container lobe-minio                     Started                                                                                                                                                                                                                    0.0s 
 ✔ Container lobe-casdoor                   Started                                                                                                                                                                                                                    0.0s 
 ✔ Container lobe-chat                      Started                                                                                                                                                                                                                    0.0s 

cat /etc/nginx/sites-enabled/lobe.XXX.top

server {
    listen 80;
    listen [::]:80;
    server_name lobe.XXX.top;
    return 301 https://$host$request_uri;
}

server {
...
    server_name lobe.XXX.top;
...
}

server {
...
    server_name auth.XXX.top;
...
}

server {
    listen 443 ssl;
    listen [::]:443 ssl;
    server_name minio.XXX.top;
    ssl_certificate /etc/nginx/ssl/*.XXX.top_XXX.top_2048/fullchain.cer;
    ssl_certificate_key /etc/nginx/ssl/*.XXX.top_XXX.top_2048/private.key;
    location / {
        proxy_pass http://127.0.0.1:9000;  # 反向代理到本地9000端口
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        
        # 设置允许的最大请求体大小
        client_max_body_size 256M;
    }
}
root@hw-sh1:~/data/lobechat-db#

通过curl访问Minio

root@hw-sh1:~/data/lobechat-db# curl https://minio.XXX.top -i
HTTP/1.1 403 Forbidden
Server: nginx/1.18.0 (Ubuntu)
Date: Fri, 07 Mar 2025 13:38:56 GMT
Content-Type: application/xml
Content-Length: 254
Connection: keep-alive
Accept-Ranges: bytes
Strict-Transport-Security: max-age=31536000; includeSubDomains
Vary: Origin
Vary: Accept-Encoding
X-Amz-Id-2: dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8
X-Amz-Request-Id: 182A88E80352F506
X-Content-Type-Options: nosniff
X-Ratelimit-Limit: 293
X-Ratelimit-Remaining: 293
X-Xss-Protection: 1; mode=block

<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>AccessDenied</Code><Message>Access Denied.</Message><Resource>/</Resource><RequestId>182A88E80352F506</RequestId><HostId>dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8</HostId></Error>root@hw-sh1:~/data/lobechat-db#

如果通过浏览器访问Minio,URL会自动跳转到https://minio.XXX.top:9001/,无法正常打开,提示ERR_SSL_PROTOCOL_ERROR:

Image

@lobehubbot
Copy link
Member

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


Have you configured S3-compatible OSS or built MinIO by yourself?

Use the official one-click deployment script, it is MinIO, updated issue

Enter the minio background to see if the bucket is public or private

It seems that something is wrong with Minio, and I can't access Minio's webui here.
It seems that I got something wrong when I was deploying it

.env

MINIO_PORT=9000
APP_URL=https://lobe.XXX.top
AUTH_URL=https://lobe.XXX.top/api/auth

#MinIO S3 Configuration
MINIO_ROOT_USER=admin
MINIO_ROOT_PASSWORD=XXXXXX

# Configure the bucket added in minio below
S3_PUBLIC_DOMAIN=https://minio.XXX.top
S3_ENDPOINT=https://minio.XXX.top
MINIO_LOBE_BUCKET=lobe

docker-compose.yaml

name: lobe-chat-database
services:
  network-service:
    image: alpine
    container_name: lobe-network
    Ports:
      - '${MINIO_PORT}:${MINIO_PORT}' # MinIO API
      - '9001:9001' # MinIO Console
      - '${CASDOOR_PORT}:${CASDOOR_PORT}' # Casdoor
      - '${LOBE_PORT}:3210' # LobeChat
    command: tail -f /dev/null
    networks:
      - lobe-network

  minio:
    image: minio/minio
    container_name: lobe-minio
    network_mode: 'service:network-service'
    Volumes:
      - './s3_data:/etc/minio/data'
    environment:
      - 'MINIO_API_CORS_ALLOW_ORIGIN=*'
    env_file:
      - .env
    restart: always
    entrypoint: >
      /bin/sh -c "
        minio server /etc/minio/data --address ':${MINIO_PORT}' --console-address ':9001' &
        MINIO_PID=\$!
        while ! curl -s http://localhost:${MINIO_PORT}/minio/health/live; do
          echo 'Waiting for MinIO to start...'
          sleep 1
        done
        sleep 5
        mc alias set myminio http://localhost:${MINIO_PORT} ${MINIO_ROOT_USER} ${MINIO_ROOT_PASSWORD}
        echo 'Creating bucket ${MINIO_LOBE_BUCKET}'
        mc mb myminio/${MINIO_LOBE_BUCKET}
        wait \$MINIO_PID
      "

    environment:
      - 'NEXT_AUTH_SSO_PROVIDERS=casdoor'
      - 'KEY_VAULTS_SECRET=XXXXX'
      - 'NEXT_AUTH_SECRET=XXXXXX'
      - 'DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgresql:5432/${LOBE_DB_NAME}'
      - 'S3_BUCKET=${MINIO_LOBE_BUCKET}'
      - 'S3_ENABLE_PATH_STYLE=1'
      - 'S3_ACCESS_KEY=${MINIO_ROOT_USER}'
      - 'S3_ACCESS_KEY_ID=${MINIO_ROOT_USER}'
      - 'S3_SECRET_ACCESS_KEY=${MINIO_ROOT_PASSWORD}'
      - 'LLM_VISION_IMAGE_USE_BASE64=1'
    env_file:
      - .env
    restart: always

Volumes:
  data:
    driver: local
  s3_data:
    driver: local

networks:
  lobe-network:
    driver: bridge

Redeployment:

root@hw-sh1:~/data/lobechat-db# docker-compose down; docker-compose up -d
WARN[0000] The "MINIO_PID" variable is not set. Defaulting to a blank string.
[+] Running 6/6
 ✔ Container lobe-chat Removed 10.2s
 ✔ Container lobe-casdoor Removed 0.1s
 ✔ Container lobe-minio Removed 10.1s
 ✔ Container lobe-postgres Removed 0.2s
 ✔ Container lobe-network Removed 10.4s
 ✔ Network lobe-chat-database_lobe-network Removed 0.2s
WARN[0000] The "MINIO_PID" variable is not set. Defaulting to a blank string.
[+] Running 6/6
 ✔ Network lobe-chat-database_lobe-network Created 0.1s
 ✔ Container lobe-network Started 0.1s
 ✔ Container lobe-postgres Healthy 0.1s
 ✔ Container lobe-minio Started 0.0s
 ✔ Container lobe-casdoor Started 0.0s
 ✔ Container lobe-chat Started 0.0s

cat /etc/nginx/sites-enabled/lobe.XXX.top

server {
    listen 80;
    listen [::]:80;
    server_name lobe.XXX.top;
    return 301 https://$host$request_uri;
}

server {
...
    server_name lobe.XXX.top;
...
}

server {
...
    server_name auth.XXX.top;
...
}

server {
    listen 443 ssl;
    listen [::]:443 ssl;
    server_name minio.XXX.top;
    ssl_certificate /etc/nginx/ssl/*.XXX.top_XXX.top_2048/fullchain.cer;
    ssl_certificate_key /etc/nginx/ssl/*.XXX.top_XXX.top_2048/private.key;
    location / {
        proxy_pass http://127.0.0.1:9000; # Reverse proxy to local 9000 port
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        
        # Set the maximum request size allowed
        client_max_body_size 256M;
    }
}
root@hw-sh1:~/data/lobechat-db#

Access to Minio via curl

root@hw-sh1:~/data/lobechat-db# curl https://minio.cloudyshore.top -i
HTTP/1.1 403 Forbidden
Server: nginx/1.18.0 (Ubuntu)
Date: Fri, 07 Mar 2025 13:38:56 GMT
Content-Type: application/xml
Content-Length: 254
Connection: keep-alive
Accept-Ranges: bytes
Strict-Transport-Security: max-age=31536000; includeSubDomains
Vary: Origin
Vary: Accept-Encoding
X-Amz-Id-2: dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8
X-Amz-Request-Id: 182A88E80352F506
X-Content-Type-Options: nosniff
X-Ratelimit-Limit: 293
X-Ratelimit-Remaining: 293
X-Xss-Protection: 1; mode=block

<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>AccessDenied</Code><Message>Access Denied.</Message><Resource>/</Resource><RequestId>182A88E80352F506</RequestId><HostId>dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8</HostId></Error>root@hw-sh1:~/data/lobechat-db#

If you access Minio through a browser, the URL will automatically jump to https://minio.XXX.top:9001/ and cannot be opened normally. It prompts ERR_SSL_PROTOCOL_ERROR:

Image

@cyo57 cyo57 closed this as completed Mar 8, 2025
@github-project-automation github-project-automation bot moved this from Roadmap - Chat 1.x to Done in Lobe Chat Routine Mar 8, 2025
@lobehubbot
Copy link
Member

@cyo57

This issue is closed, If you have any questions, you can comment and reply.
此问题已经关闭。如果您有任何问题,可以留言并回复。

@AiharaMahiru
Copy link

你好,请问解决了吗

@lobehubbot
Copy link
Member

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


Hello, has it been resolved?

@cyo57
Copy link
Author

cyo57 commented Mar 10, 2025

你好,请问解决了吗

我是Linux新手,不知道怎么修复。我这个issue显然不是LobeChat的BUG,所以我关闭了。

@lobehubbot
Copy link
Member

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


Hello, has it been solved

I'm a newbie in Linux and don't know how to fix it. My issue is obviously not a bug of LobeChat, so I closed it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 Bug Something isn't working | 缺陷 Gemini vision
Projects
Status: Done
Development

No branches or pull requests

4 participants