Skip to content

Commit 5e7e20f

Browse files
authored
AI-search plugin supports controlling through the web_search_options parameter. (#1893)
1 parent 26bfdd4 commit 5e7e20f

File tree

3 files changed

+51
-1
lines changed

3 files changed

+51
-1
lines changed

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

+18-1
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@ description: higress 支持通过集成搜索引擎(Google/Bing/Arxiv/Elastics
1111
## 运行属性
1212

1313
插件执行阶段:`默认阶段`
14-
插件执行优先级:`440`
14+
插件执行优先级:`460`
1515

1616
## 配置字段
1717

1818
| 名称 | 数据类型 | 填写要求 | 默认值 | 描述 |
1919
|------|----------|----------|--------|------|
20+
| defaultEnable | bool | 选填 | true | 插件功能默认是否开启。设置为false时,仅当请求中包含web_search_options字段时才启用插件功能 |
2021
| needReference | bool | 选填 | false | 是否在回答中添加引用来源 |
2122
| referenceFormat | string | 选填 | `"**References:**\n%s"` | 引用内容格式,必须包含%s占位符 |
2223
| defaultLang | string | 选填 | - | 默认搜索语言代码(如zh-CN/en-US) |
@@ -242,6 +243,22 @@ searchRewrite:
242243
timeoutMillisecond: 15000
243244
```
244245
246+
### 按需启用插件配置
247+
248+
配置插件仅在请求中包含`web_search_options`字段时才启用:
249+
250+
```yaml
251+
defaultEnable: false
252+
searchFrom:
253+
- type: google
254+
apiKey: "your-google-api-key"
255+
cx: "search-engine-id"
256+
serviceName: "google-svc.dns"
257+
servicePort: 443
258+
```
259+
260+
这种配置适用于支持web_search选项的模型,例如OpenAI的gpt-4o-search-preview模型。当请求中包含`web_search_options`字段时,即使是空对象(`"web_search_options": {}`),插件也会被激活。
261+
245262
## 注意事项
246263

247264
1. 提示词模版必须包含`{search_results}`和`{question}`占位符,可选使用`{cur_date}`插入当前日期(格式:2006年1月2日)

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

+17
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Plugin execution priority: `440`
1717

1818
| Name | Data Type | Requirement | Default Value | Description |
1919
|------|-----------|-------------|---------------|-------------|
20+
| defaultEnable | bool | Optional | true | Whether the plugin functionality is enabled by default. When set to false, the plugin will only be activated when the request contains a web_search_options field |
2021
| needReference | bool | Optional | false | Whether to add reference sources in the response |
2122
| referenceFormat | string | Optional | `"**References:**\n%s"` | Reference content format, must include %s placeholder |
2223
| defaultLang | string | Optional | - | Default search language code (e.g. zh-CN/en-US) |
@@ -241,6 +242,22 @@ searchRewrite:
241242
timeoutMillisecond: 15000
242243
```
243244
245+
### On-Demand Plugin Activation Configuration
246+
247+
Configure the plugin to only be enabled when the request contains a `web_search_options` field:
248+
249+
```yaml
250+
defaultEnable: false
251+
searchFrom:
252+
- type: google
253+
apiKey: "your-google-api-key"
254+
cx: "search-engine-id"
255+
serviceName: "google-svc.dns"
256+
servicePort: 443
257+
```
258+
259+
This configuration is suitable for models that support web search options, such as OpenAI's gpt-4o-search-preview model. When the request contains a `web_search_options` field, even if it's an empty object (`"web_search_options": {}`), the plugin will be activated.
260+
244261
## Notes
245262

246263
1. The prompt template must include `{search_results}` and `{question}` placeholders, optionally use `{cur_date}` to insert current date (format: January 2, 2006)

plugins/wasm-go/extensions/ai-search/main.go

+16
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ type Config struct {
5555
defaultLanguage string
5656
needReference bool
5757
searchRewrite *SearchRewrite
58+
defaultEnable bool
5859
}
5960

6061
const (
@@ -86,6 +87,10 @@ func main() {
8687
}
8788

8889
func parseConfig(json gjson.Result, config *Config, log wrapper.Log) error {
90+
config.defaultEnable = true // Default to true if not specified
91+
if json.Get("defaultEnable").Exists() {
92+
config.defaultEnable = json.Get("defaultEnable").Bool()
93+
}
8994
config.needReference = json.Get("needReference").Bool()
9095
if config.needReference {
9196
config.referenceFormat = json.Get("referenceFormat").String()
@@ -254,6 +259,17 @@ func onHttpRequestHeaders(ctx wrapper.HttpContext, config Config, log wrapper.Lo
254259
}
255260

256261
func onHttpRequestBody(ctx wrapper.HttpContext, config Config, body []byte, log wrapper.Log) types.Action {
262+
// Check if plugin should be enabled based on config and request
263+
if !config.defaultEnable {
264+
// When defaultEnable is false, we need to check if web_search_options exists in the request
265+
webSearchOptions := gjson.GetBytes(body, "web_search_options")
266+
if !webSearchOptions.Exists() {
267+
log.Debugf("Plugin disabled by config and no web_search_options in request")
268+
return types.ActionContinue
269+
}
270+
log.Debugf("Plugin enabled by web_search_options in request")
271+
}
272+
257273
var queryIndex int
258274
var query string
259275
messages := gjson.GetBytes(body, "messages").Array()

0 commit comments

Comments
 (0)