-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
289 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: ai | ||
name: ai-cache | ||
title: AI Cache | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: oss | ||
category: ai | ||
name: ai-history | ||
title: AI History | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: ai | ||
name: ai-intent | ||
title: AI Intent | ||
|
42 changes: 42 additions & 0 deletions
42
backend/sdk/src/main/resources/plugins/ai-json-resp/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: oss | ||
category: ai | ||
name: ai-json-resp | ||
title: AI JSON Format | ||
x-title-i18n: | ||
zh-CN: AI JSON 格式化 | ||
description: LLM Response Structuring Plugin, designed to structure AI responses based on a default or user-configured JSON Schema, facilitating subsequent plugin processing. Note that currently, only non-streaming responses are supported. | ||
x-description-i18n: | ||
zh-CN: LLM响应结构化插件,用于根据默认或用户配置的Json Schema对AI的响应进行结构化,以便后续插件处理。注意目前只支持非流式响应。 | ||
iconUrl: https://img.alicdn.com/imgextra/i1/O1CN018iKKih1iVx287RltL_!!6000000004419-2-tps-42-42.png | ||
version: 1.0.0 | ||
contact: | ||
name: johnlanni | ||
spec: | ||
phase: UNSPECIFIED_PHASE | ||
priority: 150 | ||
configSchema: | ||
openAPIV3Schema: | ||
type: object | ||
example: | ||
serviceName: qwen | ||
serviceDomain: dashscope.aliyuncs.com | ||
apiKey: [Your API Key] | ||
servicePath: /compatible-mode/v1/chat/completions | ||
jsonSchema: | ||
title: ReasoningSchema | ||
type: object | ||
properties: | ||
reasoning_steps: | ||
type: array | ||
items: | ||
type: string | ||
description: The reasoning steps leading to the final conclusion. | ||
answer: | ||
type: string | ||
description: The final answer, taking into account the reasoning steps. | ||
required: | ||
- reasoning_steps | ||
- answer | ||
additionalProperties: false |
3 changes: 2 additions & 1 deletion
3
backend/sdk/src/main/resources/plugins/ai-prompt-decorator/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
backend/sdk/src/main/resources/plugins/ai-prompt-template/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: ai | ||
name: ai-prompt-template | ||
title: AI Prompt Template | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: ai | ||
name: ai-proxy | ||
title: AI Proxy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: ai | ||
name: ai-rag | ||
title: AI RAG | ||
|
1 change: 1 addition & 0 deletions
1
backend/sdk/src/main/resources/plugins/ai-security-guard/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: ai | ||
name: ai-security-guard | ||
title: AI Security Guard | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: ai | ||
name: ai-statistics | ||
title: AI Statistics | ||
|
1 change: 1 addition & 0 deletions
1
backend/sdk/src/main/resources/plugins/ai-token-ratelimit/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: ai | ||
name: ai-token-ratelimit | ||
title: AI Token Rate Limit | ||
|
1 change: 1 addition & 0 deletions
1
backend/sdk/src/main/resources/plugins/ai-transformer/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: ai | ||
name: ai-transformer | ||
title: AI Transformer | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: auth | ||
name: basic-auth/v1 | ||
title: Basic Auth | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: security | ||
name: bot-detect/v1 | ||
title: Bot Detect | ||
|
5 changes: 3 additions & 2 deletions
5
backend/sdk/src/main/resources/plugins/cache-control/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
backend/sdk/src/main/resources/plugins/cluster-key-rate-limit/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
backend/sdk/src/main/resources/plugins/custom-response/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: oss | ||
category: transformation | ||
name: de-graphql | ||
title: DeGraphQL | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: oss | ||
category: auth | ||
name: ext-auth | ||
title: Ext Auth | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: oss | ||
category: transformation | ||
name: frontend-gray | ||
title: Frontend Gray | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: oss | ||
category: transformation | ||
name: geo-ip | ||
title: Geo IP | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: auth | ||
name: hmac-auth/v1 | ||
title: HMAC Auth | ||
|
1 change: 1 addition & 0 deletions
1
backend/sdk/src/main/resources/plugins/ip-restriction/spec.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: oss | ||
category: traffic | ||
name: ip-restriction | ||
title: IP Restriction | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
apiVersion: 1.0.0 | ||
info: | ||
type: enterprise | ||
category: auth | ||
name: jwt-auth/v1 | ||
title: JWT Auth | ||
|
Oops, something went wrong.