rm variable name of variable api (#595)

* rm variable name of variable api

* update zh and jp docs

---------

Co-authored-by: Riskey <riskey47@dify.ai>
This commit is contained in:
非法操作
2025-12-12 14:53:38 +08:00
committed by GitHub
parent bb1d1e0503
commit 57e04ab0b1
3 changed files with 4 additions and 10 deletions

View File

@@ -484,8 +484,7 @@
{ "$ref": "#/components/parameters/ConversationIdPathParamJp" },
{ "$ref": "#/components/parameters/UserQueryParamJp" },
{ "$ref": "#/components/parameters/LastIdQueryParamJp" },
{ "$ref": "#/components/parameters/LimitQueryParamDefault20Max100Jp" },
{ "$ref": "#/components/parameters/VariableNameQueryParamJp" }
{ "$ref": "#/components/parameters/LimitQueryParamDefault20Max100Jp" }
],
"responses": {
"200": { "description": "会話変数を正常に取得しました。", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ConversationVariablesResponseJp" } } } },
@@ -576,8 +575,7 @@
"ConversationIdQueryParamJp": { "name": "conversation_id", "in": "query", "required": true, "description": "会話ID。", "schema": { "type": "string", "format": "uuid" } },
"LastIdQueryParamJp": { "name": "last_id", "in": "query", "description": "(Optional)現在のページの最後の記録のID、デフォルトはnullです。", "schema": { "type": "string", "format": "uuid", "nullable": true } },
"SortByQueryParamJp": { "name": "sort_by", "in": "query", "description": "(Optional)ソートフィールド、デフォルト:-updated_at更新時間で降順にソート。利用可能な値created_at, -created_at, updated_at, -updated_at。'-'は逆順を表します。", "schema": { "type": "string", "enum": ["created_at", "-created_at", "updated_at", "-updated_at"], "default": "-updated_at" } },
"ConversationIdPathParamJp": { "name": "conversation_id", "in": "path", "required": true, "description": "会話ID。", "schema": { "type": "string", "format": "uuid" } },
"VariableNameQueryParamJp": { "name": "variable_name", "in": "query", "description": "(任意)変数名でフィルタリングします。", "schema": { "type": "string" } }
"ConversationIdPathParamJp": { "name": "conversation_id", "in": "path", "required": true, "description": "会話ID。", "schema": { "type": "string", "format": "uuid" } }
},
"responses": {
"BadRequestGenericJp": { "description": "リクエストパラメータエラー。考えられる原因invalid_param, app_unavailable, provider_not_initialize, provider_quota_exceeded, model_currently_not_support, completion_request_error。", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ErrorResponseJp" } } } },