Skip to content

Commit 1431ff9

Browse files
authored
e2e: Enhance the e2e testing of the ai-proxy plugin based on the LLM mock server (#1713)
1 parent fac2c3e commit 1431ff9

File tree

7 files changed

+563
-94
lines changed

7 files changed

+563
-94
lines changed

plugins/wasm-go/extensions/ai-proxy/README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,11 @@ Azure OpenAI 所对应的 `type` 为 `azure`。它特有的配置字段如下:
130130

131131
通义千问所对应的 `type``qwen`。它特有的配置字段如下:
132132

133-
| 名称 | 数据类型 | 填写要求 | 默认值 | 描述 |
134-
|--------------------|-----------------|------|-----|------------------------------------------------------------------|
135-
| `qwenEnableSearch` | boolean | 非必填 | - | 是否启用通义千问内置的互联网搜索功能。 |
136-
| `qwenFileIds` | array of string | 非必填 | - | 通过文件接口上传至Dashscope的文件 ID,其内容将被用做 AI 对话的上下文。不可与 `context` 字段同时配置。 |
133+
| 名称 | 数据类型 | 填写要求 | 默认值 | 描述 |
134+
| ---------------------- | --------------- | -------- | ------ | ------------------------------------------------------------ |
135+
| `qwenEnableSearch` | boolean | 非必填 | - | 是否启用通义千问内置的互联网搜索功能。 |
136+
| `qwenFileIds` | array of string | 非必填 | - | 通过文件接口上传至Dashscope的文件 ID,其内容将被用做 AI 对话的上下文。不可与 `context` 字段同时配置。 |
137+
| `qwenEnableCompatible` | boolean | 非必填 | false | 开启通义千问兼容模式。启用通义千问兼容模式后,将调用千问的兼容模式接口,同时对请求/响应不做修改。 |
137138

138139
#### 百川智能 (Baichuan AI)
139140

plugins/wasm-go/extensions/ai-proxy/README_EN.md

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ For Qwen (Tongyi Qwen), the corresponding `type` is `qwen`. Its unique configura
106106
|--------------------|-----------------|----------------------|---------------|------------------------------------------------------------------------------------------------------------------------|
107107
| `qwenEnableSearch` | boolean | Optional | - | Whether to enable the built-in Internet search function provided by Qwen. |
108108
| `qwenFileIds` | array of string | Optional | - | The file IDs uploaded via the Dashscope file interface, whose content will be used as context for AI conversations. Cannot be configured with the `context` field. |
109+
| `qwenEnableCompatible` | boolean | Optional | false | Enable Qwen compatibility mode. When Qwen compatibility mode is enabled, the compatible mode interface of Qwen will be called, and the request/response will not be modified. |
109110

110111
#### Baichuan AI
111112

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Copyright (c) 2025 Alibaba Group Holding Ltd.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
apiVersion: v1
16+
kind: Namespace
17+
metadata:
18+
name: higress-conformance-ai-backend
19+
labels:
20+
higress-conformance: infra
21+
---
22+
apiVersion: v1
23+
kind: Pod
24+
metadata:
25+
name: llm-mock
26+
namespace: higress-conformance-ai-backend
27+
labels:
28+
name: llm-mock
29+
spec:
30+
containers:
31+
- name: llm-mock
32+
image: registry.cn-hangzhou.aliyuncs.com/hxt/llm-mock:latest
33+
ports:
34+
- containerPort: 3000
35+
---
36+
apiVersion: v1
37+
kind: Service
38+
metadata:
39+
name: llm-mock-service
40+
namespace: higress-conformance-ai-backend
41+
spec:
42+
selector:
43+
name: llm-mock
44+
clusterIP: None
45+
ports:
46+
- port: 3000

0 commit comments

Comments
 (0)