feat(model): Support Qwen3 embeddings (#2772)

This commit is contained in:
Fangyin Cheng
2025-06-14 23:34:48 +08:00
committed by GitHub
parent cc81e7af09
commit bb947b6af7
8 changed files with 307 additions and 22 deletions

View File

@@ -1,22 +1,22 @@
"""
Run unit test with command: pytest dbgpt/datasource/rdbms/tests/test_conn_starrocks.py
docker run -p 9030:9030 -p 8030:8030 -p 8040:8040 -itd --name quickstart starrocks/allin1-ubuntu
mysql -P 9030 -h 127.0.0.1 -u root --prompt="StarRocks > "
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 184
Server version: 5.1.0 3.1.5-5d8438a
Run unit test with command: pytest dbgpt/datasource/rdbms/tests/test_conn_starrocks.py
Copyright (c) 2000, 2023, Oracle and/or its affiliates.
docker run -p 9030:9030 -p 8030:8030 -p 8040:8040 -itd --name quickstart starrocks/allin1-ubuntu
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
mysql -P 9030 -h 127.0.0.1 -u root --prompt="StarRocks > "
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 184
Server version: 5.1.0 3.1.5-5d8438a
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
Copyright (c) 2000, 2023, Oracle and/or its affiliates.
> create database test;
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
> create database test;
"""
import pytest