diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..bfc4e4a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,44 @@ +name: Java CI + +on: + pull_request: + branches: + - main + # A workflow added by a pull request is not loaded from the base branch for + # that pull_request event. Running the workflow from ark-hand's same-repo + # sync branch makes the first workflow-installation PR testable as well. + push: + branches: + - "sync/**" + paths: + - ".github/workflows/ci.yml" + +permissions: + contents: read + +concurrency: + group: java-ci-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +jobs: + java-ci: + name: Java CI + runs-on: ubuntu-latest + timeout-minutes: 15 + + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Set up JDK + uses: actions/setup-java@v4 + with: + distribution: "temurin" + java-version: "8" + cache: maven + + - name: Compile + run: mvn -B compile + + - name: Package + run: mvn -B package -DskipTests diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/Agent.java b/src/main/java/com/volcengine/ark/runtime/models/agent/Agent.java index 6ca18d8..cddbad9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/Agent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/Agent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -146,7 +146,7 @@ public Agent() { } public Agent id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -171,7 +171,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public Agent type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -196,7 +196,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public Agent name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -221,7 +221,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public Agent description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -246,7 +246,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public Agent version(@javax.annotation.Nonnull Integer version) { - + this.version = version; return this; } @@ -271,7 +271,7 @@ public void setVersion(@javax.annotation.Nonnull Integer version) { } public Agent model(@javax.annotation.Nullable ModelConfig model) { - + this.model = model; return this; } @@ -296,7 +296,7 @@ public void setModel(@javax.annotation.Nullable ModelConfig model) { } public Agent system(@javax.annotation.Nullable String system) { - + this.system = system; return this; } @@ -321,7 +321,7 @@ public void setSystem(@javax.annotation.Nullable String system) { } public Agent tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -354,7 +354,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public Agent mcpServers(@javax.annotation.Nullable List mcpServers) { - + this.mcpServers = mcpServers; return this; } @@ -387,7 +387,7 @@ public void setMcpServers(@javax.annotation.Nullable List mcpServers) } public Agent skills(@javax.annotation.Nullable List skills) { - + this.skills = skills; return this; } @@ -420,7 +420,7 @@ public void setSkills(@javax.annotation.Nullable List skills) { } public Agent multiagent(@javax.annotation.Nullable MultiagentConfig multiagent) { - + this.multiagent = multiagent; return this; } @@ -445,7 +445,7 @@ public void setMultiagent(@javax.annotation.Nullable MultiagentConfig multiagent } public Agent metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -478,7 +478,7 @@ public void setMetadata(@javax.annotation.Nullable Map metadata) } public Agent tags(@javax.annotation.Nullable List tags) { - + this.tags = tags; return this; } @@ -511,7 +511,7 @@ public void setTags(@javax.annotation.Nullable List tags) { } public Agent createdAt(@javax.annotation.Nonnull String createdAt) { - + this.createdAt = createdAt; return this; } @@ -536,7 +536,7 @@ public void setCreatedAt(@javax.annotation.Nonnull String createdAt) { } public Agent updatedAt(@javax.annotation.Nonnull String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -748,4 +748,3 @@ public Agent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/AgentRef.java b/src/main/java/com/volcengine/ark/runtime/models/agent/AgentRef.java index bf9caaf..45c8187 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/AgentRef.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/AgentRef.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public AgentRef() { } public AgentRef type(@javax.annotation.Nonnull AgentRefType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull AgentRefType type) { } public AgentRef id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -97,7 +97,7 @@ public void setId(@javax.annotation.Nullable String id) { } public AgentRef version(@javax.annotation.Nullable Integer version) { - + this.version = version; return this; } @@ -225,4 +225,3 @@ public AgentRef.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/AgentRefType.java b/src/main/java/com/volcengine/ark/runtime/models/agent/AgentRefType.java index 4958e09..36cd26d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/AgentRefType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/AgentRefType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * 多 Agent 引用类型。 */ public enum AgentRefType { - + AGENT("agent"), - + SELF("self"); private String value; @@ -55,4 +55,3 @@ public static AgentRefType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/AgentSkillRef.java b/src/main/java/com/volcengine/ark/runtime/models/agent/AgentSkillRef.java index 9219af7..136e2bf 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/AgentSkillRef.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/AgentSkillRef.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public AgentSkillRef() { } public AgentSkillRef type(@javax.annotation.Nonnull SkillRefType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull SkillRefType type) { } public AgentSkillRef skillId(@javax.annotation.Nullable String skillId) { - + this.skillId = skillId; return this; } @@ -97,7 +97,7 @@ public void setSkillId(@javax.annotation.Nullable String skillId) { } public AgentSkillRef version(@javax.annotation.Nullable String version) { - + this.version = version; return this; } @@ -225,4 +225,3 @@ public AgentSkillRef.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/CreateAgentRequest.java b/src/main/java/com/volcengine/ark/runtime/models/agent/CreateAgentRequest.java index d3df909..a812c48 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/CreateAgentRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/CreateAgentRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -86,7 +86,7 @@ public CreateAgentRequest() { } public CreateAgentRequest name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -111,7 +111,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public CreateAgentRequest model(@javax.annotation.Nonnull ModelConfig model) { - + this.model = model; return this; } @@ -136,7 +136,7 @@ public void setModel(@javax.annotation.Nonnull ModelConfig model) { } public CreateAgentRequest description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -161,7 +161,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public CreateAgentRequest system(@javax.annotation.Nullable String system) { - + this.system = system; return this; } @@ -186,7 +186,7 @@ public void setSystem(@javax.annotation.Nullable String system) { } public CreateAgentRequest mcpServers(@javax.annotation.Nullable List mcpServers) { - + this.mcpServers = mcpServers; return this; } @@ -219,7 +219,7 @@ public void setMcpServers(@javax.annotation.Nullable List mcpServers) } public CreateAgentRequest tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -252,7 +252,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public CreateAgentRequest skills(@javax.annotation.Nullable List skills) { - + this.skills = skills; return this; } @@ -285,7 +285,7 @@ public void setSkills(@javax.annotation.Nullable List skills) { } public CreateAgentRequest multiagent(@javax.annotation.Nullable MultiagentConfig multiagent) { - + this.multiagent = multiagent; return this; } @@ -310,7 +310,7 @@ public void setMultiagent(@javax.annotation.Nullable MultiagentConfig multiagent } public CreateAgentRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -343,7 +343,7 @@ public void setMetadata(@javax.annotation.Nullable Map metadata) } public CreateAgentRequest tags(@javax.annotation.Nullable List tags) { - + this.tags = tags; return this; } @@ -528,4 +528,3 @@ public CreateAgentRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/DeleteAgentResponse.java b/src/main/java/com/volcengine/ark/runtime/models/agent/DeleteAgentResponse.java index 2d7fa83..6f790eb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/DeleteAgentResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/DeleteAgentResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public DeleteAgentResponse() { } public DeleteAgentResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -151,4 +151,3 @@ public DeleteAgentResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/ListAgentsResponse.java b/src/main/java/com/volcengine/ark/runtime/models/agent/ListAgentsResponse.java index 84c9c8c..fcdb360 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/ListAgentsResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/ListAgentsResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public ListAgentsResponse() { } public ListAgentsResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -82,7 +82,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public ListAgentsResponse nextPage(@javax.annotation.Nullable String nextPage) { - + this.nextPage = nextPage; return this; } @@ -107,7 +107,7 @@ public void setNextPage(@javax.annotation.Nullable String nextPage) { } public ListAgentsResponse total(@javax.annotation.Nullable Long total) { - + this.total = total; return this; } @@ -235,4 +235,3 @@ public ListAgentsResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/ListRequest.java b/src/main/java/com/volcengine/ark/runtime/models/agent/ListRequest.java index ade8d07..d1e4e8c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/ListRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/ListRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ListRequest() { } public ListRequest limit(@javax.annotation.Nullable Integer limit) { - + this.limit = limit; return this; } @@ -77,7 +77,7 @@ public void setLimit(@javax.annotation.Nullable Integer limit) { } public ListRequest page(@javax.annotation.Nullable String page) { - + this.page = page; return this; } @@ -102,7 +102,7 @@ public void setPage(@javax.annotation.Nullable String page) { } public ListRequest createdAtGte(@javax.annotation.Nullable String createdAtGte) { - + this.createdAtGte = createdAtGte; return this; } @@ -127,7 +127,7 @@ public void setCreatedAtGte(@javax.annotation.Nullable String createdAtGte) { } public ListRequest createdAtLte(@javax.annotation.Nullable String createdAtLte) { - + this.createdAtLte = createdAtLte; return this; } @@ -262,4 +262,3 @@ public ListRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/ListVersionsRequest.java b/src/main/java/com/volcengine/ark/runtime/models/agent/ListVersionsRequest.java index 7b96cac..d37f72f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/ListVersionsRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/ListVersionsRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ListVersionsRequest() { } public ListVersionsRequest agentId(@javax.annotation.Nonnull String agentId) { - + this.agentId = agentId; return this; } @@ -72,7 +72,7 @@ public void setAgentId(@javax.annotation.Nonnull String agentId) { } public ListVersionsRequest limit(@javax.annotation.Nullable Integer limit) { - + this.limit = limit; return this; } @@ -97,7 +97,7 @@ public void setLimit(@javax.annotation.Nullable Integer limit) { } public ListVersionsRequest page(@javax.annotation.Nullable String page) { - + this.page = page; return this; } @@ -225,4 +225,3 @@ public ListVersionsRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/MCPServer.java b/src/main/java/com/volcengine/ark/runtime/models/agent/MCPServer.java index 573b556..9f6eece 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/MCPServer.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/MCPServer.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public MCPServer() { } public MCPServer name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -72,7 +72,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public MCPServer type(@javax.annotation.Nonnull MCPServerType type) { - + this.type = type; return this; } @@ -97,7 +97,7 @@ public void setType(@javax.annotation.Nonnull MCPServerType type) { } public MCPServer url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -225,4 +225,3 @@ public MCPServer.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/MCPServerType.java b/src/main/java/com/volcengine/ark/runtime/models/agent/MCPServerType.java index a1a6d7c..194b272 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/MCPServerType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/MCPServerType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,7 +24,7 @@ * MCP Server 类型。 */ public enum MCPServerType { - + URL("url"); private String value; @@ -53,4 +53,3 @@ public static MCPServerType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/ModelConfig.java b/src/main/java/com/volcengine/ark/runtime/models/agent/ModelConfig.java index a86bad3..917d559 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/ModelConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/ModelConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ModelConfig() { } public ModelConfig id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -67,7 +67,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public ModelConfig speed(@javax.annotation.Nullable ModelSpeed speed) { - + this.speed = speed; return this; } @@ -188,4 +188,3 @@ public ModelConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/ModelSpeed.java b/src/main/java/com/volcengine/ark/runtime/models/agent/ModelSpeed.java index 43b4963..5a0a93f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/ModelSpeed.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/ModelSpeed.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * 模型速度档位。空字符串走默认。 */ public enum ModelSpeed { - + STANDARD("standard"), - + FAST("fast"); private String value; @@ -55,4 +55,3 @@ public static ModelSpeed fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/MultiagentConfig.java b/src/main/java/com/volcengine/ark/runtime/models/agent/MultiagentConfig.java index 8a15a4a..debab88 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/MultiagentConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/MultiagentConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public MultiagentConfig() { } public MultiagentConfig type(@javax.annotation.Nonnull MultiagentType type) { - + this.type = type; return this; } @@ -69,7 +69,7 @@ public void setType(@javax.annotation.Nonnull MultiagentType type) { } public MultiagentConfig agents(@javax.annotation.Nonnull List agents) { - + this.agents = agents; return this; } @@ -198,4 +198,3 @@ public MultiagentConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/MultiagentType.java b/src/main/java/com/volcengine/ark/runtime/models/agent/MultiagentType.java index c513d08..fdff526 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/MultiagentType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/MultiagentType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,7 +24,7 @@ * 多 Agent 拓扑类型。 */ public enum MultiagentType { - + COORDINATOR("coordinator"); private String value; @@ -53,4 +53,3 @@ public static MultiagentType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/PermissionPolicy.java b/src/main/java/com/volcengine/ark/runtime/models/agent/PermissionPolicy.java index ff6fce7..e43b4fe 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/PermissionPolicy.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/PermissionPolicy.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public PermissionPolicy() { } public PermissionPolicy type(@javax.annotation.Nonnull PermissionPolicyType type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public PermissionPolicy.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/PermissionPolicyType.java b/src/main/java/com/volcengine/ark/runtime/models/agent/PermissionPolicyType.java index 987e375..f2a1889 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/PermissionPolicyType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/PermissionPolicyType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * 工具调用许可策略类型。 */ public enum PermissionPolicyType { - + ALWAYS_ALLOW("always_allow"), - + ALWAYS_ASK("always_ask"); private String value; @@ -55,4 +55,3 @@ public static PermissionPolicyType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/SkillRefType.java b/src/main/java/com/volcengine/ark/runtime/models/agent/SkillRefType.java index e7dec28..524ed37 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/SkillRefType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/SkillRefType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Skill 引用类型。 */ public enum SkillRefType { - + ANTHROPIC("anthropic"), - + CUSTOM("custom"), - + SKILL_HUB("skill_hub"); private String value; @@ -57,4 +57,3 @@ public static SkillRefType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/Tag.java b/src/main/java/com/volcengine/ark/runtime/models/agent/Tag.java index f6578fd..b5b5a4b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/Tag.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/Tag.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public Tag() { } public Tag key(@javax.annotation.Nonnull String key) { - + this.key = key; return this; } @@ -67,7 +67,7 @@ public void setKey(@javax.annotation.Nonnull String key) { } public Tag value(@javax.annotation.Nullable String value) { - + this.value = value; return this; } @@ -188,4 +188,3 @@ public Tag.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/ToolConfig.java b/src/main/java/com/volcengine/ark/runtime/models/agent/ToolConfig.java index bf10f42..e265f91 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/ToolConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/ToolConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ToolConfig() { } public ToolConfig name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -72,7 +72,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public ToolConfig enabled(@javax.annotation.Nullable Boolean enabled) { - + this.enabled = enabled; return this; } @@ -97,7 +97,7 @@ public void setEnabled(@javax.annotation.Nullable Boolean enabled) { } public ToolConfig permissionPolicy(@javax.annotation.Nullable PermissionPolicy permissionPolicy) { - + this.permissionPolicy = permissionPolicy; return this; } @@ -225,4 +225,3 @@ public ToolConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/ToolDefaultConfig.java b/src/main/java/com/volcengine/ark/runtime/models/agent/ToolDefaultConfig.java index b940e19..a657075 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/ToolDefaultConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/ToolDefaultConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ToolDefaultConfig() { } public ToolDefaultConfig enabled(@javax.annotation.Nullable Boolean enabled) { - + this.enabled = enabled; return this; } @@ -67,7 +67,7 @@ public void setEnabled(@javax.annotation.Nullable Boolean enabled) { } public ToolDefaultConfig permissionPolicy(@javax.annotation.Nullable PermissionPolicy permissionPolicy) { - + this.permissionPolicy = permissionPolicy; return this; } @@ -188,4 +188,3 @@ public ToolDefaultConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/ToolItem.java b/src/main/java/com/volcengine/ark/runtime/models/agent/ToolItem.java index 44865a1..0f8b431 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/ToolItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/ToolItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -69,7 +69,7 @@ public ToolItem() { } public ToolItem type(@javax.annotation.Nonnull String type) { - + this.type = type; return this; } @@ -94,7 +94,7 @@ public void setType(@javax.annotation.Nonnull String type) { } public ToolItem configs(@javax.annotation.Nullable List configs) { - + this.configs = configs; return this; } @@ -127,7 +127,7 @@ public void setConfigs(@javax.annotation.Nullable List configs) { } public ToolItem defaultConfig(@javax.annotation.Nullable ToolDefaultConfig defaultConfig) { - + this.defaultConfig = defaultConfig; return this; } @@ -152,7 +152,7 @@ public void setDefaultConfig(@javax.annotation.Nullable ToolDefaultConfig defaul } public ToolItem mcpServerName(@javax.annotation.Nullable String mcpServerName) { - + this.mcpServerName = mcpServerName; return this; } @@ -177,7 +177,7 @@ public void setMcpServerName(@javax.annotation.Nullable String mcpServerName) { } public ToolItem name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -202,7 +202,7 @@ public void setName(@javax.annotation.Nullable String name) { } public ToolItem description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -227,7 +227,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public ToolItem inputSchema(@javax.annotation.Nullable String inputSchema) { - + this.inputSchema = inputSchema; return this; } @@ -383,4 +383,3 @@ public ToolItem.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/agent/UpdateAgentRequest.java b/src/main/java/com/volcengine/ark/runtime/models/agent/UpdateAgentRequest.java index 1fedc09..9b5b566 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/agent/UpdateAgentRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/agent/UpdateAgentRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -86,7 +86,7 @@ public UpdateAgentRequest() { } public UpdateAgentRequest version(@javax.annotation.Nonnull Integer version) { - + this.version = version; return this; } @@ -111,7 +111,7 @@ public void setVersion(@javax.annotation.Nonnull Integer version) { } public UpdateAgentRequest name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -136,7 +136,7 @@ public void setName(@javax.annotation.Nullable String name) { } public UpdateAgentRequest model(@javax.annotation.Nullable ModelConfig model) { - + this.model = model; return this; } @@ -161,7 +161,7 @@ public void setModel(@javax.annotation.Nullable ModelConfig model) { } public UpdateAgentRequest description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -186,7 +186,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public UpdateAgentRequest system(@javax.annotation.Nullable String system) { - + this.system = system; return this; } @@ -211,7 +211,7 @@ public void setSystem(@javax.annotation.Nullable String system) { } public UpdateAgentRequest mcpServers(@javax.annotation.Nullable List mcpServers) { - + this.mcpServers = mcpServers; return this; } @@ -244,7 +244,7 @@ public void setMcpServers(@javax.annotation.Nullable List mcpServers) } public UpdateAgentRequest tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -277,7 +277,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public UpdateAgentRequest skills(@javax.annotation.Nullable List skills) { - + this.skills = skills; return this; } @@ -310,7 +310,7 @@ public void setSkills(@javax.annotation.Nullable List skills) { } public UpdateAgentRequest multiagent(@javax.annotation.Nullable MultiagentConfig multiagent) { - + this.multiagent = multiagent; return this; } @@ -335,7 +335,7 @@ public void setMultiagent(@javax.annotation.Nullable MultiagentConfig multiagent } public UpdateAgentRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -520,4 +520,3 @@ public UpdateAgentRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionChoiceLogprobs.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionChoiceLogprobs.java index e5f7824..fd111dc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionChoiceLogprobs.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionChoiceLogprobs.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public ChatCompletionChoiceLogprobs() { } public ChatCompletionChoiceLogprobs content(@javax.annotation.Nonnull List content) { - + this.content = content; return this; } @@ -161,4 +161,3 @@ public ChatCompletionChoiceLogprobs.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPart.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPart.java index e10f957..6e41695 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPart.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPart.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -32,4 +32,3 @@ public interface ChatCompletionContentPart { public ChatCompletionContentPartType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartAudio.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartAudio.java index c0fb132..74dbb13 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartAudio.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartAudio.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ChatCompletionContentPartAudio() { } public ChatCompletionContentPartAudio type(@javax.annotation.Nonnull ChatCompletionContentPartType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull ChatCompletionContentPartType type } public ChatCompletionContentPartAudio inputAudio(@javax.annotation.Nonnull ChatCompletionContentPartAudioInputAudio inputAudio) { - + this.inputAudio = inputAudio; return this; } @@ -188,4 +188,3 @@ public ChatCompletionContentPartAudio.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartAudioInputAudio.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartAudioInputAudio.java index e73f99d..6af12f0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartAudioInputAudio.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartAudioInputAudio.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ChatCompletionContentPartAudioInputAudio() { } public ChatCompletionContentPartAudioInputAudio url(@javax.annotation.Nullable String url) { - + this.url = url; return this; } @@ -77,7 +77,7 @@ public void setUrl(@javax.annotation.Nullable String url) { } public ChatCompletionContentPartAudioInputAudio fileId(@javax.annotation.Nullable String fileId) { - + this.fileId = fileId; return this; } @@ -102,7 +102,7 @@ public void setFileId(@javax.annotation.Nullable String fileId) { } public ChatCompletionContentPartAudioInputAudio data(@javax.annotation.Nullable String data) { - + this.data = data; return this; } @@ -127,7 +127,7 @@ public void setData(@javax.annotation.Nullable String data) { } public ChatCompletionContentPartAudioInputAudio format(@javax.annotation.Nullable String format) { - + this.format = format; return this; } @@ -262,4 +262,3 @@ public ChatCompletionContentPartAudioInputAudio.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartFile.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartFile.java index e430607..3c6f4db 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartFile.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartFile.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ChatCompletionContentPartFile() { } public ChatCompletionContentPartFile type(@javax.annotation.Nonnull ChatCompletionContentPartType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull ChatCompletionContentPartType type } public ChatCompletionContentPartFile _file(@javax.annotation.Nonnull ChatCompletionContentPartFileFile _file) { - + this._file = _file; return this; } @@ -188,4 +188,3 @@ public ChatCompletionContentPartFile.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartFileFile.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartFileFile.java index 46b2f99..f0d01e7 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartFileFile.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartFileFile.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ChatCompletionContentPartFileFile() { } public ChatCompletionContentPartFileFile fileId(@javax.annotation.Nullable String fileId) { - + this.fileId = fileId; return this; } @@ -77,7 +77,7 @@ public void setFileId(@javax.annotation.Nullable String fileId) { } public ChatCompletionContentPartFileFile fileUrl(@javax.annotation.Nullable String fileUrl) { - + this.fileUrl = fileUrl; return this; } @@ -102,7 +102,7 @@ public void setFileUrl(@javax.annotation.Nullable String fileUrl) { } public ChatCompletionContentPartFileFile fileData(@javax.annotation.Nullable String fileData) { - + this.fileData = fileData; return this; } @@ -127,7 +127,7 @@ public void setFileData(@javax.annotation.Nullable String fileData) { } public ChatCompletionContentPartFileFile filename(@javax.annotation.Nullable String filename) { - + this.filename = filename; return this; } @@ -262,4 +262,3 @@ public ChatCompletionContentPartFileFile.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartImage.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartImage.java index 95ea011..b8a16e8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartImage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartImage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ChatCompletionContentPartImage() { } public ChatCompletionContentPartImage type(@javax.annotation.Nonnull ChatCompletionContentPartType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull ChatCompletionContentPartType type } public ChatCompletionContentPartImage imageUrl(@javax.annotation.Nonnull ChatCompletionContentPartImageImageUrl imageUrl) { - + this.imageUrl = imageUrl; return this; } @@ -188,4 +188,3 @@ public ChatCompletionContentPartImage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartImageImageUrl.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartImageImageUrl.java index 647c181..f90bfad 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartImageImageUrl.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartImageImageUrl.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ChatCompletionContentPartImageImageUrl() { } public ChatCompletionContentPartImageImageUrl url(@javax.annotation.Nullable String url) { - + this.url = url; return this; } @@ -77,7 +77,7 @@ public void setUrl(@javax.annotation.Nullable String url) { } public ChatCompletionContentPartImageImageUrl detail(@javax.annotation.Nullable ImageDetail detail) { - + this.detail = detail; return this; } @@ -102,7 +102,7 @@ public void setDetail(@javax.annotation.Nullable ImageDetail detail) { } public ChatCompletionContentPartImageImageUrl imagePixelLimit(@javax.annotation.Nullable ImagePixelLimit imagePixelLimit) { - + this.imagePixelLimit = imagePixelLimit; return this; } @@ -127,7 +127,7 @@ public void setImagePixelLimit(@javax.annotation.Nullable ImagePixelLimit imageP } public ChatCompletionContentPartImageImageUrl fileId(@javax.annotation.Nullable String fileId) { - + this.fileId = fileId; return this; } @@ -262,4 +262,3 @@ public ChatCompletionContentPartImageImageUrl.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartText.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartText.java index 6afa15a..c5ece39 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartText.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartText.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ChatCompletionContentPartText() { } public ChatCompletionContentPartText type(@javax.annotation.Nonnull ChatCompletionContentPartType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull ChatCompletionContentPartType type } public ChatCompletionContentPartText text(@javax.annotation.Nonnull String text) { - + this.text = text; return this; } @@ -188,4 +188,3 @@ public ChatCompletionContentPartText.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartType.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartType.java index 7fbff06..2bedc20 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,15 +24,15 @@ * Gets or Sets ChatCompletionContentPartType */ public enum ChatCompletionContentPartType { - + FILE("file"), - + IMAGE_URL("image_url"), - + INPUT_AUDIO("input_audio"), - + TEXT("text"), - + VIDEO_URL("video_url"); private String value; @@ -61,4 +61,3 @@ public static ChatCompletionContentPartType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartVideo.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartVideo.java index b5ce5e6..393b486 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartVideo.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartVideo.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ChatCompletionContentPartVideo() { } public ChatCompletionContentPartVideo type(@javax.annotation.Nonnull ChatCompletionContentPartType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull ChatCompletionContentPartType type } public ChatCompletionContentPartVideo videoUrl(@javax.annotation.Nonnull ChatCompletionContentPartVideoVideoUrl videoUrl) { - + this.videoUrl = videoUrl; return this; } @@ -188,4 +188,3 @@ public ChatCompletionContentPartVideo.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartVideoVideoUrl.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartVideoVideoUrl.java index c5dcdd2..8bc8abd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartVideoVideoUrl.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionContentPartVideoVideoUrl.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ChatCompletionContentPartVideoVideoUrl() { } public ChatCompletionContentPartVideoVideoUrl url(@javax.annotation.Nullable String url) { - + this.url = url; return this; } @@ -82,7 +82,7 @@ public void setUrl(@javax.annotation.Nullable String url) { } public ChatCompletionContentPartVideoVideoUrl fps(@javax.annotation.Nullable Double fps) { - + this.fps = fps; return this; } @@ -107,7 +107,7 @@ public void setFps(@javax.annotation.Nullable Double fps) { } public ChatCompletionContentPartVideoVideoUrl detail(@javax.annotation.Nullable String detail) { - + this.detail = detail; return this; } @@ -132,7 +132,7 @@ public void setDetail(@javax.annotation.Nullable String detail) { } public ChatCompletionContentPartVideoVideoUrl imagePixelLimit(@javax.annotation.Nullable VideoImagePixelLimit imagePixelLimit) { - + this.imagePixelLimit = imagePixelLimit; return this; } @@ -157,7 +157,7 @@ public void setImagePixelLimit(@javax.annotation.Nullable VideoImagePixelLimit i } public ChatCompletionContentPartVideoVideoUrl fileId(@javax.annotation.Nullable String fileId) { - + this.fileId = fileId; return this; } @@ -299,4 +299,3 @@ public ChatCompletionContentPartVideoVideoUrl.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageContent.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageContent.java index 68681dd..f28c213 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageContent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageContent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCall.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCall.java index 307f0e8..9b7910a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCall.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCall.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ChatCompletionMessageToolCall() { } public ChatCompletionMessageToolCall id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -72,7 +72,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public ChatCompletionMessageToolCall type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -97,7 +97,7 @@ public void setType(@javax.annotation.Nonnull ToolType type) { } public ChatCompletionMessageToolCall function(@javax.annotation.Nonnull ChatCompletionMessageToolCallFunction function) { - + this.function = function; return this; } @@ -225,4 +225,3 @@ public ChatCompletionMessageToolCall.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallChunk.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallChunk.java index e477b50..8c7f83e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallChunk.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallChunk.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ChatCompletionMessageToolCallChunk() { } public ChatCompletionMessageToolCallChunk index(@javax.annotation.Nonnull Integer index) { - + this.index = index; return this; } @@ -77,7 +77,7 @@ public void setIndex(@javax.annotation.Nonnull Integer index) { } public ChatCompletionMessageToolCallChunk id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -102,7 +102,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ChatCompletionMessageToolCallChunk type(@javax.annotation.Nullable String type) { - + this.type = type; return this; } @@ -127,7 +127,7 @@ public void setType(@javax.annotation.Nullable String type) { } public ChatCompletionMessageToolCallChunk function(@javax.annotation.Nullable ChatCompletionMessageToolCallChunkFunction function) { - + this.function = function; return this; } @@ -262,4 +262,3 @@ public ChatCompletionMessageToolCallChunk.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallChunkFunction.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallChunkFunction.java index 2bece06..24108b1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallChunkFunction.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallChunkFunction.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ChatCompletionMessageToolCallChunkFunction() { } public ChatCompletionMessageToolCallChunkFunction name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -67,7 +67,7 @@ public void setName(@javax.annotation.Nullable String name) { } public ChatCompletionMessageToolCallChunkFunction arguments(@javax.annotation.Nullable String arguments) { - + this.arguments = arguments; return this; } @@ -188,4 +188,3 @@ public ChatCompletionMessageToolCallChunkFunction.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallFunction.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallFunction.java index f515d1e..dc7242d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallFunction.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionMessageToolCallFunction.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ChatCompletionMessageToolCallFunction() { } public ChatCompletionMessageToolCallFunction name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -67,7 +67,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public ChatCompletionMessageToolCallFunction arguments(@javax.annotation.Nonnull String arguments) { - + this.arguments = arguments; return this; } @@ -188,4 +188,3 @@ public ChatCompletionMessageToolCallFunction.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionNamedToolChoice.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionNamedToolChoice.java index ba359f7..fd6411f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionNamedToolChoice.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionNamedToolChoice.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public ChatCompletionNamedToolChoice() { } public ChatCompletionNamedToolChoice type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public ChatCompletionNamedToolChoice function(@javax.annotation.Nonnull ChatCompletionToolChoiceFunction function) { - + this.function = function; return this; } @@ -223,4 +223,3 @@ public ChatCompletionNamedToolChoice.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRequest.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRequest.java index e4103e1..c5bd666 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -156,7 +156,7 @@ public ChatCompletionRequest() { } public ChatCompletionRequest messages(@javax.annotation.Nonnull List messages) { - + this.messages = messages; return this; } @@ -189,7 +189,7 @@ public void setMessages(@javax.annotation.Nonnull List logitBias) { - + this.logitBias = logitBias; return this; } @@ -322,7 +322,7 @@ public void setLogitBias(@javax.annotation.Nullable Map logitBias } public ChatCompletionRequest logprobs(@javax.annotation.Nullable Boolean logprobs) { - + this.logprobs = logprobs; return this; } @@ -347,7 +347,7 @@ public void setLogprobs(@javax.annotation.Nullable Boolean logprobs) { } public ChatCompletionRequest topLogprobs(@javax.annotation.Nullable Integer topLogprobs) { - + this.topLogprobs = topLogprobs; return this; } @@ -372,7 +372,7 @@ public void setTopLogprobs(@javax.annotation.Nullable Integer topLogprobs) { } public ChatCompletionRequest maxTokens(@javax.annotation.Nullable Integer maxTokens) { - + this.maxTokens = maxTokens; return this; } @@ -397,7 +397,7 @@ public void setMaxTokens(@javax.annotation.Nullable Integer maxTokens) { } public ChatCompletionRequest maxCompletionTokens(@javax.annotation.Nullable Integer maxCompletionTokens) { - + this.maxCompletionTokens = maxCompletionTokens; return this; } @@ -422,7 +422,7 @@ public void setMaxCompletionTokens(@javax.annotation.Nullable Integer maxComplet } public ChatCompletionRequest n(@javax.annotation.Nullable Integer n) { - + this.n = n; return this; } @@ -447,7 +447,7 @@ public void setN(@javax.annotation.Nullable Integer n) { } public ChatCompletionRequest responseFormat(@javax.annotation.Nullable ChatCompletionResponseFormat responseFormat) { - + this.responseFormat = responseFormat; return this; } @@ -472,7 +472,7 @@ public void setResponseFormat(@javax.annotation.Nullable ChatCompletionResponseF } public ChatCompletionRequest stop(@javax.annotation.Nullable ChatCompletionStop stop) { - + this.stop = stop; return this; } @@ -497,7 +497,7 @@ public void setStop(@javax.annotation.Nullable ChatCompletionStop stop) { } public ChatCompletionRequest stream(@javax.annotation.Nullable Boolean stream) { - + this.stream = stream; return this; } @@ -522,7 +522,7 @@ public void setStream(@javax.annotation.Nullable Boolean stream) { } public ChatCompletionRequest streamOptions(@javax.annotation.Nullable ChatCompletionStreamOptions streamOptions) { - + this.streamOptions = streamOptions; return this; } @@ -547,7 +547,7 @@ public void setStreamOptions(@javax.annotation.Nullable ChatCompletionStreamOpti } public ChatCompletionRequest temperature(@javax.annotation.Nullable Double temperature) { - + this.temperature = temperature; return this; } @@ -572,7 +572,7 @@ public void setTemperature(@javax.annotation.Nullable Double temperature) { } public ChatCompletionRequest topP(@javax.annotation.Nullable Double topP) { - + this.topP = topP; return this; } @@ -597,7 +597,7 @@ public void setTopP(@javax.annotation.Nullable Double topP) { } public ChatCompletionRequest toolChoice(@javax.annotation.Nullable ChatCompletionToolChoice toolChoice) { - + this.toolChoice = toolChoice; return this; } @@ -622,7 +622,7 @@ public void setToolChoice(@javax.annotation.Nullable ChatCompletionToolChoice to } public ChatCompletionRequest tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -655,7 +655,7 @@ public void setTools(@javax.annotation.Nullable List tools) } public ChatCompletionRequest parallelToolCalls(@javax.annotation.Nullable Boolean parallelToolCalls) { - + this.parallelToolCalls = parallelToolCalls; return this; } @@ -680,7 +680,7 @@ public void setParallelToolCalls(@javax.annotation.Nullable Boolean parallelTool } public ChatCompletionRequest user(@javax.annotation.Nullable String user) { - + this.user = user; return this; } @@ -705,7 +705,7 @@ public void setUser(@javax.annotation.Nullable String user) { } public ChatCompletionRequest serviceTier(@javax.annotation.Nullable RequestServiceTier serviceTier) { - + this.serviceTier = serviceTier; return this; } @@ -730,7 +730,7 @@ public void setServiceTier(@javax.annotation.Nullable RequestServiceTier service } public ChatCompletionRequest reasoningEffort(@javax.annotation.Nullable ReasoningEffort reasoningEffort) { - + this.reasoningEffort = reasoningEffort; return this; } @@ -755,7 +755,7 @@ public void setReasoningEffort(@javax.annotation.Nullable ReasoningEffort reason } public ChatCompletionRequest thinking(@javax.annotation.Nullable Thinking thinking) { - + this.thinking = thinking; return this; } @@ -1030,4 +1030,3 @@ public ChatCompletionRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRequestAssistantMessage.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRequestAssistantMessage.java index c71d564..d1b928c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRequestAssistantMessage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRequestAssistantMessage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -64,7 +64,7 @@ public ChatCompletionRequestAssistantMessage() { } public ChatCompletionRequestAssistantMessage role(@javax.annotation.Nonnull ChatCompletionRequestMessageType role) { - + this.role = role; return this; } @@ -89,7 +89,7 @@ public void setRole(@javax.annotation.Nonnull ChatCompletionRequestMessageType r } public ChatCompletionRequestAssistantMessage content(@javax.annotation.Nullable ChatCompletionMessageContent content) { - + this.content = content; return this; } @@ -114,7 +114,7 @@ public void setContent(@javax.annotation.Nullable ChatCompletionMessageContent c } public ChatCompletionRequestAssistantMessage reasoningContent(@javax.annotation.Nullable ChatCompletionMessageContent reasoningContent) { - + this.reasoningContent = reasoningContent; return this; } @@ -139,7 +139,7 @@ public void setReasoningContent(@javax.annotation.Nullable ChatCompletionMessage } public ChatCompletionRequestAssistantMessage encryptedContent(@javax.annotation.Nullable String encryptedContent) { - + this.encryptedContent = encryptedContent; return this; } @@ -164,7 +164,7 @@ public void setEncryptedContent(@javax.annotation.Nullable String encryptedConte } public ChatCompletionRequestAssistantMessage toolCalls(@javax.annotation.Nullable List toolCalls) { - + this.toolCalls = toolCalls; return this; } @@ -197,7 +197,7 @@ public void setToolCalls(@javax.annotation.Nullable List choices) { - + this.choices = choices; return this; } @@ -242,7 +242,7 @@ public void setChoices(@javax.annotation.Nonnull List schema) { - + this.schema = schema; return this; } @@ -137,7 +137,7 @@ public void setSchema(@javax.annotation.Nullable Map schema) { } public ChatCompletionResponseFormatJsonSchema strict(@javax.annotation.Nullable Boolean strict) { - + this.strict = strict; return this; } @@ -272,4 +272,3 @@ public ChatCompletionResponseFormatJsonSchema.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionResponseMessage.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionResponseMessage.java index ef45092..8c7af4b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionResponseMessage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionResponseMessage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public ChatCompletionResponseMessage() { } public ChatCompletionResponseMessage role(@javax.annotation.Nonnull ChatCompletionRole role) { - + this.role = role; return this; } @@ -84,7 +84,7 @@ public void setRole(@javax.annotation.Nonnull ChatCompletionRole role) { } public ChatCompletionResponseMessage content(@javax.annotation.Nonnull String content) { - + this.content = content; return this; } @@ -109,7 +109,7 @@ public void setContent(@javax.annotation.Nonnull String content) { } public ChatCompletionResponseMessage reasoningContent(@javax.annotation.Nullable String reasoningContent) { - + this.reasoningContent = reasoningContent; return this; } @@ -134,7 +134,7 @@ public void setReasoningContent(@javax.annotation.Nullable String reasoningConte } public ChatCompletionResponseMessage encryptedContent(@javax.annotation.Nullable String encryptedContent) { - + this.encryptedContent = encryptedContent; return this; } @@ -159,7 +159,7 @@ public void setEncryptedContent(@javax.annotation.Nullable String encryptedConte } public ChatCompletionResponseMessage toolCalls(@javax.annotation.Nullable List toolCalls) { - + this.toolCalls = toolCalls; return this; } @@ -309,4 +309,3 @@ public ChatCompletionResponseMessage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRole.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRole.java index 96e6eb4..d2beff2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRole.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionRole.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets ChatCompletionRole */ public enum ChatCompletionRole { - + USER("user"), - + SYSTEM("system"), - + ASSISTANT("assistant"), - + TOOL("tool"); private String value; @@ -59,4 +59,3 @@ public static ChatCompletionRole fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionServiceStatus.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionServiceStatus.java index ccd45bb..573975d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionServiceStatus.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionServiceStatus.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ChatCompletionServiceStatus() { } public ChatCompletionServiceStatus modelFallback(@javax.annotation.Nullable ModelFallbackStatus modelFallback) { - + this.modelFallback = modelFallback; return this; } @@ -151,4 +151,3 @@ public ChatCompletionServiceStatus.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStop.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStop.java index d8aba4b..24da12e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStop.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStop.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamChoiceLogprobs.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamChoiceLogprobs.java index 18fe810..152d620 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamChoiceLogprobs.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamChoiceLogprobs.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public ChatCompletionStreamChoiceLogprobs() { } public ChatCompletionStreamChoiceLogprobs content(@javax.annotation.Nonnull List content) { - + this.content = content; return this; } @@ -161,4 +161,3 @@ public ChatCompletionStreamChoiceLogprobs.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamOptions.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamOptions.java index 2e00c12..f5a0b38 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamOptions.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamOptions.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ChatCompletionStreamOptions() { } public ChatCompletionStreamOptions includeUsage(@javax.annotation.Nullable Boolean includeUsage) { - + this.includeUsage = includeUsage; return this; } @@ -67,7 +67,7 @@ public void setIncludeUsage(@javax.annotation.Nullable Boolean includeUsage) { } public ChatCompletionStreamOptions chunkIncludeUsage(@javax.annotation.Nullable Boolean chunkIncludeUsage) { - + this.chunkIncludeUsage = chunkIncludeUsage; return this; } @@ -188,4 +188,3 @@ public ChatCompletionStreamOptions.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamResponse.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamResponse.java index d9d3be2..d8af61e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionStreamResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -109,7 +109,7 @@ public ChatCompletionStreamResponse() { } public ChatCompletionStreamResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -134,7 +134,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public ChatCompletionStreamResponse model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -159,7 +159,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public ChatCompletionStreamResponse created(@javax.annotation.Nonnull Integer created) { - + this.created = created; return this; } @@ -184,7 +184,7 @@ public void setCreated(@javax.annotation.Nonnull Integer created) { } public ChatCompletionStreamResponse _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -209,7 +209,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public ChatCompletionStreamResponse choices(@javax.annotation.Nonnull List choices) { - + this.choices = choices; return this; } @@ -242,7 +242,7 @@ public void setChoices(@javax.annotation.Nonnull List toolCalls) { - + this.toolCalls = toolCalls; return this; } @@ -309,4 +309,3 @@ public ChatCompletionStreamResponseDelta.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTokenLogprob.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTokenLogprob.java index 5ebc5f9..ee0951f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTokenLogprob.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTokenLogprob.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public ChatCompletionTokenLogprob() { } public ChatCompletionTokenLogprob token(@javax.annotation.Nonnull String token) { - + this.token = token; return this; } @@ -79,7 +79,7 @@ public void setToken(@javax.annotation.Nonnull String token) { } public ChatCompletionTokenLogprob logprob(@javax.annotation.Nonnull Double logprob) { - + this.logprob = logprob; return this; } @@ -104,7 +104,7 @@ public void setLogprob(@javax.annotation.Nonnull Double logprob) { } public ChatCompletionTokenLogprob bytes(@javax.annotation.Nullable List bytes) { - + this.bytes = bytes; return this; } @@ -137,7 +137,7 @@ public void setBytes(@javax.annotation.Nullable List bytes) { } public ChatCompletionTokenLogprob topLogprobs(@javax.annotation.Nonnull List topLogprobs) { - + this.topLogprobs = topLogprobs; return this; } @@ -280,4 +280,3 @@ public ChatCompletionTokenLogprob.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTokenLogprobTopLogprob.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTokenLogprobTopLogprob.java index 9673e00..937b99c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTokenLogprobTopLogprob.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTokenLogprobTopLogprob.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public ChatCompletionTokenLogprobTopLogprob() { } public ChatCompletionTokenLogprobTopLogprob token(@javax.annotation.Nonnull String token) { - + this.token = token; return this; } @@ -74,7 +74,7 @@ public void setToken(@javax.annotation.Nonnull String token) { } public ChatCompletionTokenLogprobTopLogprob logprob(@javax.annotation.Nonnull Double logprob) { - + this.logprob = logprob; return this; } @@ -99,7 +99,7 @@ public void setLogprob(@javax.annotation.Nonnull Double logprob) { } public ChatCompletionTokenLogprobTopLogprob bytes(@javax.annotation.Nonnull List bytes) { - + this.bytes = bytes; return this; } @@ -235,4 +235,3 @@ public ChatCompletionTokenLogprobTopLogprob.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTool.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTool.java index d41ba52..e3df327 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionTool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ChatCompletionTool() { } public ChatCompletionTool type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull ToolType type) { } public ChatCompletionTool function(@javax.annotation.Nonnull FunctionObject function) { - + this.function = function; return this; } @@ -188,4 +188,3 @@ public ChatCompletionTool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionToolChoice.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionToolChoice.java index e6b7ff4..0d5cee2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionToolChoice.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionToolChoice.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionToolChoiceFunction.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionToolChoiceFunction.java index 463499e..e92c53d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionToolChoiceFunction.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ChatCompletionToolChoiceFunction.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ChatCompletionToolChoiceFunction() { } public ChatCompletionToolChoiceFunction name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -151,4 +151,3 @@ public ChatCompletionToolChoiceFunction.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/CompletionTokensDetails.java b/src/main/java/com/volcengine/ark/runtime/models/chat/CompletionTokensDetails.java index 0cd9d2b..e62d4fb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/CompletionTokensDetails.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/CompletionTokensDetails.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public CompletionTokensDetails() { } public CompletionTokensDetails reasoningTokens(@javax.annotation.Nonnull Integer reasoningTokens) { - + this.reasoningTokens = reasoningTokens; return this; } @@ -151,4 +151,3 @@ public CompletionTokensDetails.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/CompletionUsage.java b/src/main/java/com/volcengine/ark/runtime/models/chat/CompletionUsage.java index 0eb0510..77a9b0d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/CompletionUsage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/CompletionUsage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public CompletionUsage() { } public CompletionUsage promptTokens(@javax.annotation.Nonnull Integer promptTokens) { - + this.promptTokens = promptTokens; return this; } @@ -82,7 +82,7 @@ public void setPromptTokens(@javax.annotation.Nonnull Integer promptTokens) { } public CompletionUsage completionTokens(@javax.annotation.Nonnull Integer completionTokens) { - + this.completionTokens = completionTokens; return this; } @@ -107,7 +107,7 @@ public void setCompletionTokens(@javax.annotation.Nonnull Integer completionToke } public CompletionUsage totalTokens(@javax.annotation.Nonnull Integer totalTokens) { - + this.totalTokens = totalTokens; return this; } @@ -132,7 +132,7 @@ public void setTotalTokens(@javax.annotation.Nonnull Integer totalTokens) { } public CompletionUsage promptTokensDetails(@javax.annotation.Nonnull PromptTokensDetails promptTokensDetails) { - + this.promptTokensDetails = promptTokensDetails; return this; } @@ -157,7 +157,7 @@ public void setPromptTokensDetails(@javax.annotation.Nonnull PromptTokensDetails } public CompletionUsage completionTokensDetails(@javax.annotation.Nonnull CompletionTokensDetails completionTokensDetails) { - + this.completionTokensDetails = completionTokensDetails; return this; } @@ -299,4 +299,3 @@ public CompletionUsage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/Error.java b/src/main/java/com/volcengine/ark/runtime/models/chat/Error.java index 888d86a..d1d04c6 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/Error.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/Error.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public Error() { } public Error code(@javax.annotation.Nonnull String code) { - + this.code = code; return this; } @@ -77,7 +77,7 @@ public void setCode(@javax.annotation.Nonnull String code) { } public Error message(@javax.annotation.Nonnull String message) { - + this.message = message; return this; } @@ -102,7 +102,7 @@ public void setMessage(@javax.annotation.Nonnull String message) { } public Error param(@javax.annotation.Nonnull String param) { - + this.param = param; return this; } @@ -127,7 +127,7 @@ public void setParam(@javax.annotation.Nonnull String param) { } public Error type(@javax.annotation.Nonnull String type) { - + this.type = type; return this; } @@ -262,4 +262,3 @@ public Error.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ErrorResponse.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ErrorResponse.java index 54cf07c..20840a8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ErrorResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ErrorResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ErrorResponse() { } public ErrorResponse error(@javax.annotation.Nonnull Error error) { - + this.error = error; return this; } @@ -151,4 +151,3 @@ public ErrorResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/FinishReason.java b/src/main/java/com/volcengine/ark/runtime/models/chat/FinishReason.java index 50106c7..87e2ec0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/FinishReason.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/FinishReason.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets FinishReason */ public enum FinishReason { - + STOP("stop"), - + LENGTH("length"), - + TOOL_CALLS("tool_calls"), - + CONTENT_FILTER("content_filter"); private String value; @@ -59,4 +59,3 @@ public static FinishReason fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/FunctionObject.java b/src/main/java/com/volcengine/ark/runtime/models/chat/FunctionObject.java index 0de7531..81b83d1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/FunctionObject.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/FunctionObject.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public FunctionObject() { } public FunctionObject name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -79,7 +79,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public FunctionObject description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -104,7 +104,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public FunctionObject parameters(@javax.annotation.Nullable Map parameters) { - + this.parameters = parameters; return this; } @@ -137,7 +137,7 @@ public void setParameters(@javax.annotation.Nullable Map paramet } public FunctionObject strict(@javax.annotation.Nullable Boolean strict) { - + this.strict = strict; return this; } @@ -272,4 +272,3 @@ public FunctionObject.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ImageDetail.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ImageDetail.java index f94f022..4546693 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ImageDetail.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ImageDetail.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets ImageDetail */ public enum ImageDetail { - + AUTO("auto"), - + HIGH("high"), - + LOW("low"), - + XHIGH("xhigh"); private String value; @@ -59,4 +59,3 @@ public static ImageDetail fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ImagePixelLimit.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ImagePixelLimit.java index bf2e35d..b55e14d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ImagePixelLimit.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ImagePixelLimit.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ImagePixelLimit() { } public ImagePixelLimit maxPixels(@javax.annotation.Nullable Long maxPixels) { - + this.maxPixels = maxPixels; return this; } @@ -67,7 +67,7 @@ public void setMaxPixels(@javax.annotation.Nullable Long maxPixels) { } public ImagePixelLimit minPixels(@javax.annotation.Nullable Long minPixels) { - + this.minPixels = minPixels; return this; } @@ -188,4 +188,3 @@ public ImagePixelLimit.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ModelFallbackStatus.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ModelFallbackStatus.java index b889a5d..09831c5 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ModelFallbackStatus.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ModelFallbackStatus.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ModelFallbackStatus() { } public ModelFallbackStatus fallbackTriggered(@javax.annotation.Nonnull Boolean fallbackTriggered) { - + this.fallbackTriggered = fallbackTriggered; return this; } @@ -67,7 +67,7 @@ public void setFallbackTriggered(@javax.annotation.Nonnull Boolean fallbackTrigg } public ModelFallbackStatus originalModel(@javax.annotation.Nonnull String originalModel) { - + this.originalModel = originalModel; return this; } @@ -188,4 +188,3 @@ public ModelFallbackStatus.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ModerationHitType.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ModerationHitType.java index c448240..c642f81 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ModerationHitType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ModerationHitType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets ModerationHitType */ public enum ModerationHitType { - + VIOLENCE("violence"), - + SEVERE_VIOLATION("severe_violation"); private String value; @@ -55,4 +55,3 @@ public static ModerationHitType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/PromptTokensDetails.java b/src/main/java/com/volcengine/ark/runtime/models/chat/PromptTokensDetails.java index 5c72c61..b828439 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/PromptTokensDetails.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/PromptTokensDetails.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public PromptTokensDetails() { } public PromptTokensDetails cachedTokens(@javax.annotation.Nonnull Integer cachedTokens) { - + this.cachedTokens = cachedTokens; return this; } @@ -82,7 +82,7 @@ public void setCachedTokens(@javax.annotation.Nonnull Integer cachedTokens) { } public PromptTokensDetails textTokens(@javax.annotation.Nullable Integer textTokens) { - + this.textTokens = textTokens; return this; } @@ -107,7 +107,7 @@ public void setTextTokens(@javax.annotation.Nullable Integer textTokens) { } public PromptTokensDetails imageTokens(@javax.annotation.Nullable Integer imageTokens) { - + this.imageTokens = imageTokens; return this; } @@ -132,7 +132,7 @@ public void setImageTokens(@javax.annotation.Nullable Integer imageTokens) { } public PromptTokensDetails audioTokens(@javax.annotation.Nullable Integer audioTokens) { - + this.audioTokens = audioTokens; return this; } @@ -157,7 +157,7 @@ public void setAudioTokens(@javax.annotation.Nullable Integer audioTokens) { } public PromptTokensDetails audioCachedTokens(@javax.annotation.Nullable Integer audioCachedTokens) { - + this.audioCachedTokens = audioCachedTokens; return this; } @@ -299,4 +299,3 @@ public PromptTokensDetails.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ReasoningEffort.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ReasoningEffort.java index aea85a8..fa57407 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ReasoningEffort.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ReasoningEffort.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,15 +24,15 @@ * Gets or Sets ReasoningEffort */ public enum ReasoningEffort { - + MINIMAL("minimal"), - + LOW("low"), - + MEDIUM("medium"), - + HIGH("high"), - + MAX("max"); private String value; @@ -61,4 +61,3 @@ public static ReasoningEffort fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/RequestServiceTier.java b/src/main/java/com/volcengine/ark/runtime/models/chat/RequestServiceTier.java index 30d1a52..955d51e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/RequestServiceTier.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/RequestServiceTier.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets RequestServiceTier */ public enum RequestServiceTier { - + AUTO("auto"), - + DEFAULT("default"), - + FAST("fast"); private String value; @@ -57,4 +57,3 @@ public static RequestServiceTier fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ResponseFormatType.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ResponseFormatType.java index 84af953..5a22561 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ResponseFormatType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ResponseFormatType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets ResponseFormatType */ public enum ResponseFormatType { - + TEXT("text"), - + JSON_OBJECT("json_object"), - + JSON_SCHEMA("json_schema"); private String value; @@ -57,4 +57,3 @@ public static ResponseFormatType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ResponseServiceTier.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ResponseServiceTier.java index aa4b081..6315427 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ResponseServiceTier.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ResponseServiceTier.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets ResponseServiceTier */ public enum ResponseServiceTier { - + DEFAULT("default"), - + SCALE("scale"), - + FAST("fast"); private String value; @@ -57,4 +57,3 @@ public static ResponseServiceTier fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/Thinking.java b/src/main/java/com/volcengine/ark/runtime/models/chat/Thinking.java index 40cbbb6..5fe42b0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/Thinking.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/Thinking.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public Thinking() { } public Thinking type(@javax.annotation.Nullable ThinkingMode type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public Thinking.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ThinkingMode.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ThinkingMode.java index 678b7ea..4f9f160 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ThinkingMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ThinkingMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets ThinkingMode */ public enum ThinkingMode { - + ENABLED("enabled"), - + DISABLED("disabled"), - + AUTO("auto"); private String value; @@ -57,4 +57,3 @@ public static ThinkingMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ToolChoiceMode.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ToolChoiceMode.java index d3f272f..2455f14 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ToolChoiceMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ToolChoiceMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets ToolChoiceMode */ public enum ToolChoiceMode { - + AUTO("auto"), - + NONE("none"), - + REQUIRED("required"); private String value; @@ -57,4 +57,3 @@ public static ToolChoiceMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/ToolType.java b/src/main/java/com/volcengine/ark/runtime/models/chat/ToolType.java index 6d8a61f..fb2754a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/ToolType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/ToolType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,7 +24,7 @@ * Gets or Sets ToolType */ public enum ToolType { - + FUNCTION("function"); private String value; @@ -53,4 +53,3 @@ public static ToolType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/chat/VideoImagePixelLimit.java b/src/main/java/com/volcengine/ark/runtime/models/chat/VideoImagePixelLimit.java index 45d74d3..a40b2dd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/chat/VideoImagePixelLimit.java +++ b/src/main/java/com/volcengine/ark/runtime/models/chat/VideoImagePixelLimit.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public VideoImagePixelLimit() { } public VideoImagePixelLimit maxPixels(@javax.annotation.Nullable Long maxPixels) { - + this.maxPixels = maxPixels; return this; } @@ -67,7 +67,7 @@ public void setMaxPixels(@javax.annotation.Nullable Long maxPixels) { } public VideoImagePixelLimit minPixels(@javax.annotation.Nullable Long minPixels) { - + this.minPixels = minPixels; return this; } @@ -188,4 +188,3 @@ public VideoImagePixelLimit.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/AudioRole.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/AudioRole.java index 7ac9a4c..1d59503 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/AudioRole.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/AudioRole.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,7 +24,7 @@ * Role hint for an audio content entry. */ public enum AudioRole { - + REFERENCE_AUDIO("reference_audio"); private String value; @@ -53,4 +53,3 @@ public static AudioRole fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/AudioURL.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/AudioURL.java index 05527c0..b72695d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/AudioURL.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/AudioURL.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public AudioURL() { } public AudioURL url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -151,4 +151,3 @@ public AudioURL.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentGenerationTask.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentGenerationTask.java index c1e5578..47ea3da 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentGenerationTask.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentGenerationTask.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -159,7 +159,7 @@ public ContentGenerationTask() { } public ContentGenerationTask id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -184,7 +184,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public ContentGenerationTask model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -209,7 +209,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public ContentGenerationTask status(@javax.annotation.Nonnull TaskStatus status) { - + this.status = status; return this; } @@ -234,7 +234,7 @@ public void setStatus(@javax.annotation.Nonnull TaskStatus status) { } public ContentGenerationTask error(@javax.annotation.Nullable TaskError error) { - + this.error = error; return this; } @@ -259,7 +259,7 @@ public void setError(@javax.annotation.Nullable TaskError error) { } public ContentGenerationTask content(@javax.annotation.Nullable TaskContent content) { - + this.content = content; return this; } @@ -284,7 +284,7 @@ public void setContent(@javax.annotation.Nullable TaskContent content) { } public ContentGenerationTask usage(@javax.annotation.Nullable TaskUsage usage) { - + this.usage = usage; return this; } @@ -309,7 +309,7 @@ public void setUsage(@javax.annotation.Nullable TaskUsage usage) { } public ContentGenerationTask createdAt(@javax.annotation.Nullable Long createdAt) { - + this.createdAt = createdAt; return this; } @@ -334,7 +334,7 @@ public void setCreatedAt(@javax.annotation.Nullable Long createdAt) { } public ContentGenerationTask updatedAt(@javax.annotation.Nullable Long updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -359,7 +359,7 @@ public void setUpdatedAt(@javax.annotation.Nullable Long updatedAt) { } public ContentGenerationTask seed(@javax.annotation.Nullable Long seed) { - + this.seed = seed; return this; } @@ -384,7 +384,7 @@ public void setSeed(@javax.annotation.Nullable Long seed) { } public ContentGenerationTask resolution(@javax.annotation.Nullable String resolution) { - + this.resolution = resolution; return this; } @@ -409,7 +409,7 @@ public void setResolution(@javax.annotation.Nullable String resolution) { } public ContentGenerationTask ratio(@javax.annotation.Nullable String ratio) { - + this.ratio = ratio; return this; } @@ -434,7 +434,7 @@ public void setRatio(@javax.annotation.Nullable String ratio) { } public ContentGenerationTask duration(@javax.annotation.Nullable Long duration) { - + this.duration = duration; return this; } @@ -459,7 +459,7 @@ public void setDuration(@javax.annotation.Nullable Long duration) { } public ContentGenerationTask frames(@javax.annotation.Nullable Long frames) { - + this.frames = frames; return this; } @@ -484,7 +484,7 @@ public void setFrames(@javax.annotation.Nullable Long frames) { } public ContentGenerationTask framespersecond(@javax.annotation.Nullable Long framespersecond) { - + this.framespersecond = framespersecond; return this; } @@ -509,7 +509,7 @@ public void setFramespersecond(@javax.annotation.Nullable Long framespersecond) } public ContentGenerationTask revisedPrompt(@javax.annotation.Nullable String revisedPrompt) { - + this.revisedPrompt = revisedPrompt; return this; } @@ -534,7 +534,7 @@ public void setRevisedPrompt(@javax.annotation.Nullable String revisedPrompt) { } public ContentGenerationTask subdivisionlevel(@javax.annotation.Nullable String subdivisionlevel) { - + this.subdivisionlevel = subdivisionlevel; return this; } @@ -559,7 +559,7 @@ public void setSubdivisionlevel(@javax.annotation.Nullable String subdivisionlev } public ContentGenerationTask fileformat(@javax.annotation.Nullable String fileformat) { - + this.fileformat = fileformat; return this; } @@ -584,7 +584,7 @@ public void setFileformat(@javax.annotation.Nullable String fileformat) { } public ContentGenerationTask serviceTier(@javax.annotation.Nullable String serviceTier) { - + this.serviceTier = serviceTier; return this; } @@ -609,7 +609,7 @@ public void setServiceTier(@javax.annotation.Nullable String serviceTier) { } public ContentGenerationTask executionExpiresAfter(@javax.annotation.Nullable Long executionExpiresAfter) { - + this.executionExpiresAfter = executionExpiresAfter; return this; } @@ -634,7 +634,7 @@ public void setExecutionExpiresAfter(@javax.annotation.Nullable Long executionEx } public ContentGenerationTask generateAudio(@javax.annotation.Nullable Boolean generateAudio) { - + this.generateAudio = generateAudio; return this; } @@ -659,7 +659,7 @@ public void setGenerateAudio(@javax.annotation.Nullable Boolean generateAudio) { } public ContentGenerationTask draft(@javax.annotation.Nullable Boolean draft) { - + this.draft = draft; return this; } @@ -684,7 +684,7 @@ public void setDraft(@javax.annotation.Nullable Boolean draft) { } public ContentGenerationTask draftTaskId(@javax.annotation.Nullable String draftTaskId) { - + this.draftTaskId = draftTaskId; return this; } @@ -709,7 +709,7 @@ public void setDraftTaskId(@javax.annotation.Nullable String draftTaskId) { } public ContentGenerationTask tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -742,7 +742,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public ContentGenerationTask reasoningEffort(@javax.annotation.Nullable ReasoningEffort reasoningEffort) { - + this.reasoningEffort = reasoningEffort; return this; } @@ -767,7 +767,7 @@ public void setReasoningEffort(@javax.annotation.Nullable ReasoningEffort reason } public ContentGenerationTask safetyIdentifier(@javax.annotation.Nullable String safetyIdentifier) { - + this.safetyIdentifier = safetyIdentifier; return this; } @@ -1049,4 +1049,3 @@ public ContentGenerationTask.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentItem.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentItem.java index 5b0b2d1..7926e23 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -67,7 +67,7 @@ public ContentItem() { } public ContentItem type(@javax.annotation.Nonnull ContentType type) { - + this.type = type; return this; } @@ -92,7 +92,7 @@ public void setType(@javax.annotation.Nonnull ContentType type) { } public ContentItem text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -117,7 +117,7 @@ public void setText(@javax.annotation.Nullable String text) { } public ContentItem imageUrl(@javax.annotation.Nullable ImageURL imageUrl) { - + this.imageUrl = imageUrl; return this; } @@ -142,7 +142,7 @@ public void setImageUrl(@javax.annotation.Nullable ImageURL imageUrl) { } public ContentItem videoUrl(@javax.annotation.Nullable VideoURL videoUrl) { - + this.videoUrl = videoUrl; return this; } @@ -167,7 +167,7 @@ public void setVideoUrl(@javax.annotation.Nullable VideoURL videoUrl) { } public ContentItem audioUrl(@javax.annotation.Nullable AudioURL audioUrl) { - + this.audioUrl = audioUrl; return this; } @@ -192,7 +192,7 @@ public void setAudioUrl(@javax.annotation.Nullable AudioURL audioUrl) { } public ContentItem draftTask(@javax.annotation.Nullable DraftTask draftTask) { - + this.draftTask = draftTask; return this; } @@ -217,7 +217,7 @@ public void setDraftTask(@javax.annotation.Nullable DraftTask draftTask) { } public ContentItem role(@javax.annotation.Nullable String role) { - + this.role = role; return this; } @@ -373,4 +373,3 @@ public ContentItem.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentType.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentType.java index cf1a01b..837b6c8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ContentType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,15 +24,15 @@ * Discriminator for an entry in the request `content` list. */ public enum ContentType { - + TEXT("text"), - + IMAGE_URL("image_url"), - + VIDEO_URL("video_url"), - + AUDIO_URL("audio_url"), - + DRAFT_TASK("draft_task"); private String value; @@ -61,4 +61,3 @@ public static ContentType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/CreateContentGenerationTaskRequest.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/CreateContentGenerationTaskRequest.java index ec4246a..11a830f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/CreateContentGenerationTaskRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/CreateContentGenerationTaskRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -144,7 +144,7 @@ public CreateContentGenerationTaskRequest() { } public CreateContentGenerationTaskRequest model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -169,7 +169,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public CreateContentGenerationTaskRequest content(@javax.annotation.Nonnull List content) { - + this.content = content; return this; } @@ -202,7 +202,7 @@ public void setContent(@javax.annotation.Nonnull List content) { } public CreateContentGenerationTaskRequest callbackUrl(@javax.annotation.Nullable String callbackUrl) { - + this.callbackUrl = callbackUrl; return this; } @@ -227,7 +227,7 @@ public void setCallbackUrl(@javax.annotation.Nullable String callbackUrl) { } public CreateContentGenerationTaskRequest returnLastFrame(@javax.annotation.Nullable Boolean returnLastFrame) { - + this.returnLastFrame = returnLastFrame; return this; } @@ -252,7 +252,7 @@ public void setReturnLastFrame(@javax.annotation.Nullable Boolean returnLastFram } public CreateContentGenerationTaskRequest serviceTier(@javax.annotation.Nullable String serviceTier) { - + this.serviceTier = serviceTier; return this; } @@ -277,7 +277,7 @@ public void setServiceTier(@javax.annotation.Nullable String serviceTier) { } public CreateContentGenerationTaskRequest executionExpiresAfter(@javax.annotation.Nullable Long executionExpiresAfter) { - + this.executionExpiresAfter = executionExpiresAfter; return this; } @@ -302,7 +302,7 @@ public void setExecutionExpiresAfter(@javax.annotation.Nullable Long executionEx } public CreateContentGenerationTaskRequest generateAudio(@javax.annotation.Nullable Boolean generateAudio) { - + this.generateAudio = generateAudio; return this; } @@ -327,7 +327,7 @@ public void setGenerateAudio(@javax.annotation.Nullable Boolean generateAudio) { } public CreateContentGenerationTaskRequest cameraFixed(@javax.annotation.Nullable Boolean cameraFixed) { - + this.cameraFixed = cameraFixed; return this; } @@ -352,7 +352,7 @@ public void setCameraFixed(@javax.annotation.Nullable Boolean cameraFixed) { } public CreateContentGenerationTaskRequest watermark(@javax.annotation.Nullable Boolean watermark) { - + this.watermark = watermark; return this; } @@ -377,7 +377,7 @@ public void setWatermark(@javax.annotation.Nullable Boolean watermark) { } public CreateContentGenerationTaskRequest seed(@javax.annotation.Nullable Long seed) { - + this.seed = seed; return this; } @@ -402,7 +402,7 @@ public void setSeed(@javax.annotation.Nullable Long seed) { } public CreateContentGenerationTaskRequest resolution(@javax.annotation.Nullable String resolution) { - + this.resolution = resolution; return this; } @@ -427,7 +427,7 @@ public void setResolution(@javax.annotation.Nullable String resolution) { } public CreateContentGenerationTaskRequest ratio(@javax.annotation.Nullable String ratio) { - + this.ratio = ratio; return this; } @@ -452,7 +452,7 @@ public void setRatio(@javax.annotation.Nullable String ratio) { } public CreateContentGenerationTaskRequest duration(@javax.annotation.Nullable Long duration) { - + this.duration = duration; return this; } @@ -477,7 +477,7 @@ public void setDuration(@javax.annotation.Nullable Long duration) { } public CreateContentGenerationTaskRequest frames(@javax.annotation.Nullable Long frames) { - + this.frames = frames; return this; } @@ -502,7 +502,7 @@ public void setFrames(@javax.annotation.Nullable Long frames) { } public CreateContentGenerationTaskRequest subdivisionLevel(@javax.annotation.Nullable String subdivisionLevel) { - + this.subdivisionLevel = subdivisionLevel; return this; } @@ -527,7 +527,7 @@ public void setSubdivisionLevel(@javax.annotation.Nullable String subdivisionLev } public CreateContentGenerationTaskRequest fileFormat(@javax.annotation.Nullable String fileFormat) { - + this.fileFormat = fileFormat; return this; } @@ -552,7 +552,7 @@ public void setFileFormat(@javax.annotation.Nullable String fileFormat) { } public CreateContentGenerationTaskRequest draft(@javax.annotation.Nullable Boolean draft) { - + this.draft = draft; return this; } @@ -577,7 +577,7 @@ public void setDraft(@javax.annotation.Nullable Boolean draft) { } public CreateContentGenerationTaskRequest optimizePrompt(@javax.annotation.Nullable Boolean optimizePrompt) { - + this.optimizePrompt = optimizePrompt; return this; } @@ -602,7 +602,7 @@ public void setOptimizePrompt(@javax.annotation.Nullable Boolean optimizePrompt) } public CreateContentGenerationTaskRequest tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -635,7 +635,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public CreateContentGenerationTaskRequest reasoningEffort(@javax.annotation.Nullable ReasoningEffort reasoningEffort) { - + this.reasoningEffort = reasoningEffort; return this; } @@ -660,7 +660,7 @@ public void setReasoningEffort(@javax.annotation.Nullable ReasoningEffort reason } public CreateContentGenerationTaskRequest humanFaceMode(@javax.annotation.Nullable String humanFaceMode) { - + this.humanFaceMode = humanFaceMode; return this; } @@ -685,7 +685,7 @@ public void setHumanFaceMode(@javax.annotation.Nullable String humanFaceMode) { } public CreateContentGenerationTaskRequest safetyIdentifier(@javax.annotation.Nullable String safetyIdentifier) { - + this.safetyIdentifier = safetyIdentifier; return this; } @@ -946,4 +946,3 @@ public CreateContentGenerationTaskRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/CreateContentGenerationTaskResponse.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/CreateContentGenerationTaskResponse.java index 171b132..d0a7f6a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/CreateContentGenerationTaskResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/CreateContentGenerationTaskResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public CreateContentGenerationTaskResponse() { } public CreateContentGenerationTaskResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -151,4 +151,3 @@ public CreateContentGenerationTaskResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/DraftTask.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/DraftTask.java index adf56e4..37692c8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/DraftTask.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/DraftTask.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public DraftTask() { } public DraftTask id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -151,4 +151,3 @@ public DraftTask.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ImageRole.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ImageRole.java index da1176d..1166100 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ImageRole.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ImageRole.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Role hint for an image content entry (first frame, last frame, etc). */ public enum ImageRole { - + FIRST_FRAME("first_frame"), - + LAST_FRAME("last_frame"), - + REFERENCE_IMAGE("reference_image"), - + MASK("mask"); private String value; @@ -59,4 +59,3 @@ public static ImageRole fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ImageURL.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ImageURL.java index 42d5984..6ed51d9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ImageURL.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ImageURL.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ImageURL() { } public ImageURL url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -151,4 +151,3 @@ public ImageURL.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ListContentGenerationTasksRequest.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ListContentGenerationTasksRequest.java index 954bdc5..5393ad5 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ListContentGenerationTasksRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ListContentGenerationTasksRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -64,7 +64,7 @@ public ListContentGenerationTasksRequest() { } public ListContentGenerationTasksRequest pageNum(@javax.annotation.Nullable Integer pageNum) { - + this.pageNum = pageNum; return this; } @@ -89,7 +89,7 @@ public void setPageNum(@javax.annotation.Nullable Integer pageNum) { } public ListContentGenerationTasksRequest pageSize(@javax.annotation.Nullable Integer pageSize) { - + this.pageSize = pageSize; return this; } @@ -114,7 +114,7 @@ public void setPageSize(@javax.annotation.Nullable Integer pageSize) { } public ListContentGenerationTasksRequest filterStatus(@javax.annotation.Nullable TaskStatus filterStatus) { - + this.filterStatus = filterStatus; return this; } @@ -139,7 +139,7 @@ public void setFilterStatus(@javax.annotation.Nullable TaskStatus filterStatus) } public ListContentGenerationTasksRequest filterTaskIds(@javax.annotation.Nullable List filterTaskIds) { - + this.filterTaskIds = filterTaskIds; return this; } @@ -172,7 +172,7 @@ public void setFilterTaskIds(@javax.annotation.Nullable List filterTaskI } public ListContentGenerationTasksRequest filterModel(@javax.annotation.Nullable String filterModel) { - + this.filterModel = filterModel; return this; } @@ -197,7 +197,7 @@ public void setFilterModel(@javax.annotation.Nullable String filterModel) { } public ListContentGenerationTasksRequest filterServiceTier(@javax.annotation.Nullable String filterServiceTier) { - + this.filterServiceTier = filterServiceTier; return this; } @@ -346,4 +346,3 @@ public ListContentGenerationTasksRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ListContentGenerationTasksResponse.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ListContentGenerationTasksResponse.java index 781cd8e..b03846d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ListContentGenerationTasksResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ListContentGenerationTasksResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public ListContentGenerationTasksResponse() { } public ListContentGenerationTasksResponse total(@javax.annotation.Nonnull Integer total) { - + this.total = total; return this; } @@ -69,7 +69,7 @@ public void setTotal(@javax.annotation.Nonnull Integer total) { } public ListContentGenerationTasksResponse items(@javax.annotation.Nonnull List items) { - + this.items = items; return this; } @@ -198,4 +198,3 @@ public ListContentGenerationTasksResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ReasoningEffort.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ReasoningEffort.java index c9b7a46..8895a78 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ReasoningEffort.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ReasoningEffort.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets ReasoningEffort */ public enum ReasoningEffort { - + LOW("low"), - + MEDIUM("medium"), - + HIGH("high"), - + MAX("max"); private String value; @@ -59,4 +59,3 @@ public static ReasoningEffort fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskContent.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskContent.java index 790e09d..9dbec6c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskContent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskContent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public TaskContent() { } public TaskContent videoUrl(@javax.annotation.Nullable String videoUrl) { - + this.videoUrl = videoUrl; return this; } @@ -72,7 +72,7 @@ public void setVideoUrl(@javax.annotation.Nullable String videoUrl) { } public TaskContent fileUrl(@javax.annotation.Nullable String fileUrl) { - + this.fileUrl = fileUrl; return this; } @@ -97,7 +97,7 @@ public void setFileUrl(@javax.annotation.Nullable String fileUrl) { } public TaskContent lastFrameUrl(@javax.annotation.Nullable String lastFrameUrl) { - + this.lastFrameUrl = lastFrameUrl; return this; } @@ -225,4 +225,3 @@ public TaskContent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskError.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskError.java index 1cbca99..23e9d34 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskError.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskError.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public TaskError() { } public TaskError code(@javax.annotation.Nonnull String code) { - + this.code = code; return this; } @@ -67,7 +67,7 @@ public void setCode(@javax.annotation.Nonnull String code) { } public TaskError message(@javax.annotation.Nonnull String message) { - + this.message = message; return this; } @@ -188,4 +188,3 @@ public TaskError.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskStatus.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskStatus.java index 67a7677..e7c50ff 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskStatus.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskStatus.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,15 +24,15 @@ * Lifecycle state of a content-generation task. */ public enum TaskStatus { - + QUEUED("queued"), - + RUNNING("running"), - + CANCELLED("cancelled"), - + SUCCEEDED("succeeded"), - + FAILED("failed"); private String value; @@ -61,4 +61,3 @@ public static TaskStatus fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskUsage.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskUsage.java index e6df2a3..66ebb3b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskUsage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/TaskUsage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public TaskUsage() { } public TaskUsage completionTokens(@javax.annotation.Nonnull Long completionTokens) { - + this.completionTokens = completionTokens; return this; } @@ -72,7 +72,7 @@ public void setCompletionTokens(@javax.annotation.Nonnull Long completionTokens) } public TaskUsage totalTokens(@javax.annotation.Nonnull Long totalTokens) { - + this.totalTokens = totalTokens; return this; } @@ -97,7 +97,7 @@ public void setTotalTokens(@javax.annotation.Nonnull Long totalTokens) { } public TaskUsage toolUsage(@javax.annotation.Nullable ToolUsage toolUsage) { - + this.toolUsage = toolUsage; return this; } @@ -225,4 +225,3 @@ public TaskUsage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/Tool.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/Tool.java index 12f1711..d25fe85 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/Tool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/Tool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public Tool() { } public Tool type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public Tool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ToolType.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ToolType.java index cf7bbed..1b04575 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ToolType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ToolType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,7 +24,7 @@ * Gets or Sets ToolType */ public enum ToolType { - + WEB_SEARCH("web_search"); private String value; @@ -53,4 +53,3 @@ public static ToolType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ToolUsage.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ToolUsage.java index d77c5ea..1b4190c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/ToolUsage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/ToolUsage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ToolUsage() { } public ToolUsage webSearch(@javax.annotation.Nullable Long webSearch) { - + this.webSearch = webSearch; return this; } @@ -151,4 +151,3 @@ public ToolUsage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/VideoRole.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/VideoRole.java index ec17576..67a38cc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/VideoRole.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/VideoRole.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,7 +24,7 @@ * Role hint for a video content entry. */ public enum VideoRole { - + REFERENCE_VIDEO("reference_video"); private String value; @@ -53,4 +53,3 @@ public static VideoRole fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/content_generation/VideoURL.java b/src/main/java/com/volcengine/ark/runtime/models/content_generation/VideoURL.java index 0c13995..847b593 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/content_generation/VideoURL.java +++ b/src/main/java/com/volcengine/ark/runtime/models/content_generation/VideoURL.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public VideoURL() { } public VideoURL url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -151,4 +151,3 @@ public VideoURL.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/embedding/Embedding.java b/src/main/java/com/volcengine/ark/runtime/models/embedding/Embedding.java index 50c5649..38d8ec1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/embedding/Embedding.java +++ b/src/main/java/com/volcengine/ark/runtime/models/embedding/Embedding.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingInput.java b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingInput.java index 884a162..01cc34d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingInput.java +++ b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingInput.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingItem.java b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingItem.java index aaf1d02..f36ec61 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -82,7 +82,7 @@ public EmbeddingItem() { } public EmbeddingItem embedding(@javax.annotation.Nonnull Embedding embedding) { - + this.embedding = embedding; return this; } @@ -107,7 +107,7 @@ public void setEmbedding(@javax.annotation.Nonnull Embedding embedding) { } public EmbeddingItem index(@javax.annotation.Nonnull Integer index) { - + this.index = index; return this; } @@ -132,7 +132,7 @@ public void setIndex(@javax.annotation.Nonnull Integer index) { } public EmbeddingItem _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -260,4 +260,3 @@ public EmbeddingItem.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingRequest.java b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingRequest.java index b689b08..3f3d8a9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public EmbeddingRequest() { } public EmbeddingRequest model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -82,7 +82,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public EmbeddingRequest input(@javax.annotation.Nonnull EmbeddingInput input) { - + this.input = input; return this; } @@ -107,7 +107,7 @@ public void setInput(@javax.annotation.Nonnull EmbeddingInput input) { } public EmbeddingRequest encodingFormat(@javax.annotation.Nullable EncodingFormat encodingFormat) { - + this.encodingFormat = encodingFormat; return this; } @@ -132,7 +132,7 @@ public void setEncodingFormat(@javax.annotation.Nullable EncodingFormat encoding } public EmbeddingRequest dimensions(@javax.annotation.Nullable Long dimensions) { - + this.dimensions = dimensions; return this; } @@ -157,7 +157,7 @@ public void setDimensions(@javax.annotation.Nullable Long dimensions) { } public EmbeddingRequest user(@javax.annotation.Nullable String user) { - + this.user = user; return this; } @@ -299,4 +299,3 @@ public EmbeddingRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingResponse.java b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingResponse.java index e5ff8fc..58755a7 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -99,7 +99,7 @@ public EmbeddingResponse() { } public EmbeddingResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -124,7 +124,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public EmbeddingResponse _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -149,7 +149,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public EmbeddingResponse created(@javax.annotation.Nonnull Long created) { - + this.created = created; return this; } @@ -174,7 +174,7 @@ public void setCreated(@javax.annotation.Nonnull Long created) { } public EmbeddingResponse model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -199,7 +199,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public EmbeddingResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -232,7 +232,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public EmbeddingResponse usage(@javax.annotation.Nonnull EmbeddingUsage usage) { - + this.usage = usage; return this; } @@ -381,4 +381,3 @@ public EmbeddingResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingUsage.java b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingUsage.java index 6e027cc..5213e52 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingUsage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/embedding/EmbeddingUsage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public EmbeddingUsage() { } public EmbeddingUsage promptTokens(@javax.annotation.Nonnull Long promptTokens) { - + this.promptTokens = promptTokens; return this; } @@ -67,7 +67,7 @@ public void setPromptTokens(@javax.annotation.Nonnull Long promptTokens) { } public EmbeddingUsage totalTokens(@javax.annotation.Nonnull Long totalTokens) { - + this.totalTokens = totalTokens; return this; } @@ -188,4 +188,3 @@ public EmbeddingUsage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/embedding/EncodingFormat.java b/src/main/java/com/volcengine/ark/runtime/models/embedding/EncodingFormat.java index 3dac0d5..3bc9a9b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/embedding/EncodingFormat.java +++ b/src/main/java/com/volcengine/ark/runtime/models/embedding/EncodingFormat.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets EncodingFormat */ public enum EncodingFormat { - + FLOAT("float"), - + BASE64("base64"); private String value; @@ -55,4 +55,3 @@ public static EncodingFormat fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/CreateEnvironmentRequest.java b/src/main/java/com/volcengine/ark/runtime/models/environment/CreateEnvironmentRequest.java index 8c27dc6..67aad0b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/CreateEnvironmentRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/CreateEnvironmentRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public CreateEnvironmentRequest() { } public CreateEnvironmentRequest name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -84,7 +84,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public CreateEnvironmentRequest config(@javax.annotation.Nullable EnvConfig config) { - + this.config = config; return this; } @@ -109,7 +109,7 @@ public void setConfig(@javax.annotation.Nullable EnvConfig config) { } public CreateEnvironmentRequest description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -134,7 +134,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public CreateEnvironmentRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -167,7 +167,7 @@ public void setMetadata(@javax.annotation.Nullable Map metadata) } public CreateEnvironmentRequest scope(@javax.annotation.Nullable EnvironmentScope scope) { - + this.scope = scope; return this; } @@ -309,4 +309,3 @@ public CreateEnvironmentRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/DeleteEnvironmentResponse.java b/src/main/java/com/volcengine/ark/runtime/models/environment/DeleteEnvironmentResponse.java index 9823aef..e3cc9a0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/DeleteEnvironmentResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/DeleteEnvironmentResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public DeleteEnvironmentResponse() { } public DeleteEnvironmentResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -67,7 +67,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public DeleteEnvironmentResponse type(@javax.annotation.Nonnull String type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public DeleteEnvironmentResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/EnvConfig.java b/src/main/java/com/volcengine/ark/runtime/models/environment/EnvConfig.java index 9f5b415..9e76892 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/EnvConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/EnvConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public EnvConfig() { } public EnvConfig type(@javax.annotation.Nonnull EnvConfigType type) { - + this.type = type; return this; } @@ -79,7 +79,7 @@ public void setType(@javax.annotation.Nonnull EnvConfigType type) { } public EnvConfig networking(@javax.annotation.Nullable NetworkingConfig networking) { - + this.networking = networking; return this; } @@ -104,7 +104,7 @@ public void setNetworking(@javax.annotation.Nullable NetworkingConfig networking } public EnvConfig packages(@javax.annotation.Nullable PackagesConfig packages) { - + this.packages = packages; return this; } @@ -129,7 +129,7 @@ public void setPackages(@javax.annotation.Nullable PackagesConfig packages) { } public EnvConfig env(@javax.annotation.Nullable Map env) { - + this.env = env; return this; } @@ -272,4 +272,3 @@ public EnvConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/EnvConfigType.java b/src/main/java/com/volcengine/ark/runtime/models/environment/EnvConfigType.java index f55e842..991bcfd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/EnvConfigType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/EnvConfigType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Environment 运行环境类型。 */ public enum EnvConfigType { - + CLOUD("cloud"), - + SELF_HOSTED("self_hosted"); private String value; @@ -55,4 +55,3 @@ public static EnvConfigType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/Environment.java b/src/main/java/com/volcengine/ark/runtime/models/environment/Environment.java index 476155e..378a46a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/Environment.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/Environment.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -114,7 +114,7 @@ public Environment() { } public Environment id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -139,7 +139,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public Environment type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -164,7 +164,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public Environment name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -189,7 +189,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public Environment description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -214,7 +214,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public Environment config(@javax.annotation.Nullable EnvConfig config) { - + this.config = config; return this; } @@ -239,7 +239,7 @@ public void setConfig(@javax.annotation.Nullable EnvConfig config) { } public Environment metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -272,7 +272,7 @@ public void setMetadata(@javax.annotation.Nullable Map metadata) } public Environment scope(@javax.annotation.Nullable EnvironmentScope scope) { - + this.scope = scope; return this; } @@ -297,7 +297,7 @@ public void setScope(@javax.annotation.Nullable EnvironmentScope scope) { } public Environment createdAt(@javax.annotation.Nonnull String createdAt) { - + this.createdAt = createdAt; return this; } @@ -322,7 +322,7 @@ public void setCreatedAt(@javax.annotation.Nonnull String createdAt) { } public Environment updatedAt(@javax.annotation.Nonnull String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -492,4 +492,3 @@ public Environment.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/EnvironmentScope.java b/src/main/java/com/volcengine/ark/runtime/models/environment/EnvironmentScope.java index 8ce5fbc..b6e9e60 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/EnvironmentScope.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/EnvironmentScope.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Environment 作用域。一期未启用;仅协议占位。 */ public enum EnvironmentScope { - + ORGANIZATION("organization"), - + ACCOUNT("account"); private String value; @@ -55,4 +55,3 @@ public static EnvironmentScope fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/ListEnvironmentsResponse.java b/src/main/java/com/volcengine/ark/runtime/models/environment/ListEnvironmentsResponse.java index e70d140..80c5fa3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/ListEnvironmentsResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/ListEnvironmentsResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public ListEnvironmentsResponse() { } public ListEnvironmentsResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -77,7 +77,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public ListEnvironmentsResponse nextPage(@javax.annotation.Nullable String nextPage) { - + this.nextPage = nextPage; return this; } @@ -198,4 +198,3 @@ public ListEnvironmentsResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/ListRequest.java b/src/main/java/com/volcengine/ark/runtime/models/environment/ListRequest.java index abbab14..553afbb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/ListRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/ListRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ListRequest() { } public ListRequest page(@javax.annotation.Nullable String page) { - + this.page = page; return this; } @@ -67,7 +67,7 @@ public void setPage(@javax.annotation.Nullable String page) { } public ListRequest limit(@javax.annotation.Nullable Integer limit) { - + this.limit = limit; return this; } @@ -188,4 +188,3 @@ public ListRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/NetworkingConfig.java b/src/main/java/com/volcengine/ark/runtime/models/environment/NetworkingConfig.java index 8d7baac..c5a4383 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/NetworkingConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/NetworkingConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public NetworkingConfig() { } public NetworkingConfig type(@javax.annotation.Nonnull NetworkingType type) { - + this.type = type; return this; } @@ -79,7 +79,7 @@ public void setType(@javax.annotation.Nonnull NetworkingType type) { } public NetworkingConfig allowMcpServers(@javax.annotation.Nullable Boolean allowMcpServers) { - + this.allowMcpServers = allowMcpServers; return this; } @@ -104,7 +104,7 @@ public void setAllowMcpServers(@javax.annotation.Nullable Boolean allowMcpServer } public NetworkingConfig allowPackageManagers(@javax.annotation.Nullable Boolean allowPackageManagers) { - + this.allowPackageManagers = allowPackageManagers; return this; } @@ -129,7 +129,7 @@ public void setAllowPackageManagers(@javax.annotation.Nullable Boolean allowPack } public NetworkingConfig allowedHosts(@javax.annotation.Nullable List allowedHosts) { - + this.allowedHosts = allowedHosts; return this; } @@ -272,4 +272,3 @@ public NetworkingConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/NetworkingType.java b/src/main/java/com/volcengine/ark/runtime/models/environment/NetworkingType.java index 8b940b1..27452e6 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/NetworkingType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/NetworkingType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * 容器出网策略。 */ public enum NetworkingType { - + UNRESTRICTED("unrestricted"), - + LIMITED("limited"); private String value; @@ -55,4 +55,3 @@ public static NetworkingType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/PackagesConfig.java b/src/main/java/com/volcengine/ark/runtime/models/environment/PackagesConfig.java index 023ce99..8d1462c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/PackagesConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/PackagesConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -104,7 +104,7 @@ public PackagesConfig() { } public PackagesConfig type(@javax.annotation.Nullable TypeEnum type) { - + this.type = type; return this; } @@ -129,7 +129,7 @@ public void setType(@javax.annotation.Nullable TypeEnum type) { } public PackagesConfig pip(@javax.annotation.Nullable List pip) { - + this.pip = pip; return this; } @@ -162,7 +162,7 @@ public void setPip(@javax.annotation.Nullable List pip) { } public PackagesConfig apt(@javax.annotation.Nullable List apt) { - + this.apt = apt; return this; } @@ -195,7 +195,7 @@ public void setApt(@javax.annotation.Nullable List apt) { } public PackagesConfig npm(@javax.annotation.Nullable List npm) { - + this.npm = npm; return this; } @@ -228,7 +228,7 @@ public void setNpm(@javax.annotation.Nullable List npm) { } public PackagesConfig cargo(@javax.annotation.Nullable List cargo) { - + this.cargo = cargo; return this; } @@ -261,7 +261,7 @@ public void setCargo(@javax.annotation.Nullable List cargo) { } public PackagesConfig gem(@javax.annotation.Nullable List gem) { - + this.gem = gem; return this; } @@ -294,7 +294,7 @@ public void setGem(@javax.annotation.Nullable List gem) { } public PackagesConfig go(@javax.annotation.Nullable List go) { - + this.go = go; return this; } @@ -458,4 +458,3 @@ public PackagesConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/environment/UpdateEnvironmentRequest.java b/src/main/java/com/volcengine/ark/runtime/models/environment/UpdateEnvironmentRequest.java index 199176a..dbe3e16 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/environment/UpdateEnvironmentRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/environment/UpdateEnvironmentRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public UpdateEnvironmentRequest() { } public UpdateEnvironmentRequest name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -84,7 +84,7 @@ public void setName(@javax.annotation.Nullable String name) { } public UpdateEnvironmentRequest config(@javax.annotation.Nullable EnvConfig config) { - + this.config = config; return this; } @@ -109,7 +109,7 @@ public void setConfig(@javax.annotation.Nullable EnvConfig config) { } public UpdateEnvironmentRequest description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -134,7 +134,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public UpdateEnvironmentRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -167,7 +167,7 @@ public void setMetadata(@javax.annotation.Nullable Map metadata) } public UpdateEnvironmentRequest scope(@javax.annotation.Nullable EnvironmentScope scope) { - + this.scope = scope; return this; } @@ -309,4 +309,3 @@ public UpdateEnvironmentRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/FileCreateRequest.java b/src/main/java/com/volcengine/ark/runtime/models/file/FileCreateRequest.java index d592ca9..abdd102 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/FileCreateRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/FileCreateRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public FileCreateRequest() { } public FileCreateRequest purpose(@javax.annotation.Nonnull Purpose purpose) { - + this.purpose = purpose; return this; } @@ -82,7 +82,7 @@ public void setPurpose(@javax.annotation.Nonnull Purpose purpose) { } public FileCreateRequest preprocessConfigs(@javax.annotation.Nullable PreprocessConfigs preprocessConfigs) { - + this.preprocessConfigs = preprocessConfigs; return this; } @@ -107,7 +107,7 @@ public void setPreprocessConfigs(@javax.annotation.Nullable PreprocessConfigs pr } public FileCreateRequest expireAt(@javax.annotation.Nullable Long expireAt) { - + this.expireAt = expireAt; return this; } @@ -132,7 +132,7 @@ public void setExpireAt(@javax.annotation.Nullable Long expireAt) { } public FileCreateRequest url(@javax.annotation.Nullable String url) { - + this.url = url; return this; } @@ -157,7 +157,7 @@ public void setUrl(@javax.annotation.Nullable String url) { } public FileCreateRequest tos(@javax.annotation.Nullable TosStorage tos) { - + this.tos = tos; return this; } @@ -299,4 +299,3 @@ public FileCreateRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/FileDeleted.java b/src/main/java/com/volcengine/ark/runtime/models/file/FileDeleted.java index 0bea79e..3a5c1ae 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/FileDeleted.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/FileDeleted.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -82,7 +82,7 @@ public FileDeleted() { } public FileDeleted _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -107,7 +107,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public FileDeleted id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -132,7 +132,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public FileDeleted deleted(@javax.annotation.Nonnull Boolean deleted) { - + this.deleted = deleted; return this; } @@ -260,4 +260,3 @@ public FileDeleted.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/FileError.java b/src/main/java/com/volcengine/ark/runtime/models/file/FileError.java index d0b8212..55da22f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/FileError.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/FileError.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public FileError() { } public FileError code(@javax.annotation.Nonnull String code) { - + this.code = code; return this; } @@ -77,7 +77,7 @@ public void setCode(@javax.annotation.Nonnull String code) { } public FileError message(@javax.annotation.Nonnull String message) { - + this.message = message; return this; } @@ -102,7 +102,7 @@ public void setMessage(@javax.annotation.Nonnull String message) { } public FileError param(@javax.annotation.Nonnull String param) { - + this.param = param; return this; } @@ -127,7 +127,7 @@ public void setParam(@javax.annotation.Nonnull String param) { } public FileError type(@javax.annotation.Nonnull String type) { - + this.type = type; return this; } @@ -262,4 +262,3 @@ public FileError.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/FileListRequest.java b/src/main/java/com/volcengine/ark/runtime/models/file/FileListRequest.java index 7b810cb..f07a4cc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/FileListRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/FileListRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public FileListRequest() { } public FileListRequest purpose(@javax.annotation.Nullable Purpose purpose) { - + this.purpose = purpose; return this; } @@ -77,7 +77,7 @@ public void setPurpose(@javax.annotation.Nullable Purpose purpose) { } public FileListRequest after(@javax.annotation.Nullable String after) { - + this.after = after; return this; } @@ -102,7 +102,7 @@ public void setAfter(@javax.annotation.Nullable String after) { } public FileListRequest limit(@javax.annotation.Nullable Long limit) { - + this.limit = limit; return this; } @@ -127,7 +127,7 @@ public void setLimit(@javax.annotation.Nullable Long limit) { } public FileListRequest order(@javax.annotation.Nullable Order order) { - + this.order = order; return this; } @@ -262,4 +262,3 @@ public FileListRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/FileListResponse.java b/src/main/java/com/volcengine/ark/runtime/models/file/FileListResponse.java index 30575f7..709659c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/FileListResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/FileListResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -94,7 +94,7 @@ public FileListResponse() { } public FileListResponse _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -119,7 +119,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public FileListResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -152,7 +152,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public FileListResponse firstId(@javax.annotation.Nonnull String firstId) { - + this.firstId = firstId; return this; } @@ -177,7 +177,7 @@ public void setFirstId(@javax.annotation.Nonnull String firstId) { } public FileListResponse lastId(@javax.annotation.Nonnull String lastId) { - + this.lastId = lastId; return this; } @@ -202,7 +202,7 @@ public void setLastId(@javax.annotation.Nonnull String lastId) { } public FileListResponse hasMore(@javax.annotation.Nonnull Boolean hasMore) { - + this.hasMore = hasMore; return this; } @@ -344,4 +344,3 @@ public FileListResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/FileObject.java b/src/main/java/com/volcengine/ark/runtime/models/file/FileObject.java index 6cca940..95ef6fe 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/FileObject.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/FileObject.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -127,7 +127,7 @@ public FileObject() { } public FileObject _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -152,7 +152,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public FileObject id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -177,7 +177,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public FileObject purpose(@javax.annotation.Nonnull Purpose purpose) { - + this.purpose = purpose; return this; } @@ -202,7 +202,7 @@ public void setPurpose(@javax.annotation.Nonnull Purpose purpose) { } public FileObject filename(@javax.annotation.Nonnull String filename) { - + this.filename = filename; return this; } @@ -227,7 +227,7 @@ public void setFilename(@javax.annotation.Nonnull String filename) { } public FileObject bytes(@javax.annotation.Nullable Long bytes) { - + this.bytes = bytes; return this; } @@ -252,7 +252,7 @@ public void setBytes(@javax.annotation.Nullable Long bytes) { } public FileObject mimeType(@javax.annotation.Nullable String mimeType) { - + this.mimeType = mimeType; return this; } @@ -277,7 +277,7 @@ public void setMimeType(@javax.annotation.Nullable String mimeType) { } public FileObject createdAt(@javax.annotation.Nonnull Long createdAt) { - + this.createdAt = createdAt; return this; } @@ -302,7 +302,7 @@ public void setCreatedAt(@javax.annotation.Nonnull Long createdAt) { } public FileObject expireAt(@javax.annotation.Nonnull Long expireAt) { - + this.expireAt = expireAt; return this; } @@ -327,7 +327,7 @@ public void setExpireAt(@javax.annotation.Nonnull Long expireAt) { } public FileObject status(@javax.annotation.Nonnull Status status) { - + this.status = status; return this; } @@ -352,7 +352,7 @@ public void setStatus(@javax.annotation.Nonnull Status status) { } public FileObject downloadUrl(@javax.annotation.Nullable String downloadUrl) { - + this.downloadUrl = downloadUrl; return this; } @@ -377,7 +377,7 @@ public void setDownloadUrl(@javax.annotation.Nullable String downloadUrl) { } public FileObject error(@javax.annotation.Nullable FileError error) { - + this.error = error; return this; } @@ -402,7 +402,7 @@ public void setError(@javax.annotation.Nullable FileError error) { } public FileObject preprocessConfigs(@javax.annotation.Nullable PreprocessConfigs preprocessConfigs) { - + this.preprocessConfigs = preprocessConfigs; return this; } @@ -593,4 +593,3 @@ public FileObject.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/Order.java b/src/main/java/com/volcengine/ark/runtime/models/file/Order.java index ea77e08..7fb80d4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/Order.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/Order.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Sort order for list endpoints. */ public enum Order { - + ASC("asc"), - + DESC("desc"); private String value; @@ -55,4 +55,3 @@ public static Order fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/PreprocessConfigs.java b/src/main/java/com/volcengine/ark/runtime/models/file/PreprocessConfigs.java index 5f04bb5..2d40d2e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/PreprocessConfigs.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/PreprocessConfigs.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public PreprocessConfigs() { } public PreprocessConfigs video(@javax.annotation.Nullable Video video) { - + this.video = video; return this; } @@ -151,4 +151,3 @@ public PreprocessConfigs.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/Purpose.java b/src/main/java/com/volcengine/ark/runtime/models/file/Purpose.java index 5072174..b01b46d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/Purpose.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/Purpose.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * The intended purpose of an uploaded file. */ public enum Purpose { - + USER_DATA("user_data"), - + AGENT("agent"); private String value; @@ -55,4 +55,3 @@ public static Purpose fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/Status.java b/src/main/java/com/volcengine/ark/runtime/models/file/Status.java index 4026399..bb30d05 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/Status.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/Status.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Lifecycle status of a file in the storage backend. */ public enum Status { - + ACTIVE("active"), - + PROCESSING("processing"), - + FAILED("failed"); private String value; @@ -57,4 +57,3 @@ public static Status fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/TosStorage.java b/src/main/java/com/volcengine/ark/runtime/models/file/TosStorage.java index 3778af0..1ed9ab2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/TosStorage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/TosStorage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public TosStorage() { } public TosStorage bucket(@javax.annotation.Nullable String bucket) { - + this.bucket = bucket; return this; } @@ -67,7 +67,7 @@ public void setBucket(@javax.annotation.Nullable String bucket) { } public TosStorage prefix(@javax.annotation.Nullable String prefix) { - + this.prefix = prefix; return this; } @@ -188,4 +188,3 @@ public TosStorage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/file/Video.java b/src/main/java/com/volcengine/ark/runtime/models/file/Video.java index 8e27bd2..ae19fee 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/file/Video.java +++ b/src/main/java/com/volcengine/ark/runtime/models/file/Video.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public Video() { } public Video fps(@javax.annotation.Nullable Double fps) { - + this.fps = fps; return this; } @@ -67,7 +67,7 @@ public void setFps(@javax.annotation.Nullable Double fps) { } public Video model(@javax.annotation.Nullable String model) { - + this.model = model; return this; } @@ -188,4 +188,3 @@ public Video.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/BoundingBox.java b/src/main/java/com/volcengine/ark/runtime/models/images/BoundingBox.java index 84c5199..e9076a2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/BoundingBox.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/BoundingBox.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public BoundingBox() { } public BoundingBox absolute(@javax.annotation.Nullable List absolute) { - + this.absolute = absolute; return this; } @@ -77,7 +77,7 @@ public void setAbsolute(@javax.annotation.Nullable List absolute) { } public BoundingBox normalized(@javax.annotation.Nullable List normalized) { - + this.normalized = normalized; return this; } @@ -206,4 +206,3 @@ public BoundingBox.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/CreateImageGenerationRequest.java b/src/main/java/com/volcengine/ark/runtime/models/images/CreateImageGenerationRequest.java index 11432e1..ea22756 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/CreateImageGenerationRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/CreateImageGenerationRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -114,7 +114,7 @@ public CreateImageGenerationRequest() { } public CreateImageGenerationRequest model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -139,7 +139,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public CreateImageGenerationRequest prompt(@javax.annotation.Nonnull String prompt) { - + this.prompt = prompt; return this; } @@ -164,7 +164,7 @@ public void setPrompt(@javax.annotation.Nonnull String prompt) { } public CreateImageGenerationRequest image(@javax.annotation.Nullable List image) { - + this.image = image; return this; } @@ -197,7 +197,7 @@ public void setImage(@javax.annotation.Nullable List image) { } public CreateImageGenerationRequest stream(@javax.annotation.Nullable Boolean stream) { - + this.stream = stream; return this; } @@ -222,7 +222,7 @@ public void setStream(@javax.annotation.Nullable Boolean stream) { } public CreateImageGenerationRequest responseFormat(@javax.annotation.Nullable ResponseFormat responseFormat) { - + this.responseFormat = responseFormat; return this; } @@ -247,7 +247,7 @@ public void setResponseFormat(@javax.annotation.Nullable ResponseFormat response } public CreateImageGenerationRequest seed(@javax.annotation.Nullable Long seed) { - + this.seed = seed; return this; } @@ -272,7 +272,7 @@ public void setSeed(@javax.annotation.Nullable Long seed) { } public CreateImageGenerationRequest guidanceScale(@javax.annotation.Nullable Double guidanceScale) { - + this.guidanceScale = guidanceScale; return this; } @@ -297,7 +297,7 @@ public void setGuidanceScale(@javax.annotation.Nullable Double guidanceScale) { } public CreateImageGenerationRequest imageGuidanceScale(@javax.annotation.Nullable Double imageGuidanceScale) { - + this.imageGuidanceScale = imageGuidanceScale; return this; } @@ -322,7 +322,7 @@ public void setImageGuidanceScale(@javax.annotation.Nullable Double imageGuidanc } public CreateImageGenerationRequest size(@javax.annotation.Nullable String size) { - + this.size = size; return this; } @@ -347,7 +347,7 @@ public void setSize(@javax.annotation.Nullable String size) { } public CreateImageGenerationRequest watermark(@javax.annotation.Nullable Boolean watermark) { - + this.watermark = watermark; return this; } @@ -372,7 +372,7 @@ public void setWatermark(@javax.annotation.Nullable Boolean watermark) { } public CreateImageGenerationRequest sequentialImageGeneration(@javax.annotation.Nullable SequentialImageGenerationMode sequentialImageGeneration) { - + this.sequentialImageGeneration = sequentialImageGeneration; return this; } @@ -397,7 +397,7 @@ public void setSequentialImageGeneration(@javax.annotation.Nullable SequentialIm } public CreateImageGenerationRequest sequentialImageGenerationOptions(@javax.annotation.Nullable SequentialImageGenerationOptions sequentialImageGenerationOptions) { - + this.sequentialImageGenerationOptions = sequentialImageGenerationOptions; return this; } @@ -422,7 +422,7 @@ public void setSequentialImageGenerationOptions(@javax.annotation.Nullable Seque } public CreateImageGenerationRequest optimizePromptOptions(@javax.annotation.Nullable OptimizePromptOptions optimizePromptOptions) { - + this.optimizePromptOptions = optimizePromptOptions; return this; } @@ -447,7 +447,7 @@ public void setOptimizePromptOptions(@javax.annotation.Nullable OptimizePromptOp } public CreateImageGenerationRequest tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -480,7 +480,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public CreateImageGenerationRequest outputFormat(@javax.annotation.Nullable OutputFormat outputFormat) { - + this.outputFormat = outputFormat; return this; } @@ -505,7 +505,7 @@ public void setOutputFormat(@javax.annotation.Nullable OutputFormat outputFormat } public CreateImageGenerationRequest layerDecomposition(@javax.annotation.Nullable Boolean layerDecomposition) { - + this.layerDecomposition = layerDecomposition; return this; } @@ -724,4 +724,3 @@ public CreateImageGenerationRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/ImageDataItem.java b/src/main/java/com/volcengine/ark/runtime/models/images/ImageDataItem.java index 884be44..54c75dc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/ImageDataItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/ImageDataItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public ImageDataItem() { } public ImageDataItem url(@javax.annotation.Nullable String url) { - + this.url = url; return this; } @@ -102,7 +102,7 @@ public void setUrl(@javax.annotation.Nullable String url) { } public ImageDataItem b64Json(@javax.annotation.Nullable String b64Json) { - + this.b64Json = b64Json; return this; } @@ -127,7 +127,7 @@ public void setB64Json(@javax.annotation.Nullable String b64Json) { } public ImageDataItem size(@javax.annotation.Nullable String size) { - + this.size = size; return this; } @@ -152,7 +152,7 @@ public void setSize(@javax.annotation.Nullable String size) { } public ImageDataItem error(@javax.annotation.Nullable ImageError error) { - + this.error = error; return this; } @@ -177,7 +177,7 @@ public void setError(@javax.annotation.Nullable ImageError error) { } public ImageDataItem outputFormat(@javax.annotation.Nullable OutputFormat outputFormat) { - + this.outputFormat = outputFormat; return this; } @@ -202,7 +202,7 @@ public void setOutputFormat(@javax.annotation.Nullable OutputFormat outputFormat } public ImageDataItem zIndex(@javax.annotation.Nullable Integer zIndex) { - + this.zIndex = zIndex; return this; } @@ -227,7 +227,7 @@ public void setzIndex(@javax.annotation.Nullable Integer zIndex) { } public ImageDataItem boundingBox(@javax.annotation.Nullable BoundingBox boundingBox) { - + this.boundingBox = boundingBox; return this; } @@ -252,7 +252,7 @@ public void setBoundingBox(@javax.annotation.Nullable BoundingBox boundingBox) { } public ImageDataItem name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -277,7 +277,7 @@ public void setName(@javax.annotation.Nullable String name) { } public ImageDataItem description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -447,4 +447,3 @@ public ImageDataItem.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/ImageError.java b/src/main/java/com/volcengine/ark/runtime/models/images/ImageError.java index 7d341db..0e93979 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/ImageError.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/ImageError.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ImageError() { } public ImageError code(@javax.annotation.Nonnull String code) { - + this.code = code; return this; } @@ -67,7 +67,7 @@ public void setCode(@javax.annotation.Nonnull String code) { } public ImageError message(@javax.annotation.Nonnull String message) { - + this.message = message; return this; } @@ -188,4 +188,3 @@ public ImageError.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationResponse.java b/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationResponse.java index 58fd336..98ed153 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -64,7 +64,7 @@ public ImageGenerationResponse() { } public ImageGenerationResponse model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -89,7 +89,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public ImageGenerationResponse created(@javax.annotation.Nonnull Long created) { - + this.created = created; return this; } @@ -114,7 +114,7 @@ public void setCreated(@javax.annotation.Nonnull Long created) { } public ImageGenerationResponse data(@javax.annotation.Nullable List data) { - + this.data = data; return this; } @@ -147,7 +147,7 @@ public void setData(@javax.annotation.Nullable List data) { } public ImageGenerationResponse tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -180,7 +180,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public ImageGenerationResponse usage(@javax.annotation.Nullable Usage usage) { - + this.usage = usage; return this; } @@ -205,7 +205,7 @@ public void setUsage(@javax.annotation.Nullable Usage usage) { } public ImageGenerationResponse error(@javax.annotation.Nullable ImageError error) { - + this.error = error; return this; } @@ -354,4 +354,3 @@ public ImageGenerationResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationStreamEvent.java b/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationStreamEvent.java index bce21c1..4cf6ec4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationStreamEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationStreamEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -84,7 +84,7 @@ public ImageGenerationStreamEvent() { } public ImageGenerationStreamEvent type(@javax.annotation.Nonnull ImageGenerationStreamEventType type) { - + this.type = type; return this; } @@ -109,7 +109,7 @@ public void setType(@javax.annotation.Nonnull ImageGenerationStreamEventType typ } public ImageGenerationStreamEvent model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -134,7 +134,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public ImageGenerationStreamEvent created(@javax.annotation.Nonnull Long created) { - + this.created = created; return this; } @@ -159,7 +159,7 @@ public void setCreated(@javax.annotation.Nonnull Long created) { } public ImageGenerationStreamEvent imageIndex(@javax.annotation.Nullable Integer imageIndex) { - + this.imageIndex = imageIndex; return this; } @@ -184,7 +184,7 @@ public void setImageIndex(@javax.annotation.Nullable Integer imageIndex) { } public ImageGenerationStreamEvent url(@javax.annotation.Nullable String url) { - + this.url = url; return this; } @@ -209,7 +209,7 @@ public void setUrl(@javax.annotation.Nullable String url) { } public ImageGenerationStreamEvent b64Json(@javax.annotation.Nullable String b64Json) { - + this.b64Json = b64Json; return this; } @@ -234,7 +234,7 @@ public void setB64Json(@javax.annotation.Nullable String b64Json) { } public ImageGenerationStreamEvent size(@javax.annotation.Nullable String size) { - + this.size = size; return this; } @@ -259,7 +259,7 @@ public void setSize(@javax.annotation.Nullable String size) { } public ImageGenerationStreamEvent tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -292,7 +292,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public ImageGenerationStreamEvent usage(@javax.annotation.Nullable Usage usage) { - + this.usage = usage; return this; } @@ -317,7 +317,7 @@ public void setUsage(@javax.annotation.Nullable Usage usage) { } public ImageGenerationStreamEvent error(@javax.annotation.Nullable ImageError error) { - + this.error = error; return this; } @@ -494,4 +494,3 @@ public ImageGenerationStreamEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationStreamEventType.java b/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationStreamEventType.java index d326823..d02a516 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationStreamEventType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/ImageGenerationStreamEventType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Discriminator on `ImageGenerationStreamEvent.type`. */ public enum ImageGenerationStreamEventType { - + IMAGE_GENERATION_PARTIAL_SUCCEEDED("image_generation.partial_succeeded"), - + IMAGE_GENERATION_PARTIAL_FAILED("image_generation.partial_failed"), - + IMAGE_GENERATION_COMPLETED("image_generation.completed"); private String value; @@ -57,4 +57,3 @@ public static ImageGenerationStreamEventType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/OptimizePromptMode.java b/src/main/java/com/volcengine/ark/runtime/models/images/OptimizePromptMode.java index 2eb5cad..1e42be0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/OptimizePromptMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/OptimizePromptMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Prompt-optimizer mode trade-off (quality vs latency). */ public enum OptimizePromptMode { - + STANDARD("standard"), - + FAST("fast"); private String value; @@ -55,4 +55,3 @@ public static OptimizePromptMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/OptimizePromptOptions.java b/src/main/java/com/volcengine/ark/runtime/models/images/OptimizePromptOptions.java index 40cf2b4..3a14e81 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/OptimizePromptOptions.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/OptimizePromptOptions.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public OptimizePromptOptions() { } public OptimizePromptOptions mode(@javax.annotation.Nullable OptimizePromptMode mode) { - + this.mode = mode; return this; } @@ -151,4 +151,3 @@ public OptimizePromptOptions.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/OutputFormat.java b/src/main/java/com/volcengine/ark/runtime/models/images/OutputFormat.java index 3128e66..2a3e345 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/OutputFormat.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/OutputFormat.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Container/codec for the generated image bytes. */ public enum OutputFormat { - + JPEG("jpeg"), - + PNG("png"); private String value; @@ -55,4 +55,3 @@ public static OutputFormat fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/ResponseFormat.java b/src/main/java/com/volcengine/ark/runtime/models/images/ResponseFormat.java index b71b25a..813bc8b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/ResponseFormat.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/ResponseFormat.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * How generated image bytes are returned. */ public enum ResponseFormat { - + URL("url"), - + B64_JSON("b64_json"); private String value; @@ -55,4 +55,3 @@ public static ResponseFormat fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/SequentialImageGenerationMode.java b/src/main/java/com/volcengine/ark/runtime/models/images/SequentialImageGenerationMode.java index d6a6506..a0950b2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/SequentialImageGenerationMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/SequentialImageGenerationMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Whether the model may emit multiple images for one prompt. */ public enum SequentialImageGenerationMode { - + AUTO("auto"), - + DISABLED("disabled"); private String value; @@ -55,4 +55,3 @@ public static SequentialImageGenerationMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/SequentialImageGenerationOptions.java b/src/main/java/com/volcengine/ark/runtime/models/images/SequentialImageGenerationOptions.java index 95935bd..d150d90 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/SequentialImageGenerationOptions.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/SequentialImageGenerationOptions.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public SequentialImageGenerationOptions() { } public SequentialImageGenerationOptions maxImages(@javax.annotation.Nullable Integer maxImages) { - + this.maxImages = maxImages; return this; } @@ -151,4 +151,3 @@ public SequentialImageGenerationOptions.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/Tool.java b/src/main/java/com/volcengine/ark/runtime/models/images/Tool.java index ebaf223..ea02f46 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/Tool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/Tool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public Tool() { } public Tool type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public Tool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/ToolType.java b/src/main/java/com/volcengine/ark/runtime/models/images/ToolType.java index 44570ee..bfb8fce 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/ToolType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/ToolType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,7 +24,7 @@ * Gets or Sets ToolType */ public enum ToolType { - + WEB_SEARCH("web_search"); private String value; @@ -53,4 +53,3 @@ public static ToolType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/ToolUsage.java b/src/main/java/com/volcengine/ark/runtime/models/images/ToolUsage.java index bc82ed9..9e4bb4d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/ToolUsage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/ToolUsage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ToolUsage() { } public ToolUsage webSearch(@javax.annotation.Nullable Long webSearch) { - + this.webSearch = webSearch; return this; } @@ -151,4 +151,3 @@ public ToolUsage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/images/Usage.java b/src/main/java/com/volcengine/ark/runtime/models/images/Usage.java index a2d2211..98d7946 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/images/Usage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/images/Usage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public Usage() { } public Usage inputImages(@javax.annotation.Nonnull Long inputImages) { - + this.inputImages = inputImages; return this; } @@ -82,7 +82,7 @@ public void setInputImages(@javax.annotation.Nonnull Long inputImages) { } public Usage generatedImages(@javax.annotation.Nonnull Long generatedImages) { - + this.generatedImages = generatedImages; return this; } @@ -107,7 +107,7 @@ public void setGeneratedImages(@javax.annotation.Nonnull Long generatedImages) { } public Usage outputTokens(@javax.annotation.Nullable Long outputTokens) { - + this.outputTokens = outputTokens; return this; } @@ -132,7 +132,7 @@ public void setOutputTokens(@javax.annotation.Nullable Long outputTokens) { } public Usage totalTokens(@javax.annotation.Nullable Long totalTokens) { - + this.totalTokens = totalTokens; return this; } @@ -157,7 +157,7 @@ public void setTotalTokens(@javax.annotation.Nullable Long totalTokens) { } public Usage toolUsage(@javax.annotation.Nullable ToolUsage toolUsage) { - + this.toolUsage = toolUsage; return this; } @@ -299,4 +299,3 @@ public Usage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/Actor.java b/src/main/java/com/volcengine/ark/runtime/models/memory/Actor.java index cab81ee..2048374 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/Actor.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/Actor.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public Actor() { } public Actor type(@javax.annotation.Nonnull ActorType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull ActorType type) { } public Actor userId(@javax.annotation.Nonnull String userId) { - + this.userId = userId; return this; } @@ -188,4 +188,3 @@ public Actor.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/ActorType.java b/src/main/java/com/volcengine/ark/runtime/models/memory/ActorType.java index d21820d..9374d00 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/ActorType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/ActorType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,7 +24,7 @@ * Actor 类型。本期恒为 `user_actor`。 */ public enum ActorType { - + USER_ACTOR("user_actor"); private String value; @@ -53,4 +53,3 @@ public static ActorType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/CreateMemoryRequest.java b/src/main/java/com/volcengine/ark/runtime/models/memory/CreateMemoryRequest.java index 3ca8480..741a006 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/CreateMemoryRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/CreateMemoryRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public CreateMemoryRequest() { } public CreateMemoryRequest path(@javax.annotation.Nonnull String path) { - + this.path = path; return this; } @@ -67,7 +67,7 @@ public void setPath(@javax.annotation.Nonnull String path) { } public CreateMemoryRequest content(@javax.annotation.Nonnull String content) { - + this.content = content; return this; } @@ -188,4 +188,3 @@ public CreateMemoryRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/CreateMemoryStoreRequest.java b/src/main/java/com/volcengine/ark/runtime/models/memory/CreateMemoryStoreRequest.java index 58c9939..48fa530 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/CreateMemoryStoreRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/CreateMemoryStoreRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public CreateMemoryStoreRequest() { } public CreateMemoryStoreRequest name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -74,7 +74,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public CreateMemoryStoreRequest description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -99,7 +99,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public CreateMemoryStoreRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -235,4 +235,3 @@ public CreateMemoryStoreRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/DeleteMemoryResponse.java b/src/main/java/com/volcengine/ark/runtime/models/memory/DeleteMemoryResponse.java index 3586903..664d528 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/DeleteMemoryResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/DeleteMemoryResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public DeleteMemoryResponse() { } public DeleteMemoryResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -102,7 +102,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public DeleteMemoryResponse type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -223,4 +223,3 @@ public DeleteMemoryResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/DeleteMemoryStoreResponse.java b/src/main/java/com/volcengine/ark/runtime/models/memory/DeleteMemoryStoreResponse.java index 2f82cf0..1e0bfb4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/DeleteMemoryStoreResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/DeleteMemoryStoreResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public DeleteMemoryStoreResponse() { } public DeleteMemoryStoreResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -102,7 +102,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public DeleteMemoryStoreResponse type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -223,4 +223,3 @@ public DeleteMemoryStoreResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoriesOrderBy.java b/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoriesOrderBy.java index b5fa04d..82ce191 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoriesOrderBy.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoriesOrderBy.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * List Memories 排序字段。 */ public enum ListMemoriesOrderBy { - + PATH("path"), - + UPDATED_AT("updated_at"); private String value; @@ -55,4 +55,3 @@ public static ListMemoriesOrderBy fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoriesResponse.java b/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoriesResponse.java index a7bf636..f483f06 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoriesResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoriesResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public ListMemoriesResponse() { } public ListMemoriesResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -82,7 +82,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public ListMemoriesResponse nextPage(@javax.annotation.Nullable String nextPage) { - + this.nextPage = nextPage; return this; } @@ -107,7 +107,7 @@ public void setNextPage(@javax.annotation.Nullable String nextPage) { } public ListMemoriesResponse prefixes(@javax.annotation.Nonnull List prefixes) { - + this.prefixes = prefixes; return this; } @@ -243,4 +243,3 @@ public ListMemoriesResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoryStoresResponse.java b/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoryStoresResponse.java index e56b92b..5649a63 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoryStoresResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/ListMemoryStoresResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public ListMemoryStoresResponse() { } public ListMemoryStoresResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -77,7 +77,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public ListMemoryStoresResponse nextPage(@javax.annotation.Nullable String nextPage) { - + this.nextPage = nextPage; return this; } @@ -198,4 +198,3 @@ public ListMemoryStoresResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/ListRequest.java b/src/main/java/com/volcengine/ark/runtime/models/memory/ListRequest.java index 71634be..7421f1e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/ListRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/ListRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public ListRequest() { } public ListRequest limit(@javax.annotation.Nullable Integer limit) { - + this.limit = limit; return this; } @@ -79,7 +79,7 @@ public void setLimit(@javax.annotation.Nullable Integer limit) { } public ListRequest page(@javax.annotation.Nullable String page) { - + this.page = page; return this; } @@ -104,7 +104,7 @@ public void setPage(@javax.annotation.Nullable String page) { } public ListRequest createdBy(@javax.annotation.Nullable List createdBy) { - + this.createdBy = createdBy; return this; } @@ -137,7 +137,7 @@ public void setCreatedBy(@javax.annotation.Nullable List createdBy) { } public ListRequest name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -272,4 +272,3 @@ public ListRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/Memory.java b/src/main/java/com/volcengine/ark/runtime/models/memory/Memory.java index cfa6b4b..5c05959 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/Memory.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/Memory.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -122,7 +122,7 @@ public Memory() { } public Memory id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -147,7 +147,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public Memory type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -172,7 +172,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public Memory memoryStoreId(@javax.annotation.Nonnull String memoryStoreId) { - + this.memoryStoreId = memoryStoreId; return this; } @@ -197,7 +197,7 @@ public void setMemoryStoreId(@javax.annotation.Nonnull String memoryStoreId) { } public Memory path(@javax.annotation.Nonnull String path) { - + this.path = path; return this; } @@ -222,7 +222,7 @@ public void setPath(@javax.annotation.Nonnull String path) { } public Memory content(@javax.annotation.Nullable String content) { - + this.content = content; return this; } @@ -247,7 +247,7 @@ public void setContent(@javax.annotation.Nullable String content) { } public Memory contentSha256(@javax.annotation.Nonnull String contentSha256) { - + this.contentSha256 = contentSha256; return this; } @@ -272,7 +272,7 @@ public void setContentSha256(@javax.annotation.Nonnull String contentSha256) { } public Memory contentSizeBytes(@javax.annotation.Nonnull Long contentSizeBytes) { - + this.contentSizeBytes = contentSizeBytes; return this; } @@ -297,7 +297,7 @@ public void setContentSizeBytes(@javax.annotation.Nonnull Long contentSizeBytes) } public Memory memoryVersionId(@javax.annotation.Nonnull String memoryVersionId) { - + this.memoryVersionId = memoryVersionId; return this; } @@ -322,7 +322,7 @@ public void setMemoryVersionId(@javax.annotation.Nonnull String memoryVersionId) } public Memory createdBy(@javax.annotation.Nonnull Actor createdBy) { - + this.createdBy = createdBy; return this; } @@ -347,7 +347,7 @@ public void setCreatedBy(@javax.annotation.Nonnull Actor createdBy) { } public Memory createdAt(@javax.annotation.Nonnull String createdAt) { - + this.createdAt = createdAt; return this; } @@ -372,7 +372,7 @@ public void setCreatedAt(@javax.annotation.Nonnull String createdAt) { } public Memory updatedAt(@javax.annotation.Nonnull String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -556,4 +556,3 @@ public Memory.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryListItem.java b/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryListItem.java index 8374458..a187461 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryListItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryListItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public MemoryListItem() { } public MemoryListItem type(@javax.annotation.Nonnull MemoryListItemType type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull MemoryListItemType type) { } public MemoryListItem path(@javax.annotation.Nonnull String path) { - + this.path = path; return this; } @@ -127,7 +127,7 @@ public void setPath(@javax.annotation.Nonnull String path) { } public MemoryListItem id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -152,7 +152,7 @@ public void setId(@javax.annotation.Nullable String id) { } public MemoryListItem memoryStoreId(@javax.annotation.Nullable String memoryStoreId) { - + this.memoryStoreId = memoryStoreId; return this; } @@ -177,7 +177,7 @@ public void setMemoryStoreId(@javax.annotation.Nullable String memoryStoreId) { } public MemoryListItem contentSha256(@javax.annotation.Nullable String contentSha256) { - + this.contentSha256 = contentSha256; return this; } @@ -202,7 +202,7 @@ public void setContentSha256(@javax.annotation.Nullable String contentSha256) { } public MemoryListItem contentSizeBytes(@javax.annotation.Nullable Long contentSizeBytes) { - + this.contentSizeBytes = contentSizeBytes; return this; } @@ -227,7 +227,7 @@ public void setContentSizeBytes(@javax.annotation.Nullable Long contentSizeBytes } public MemoryListItem memoryVersionId(@javax.annotation.Nullable String memoryVersionId) { - + this.memoryVersionId = memoryVersionId; return this; } @@ -252,7 +252,7 @@ public void setMemoryVersionId(@javax.annotation.Nullable String memoryVersionId } public MemoryListItem createdAt(@javax.annotation.Nullable String createdAt) { - + this.createdAt = createdAt; return this; } @@ -277,7 +277,7 @@ public void setCreatedAt(@javax.annotation.Nullable String createdAt) { } public MemoryListItem updatedAt(@javax.annotation.Nullable String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -447,4 +447,3 @@ public MemoryListItem.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryListItemType.java b/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryListItemType.java index f35675e..cb4fbb5 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryListItemType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryListItemType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * List Memories 响应中的元素类型。 - `memory`:单条文件项,携带元信息 - `memory_prefix`:折叠目录项,仅 `type` + `path`(以 `/` 结尾) */ public enum MemoryListItemType { - + MEMORY("memory"), - + MEMORY_PREFIX("memory_prefix"); private String value; @@ -55,4 +55,3 @@ public static MemoryListItemType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryStore.java b/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryStore.java index 99d22e0..68d2079 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryStore.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/MemoryStore.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -123,7 +123,7 @@ public MemoryStore() { } public MemoryStore id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -148,7 +148,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public MemoryStore type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -173,7 +173,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public MemoryStore name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -198,7 +198,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public MemoryStore description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -223,7 +223,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public MemoryStore memoryCount(@javax.annotation.Nonnull Long memoryCount) { - + this.memoryCount = memoryCount; return this; } @@ -248,7 +248,7 @@ public void setMemoryCount(@javax.annotation.Nonnull Long memoryCount) { } public MemoryStore storageBytes(@javax.annotation.Nonnull Long storageBytes) { - + this.storageBytes = storageBytes; return this; } @@ -273,7 +273,7 @@ public void setStorageBytes(@javax.annotation.Nonnull Long storageBytes) { } public MemoryStore sessionCount(@javax.annotation.Nonnull Long sessionCount) { - + this.sessionCount = sessionCount; return this; } @@ -298,7 +298,7 @@ public void setSessionCount(@javax.annotation.Nonnull Long sessionCount) { } public MemoryStore createdBy(@javax.annotation.Nonnull Actor createdBy) { - + this.createdBy = createdBy; return this; } @@ -323,7 +323,7 @@ public void setCreatedBy(@javax.annotation.Nonnull Actor createdBy) { } public MemoryStore createdAt(@javax.annotation.Nonnull String createdAt) { - + this.createdAt = createdAt; return this; } @@ -348,7 +348,7 @@ public void setCreatedAt(@javax.annotation.Nonnull String createdAt) { } public MemoryStore updatedAt(@javax.annotation.Nonnull String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -373,7 +373,7 @@ public void setUpdatedAt(@javax.annotation.Nonnull String updatedAt) { } public MemoryStore metadata(@javax.annotation.Nonnull Map metadata) { - + this.metadata = metadata; return this; } @@ -562,4 +562,3 @@ public MemoryStore.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/RemoveRequest.java b/src/main/java/com/volcengine/ark/runtime/models/memory/RemoveRequest.java index 57677c6..cc9240b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/RemoveRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/RemoveRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public RemoveRequest() { } public RemoveRequest memoryStoreId(@javax.annotation.Nonnull String memoryStoreId) { - + this.memoryStoreId = memoryStoreId; return this; } @@ -67,7 +67,7 @@ public void setMemoryStoreId(@javax.annotation.Nonnull String memoryStoreId) { } public RemoveRequest memoryId(@javax.annotation.Nonnull String memoryId) { - + this.memoryId = memoryId; return this; } @@ -188,4 +188,3 @@ public RemoveRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/RetrieveRequest.java b/src/main/java/com/volcengine/ark/runtime/models/memory/RetrieveRequest.java index 0098c82..2f6d52f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/RetrieveRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/RetrieveRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public RetrieveRequest() { } public RetrieveRequest memoryStoreId(@javax.annotation.Nonnull String memoryStoreId) { - + this.memoryStoreId = memoryStoreId; return this; } @@ -67,7 +67,7 @@ public void setMemoryStoreId(@javax.annotation.Nonnull String memoryStoreId) { } public RetrieveRequest memoryId(@javax.annotation.Nonnull String memoryId) { - + this.memoryId = memoryId; return this; } @@ -188,4 +188,3 @@ public RetrieveRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/UpdateMemoryRequest.java b/src/main/java/com/volcengine/ark/runtime/models/memory/UpdateMemoryRequest.java index b59ac54..e9dbd69 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/UpdateMemoryRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/UpdateMemoryRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public UpdateMemoryRequest() { } public UpdateMemoryRequest content(@javax.annotation.Nullable String content) { - + this.content = content; return this; } @@ -67,7 +67,7 @@ public void setContent(@javax.annotation.Nullable String content) { } public UpdateMemoryRequest path(@javax.annotation.Nullable String path) { - + this.path = path; return this; } @@ -188,4 +188,3 @@ public UpdateMemoryRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/memory/UpdateMemoryStoreRequest.java b/src/main/java/com/volcengine/ark/runtime/models/memory/UpdateMemoryStoreRequest.java index 3346a36..861856d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/memory/UpdateMemoryStoreRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/memory/UpdateMemoryStoreRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public UpdateMemoryStoreRequest() { } public UpdateMemoryStoreRequest name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -74,7 +74,7 @@ public void setName(@javax.annotation.Nullable String name) { } public UpdateMemoryStoreRequest description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -99,7 +99,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public UpdateMemoryStoreRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -235,4 +235,3 @@ public UpdateMemoryStoreRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/Embedding.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/Embedding.java index 6c911cc..80454de 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/Embedding.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/Embedding.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingDataItem.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingDataItem.java index 0019e90..2621b24 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingDataItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingDataItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -89,7 +89,7 @@ public EmbeddingDataItem() { } public EmbeddingDataItem embedding(@javax.annotation.Nonnull Embedding embedding) { - + this.embedding = embedding; return this; } @@ -114,7 +114,7 @@ public void setEmbedding(@javax.annotation.Nonnull Embedding embedding) { } public EmbeddingDataItem sparseEmbedding(@javax.annotation.Nullable List sparseEmbedding) { - + this.sparseEmbedding = sparseEmbedding; return this; } @@ -147,7 +147,7 @@ public void setSparseEmbedding(@javax.annotation.Nullable List multiEmbedding) { - + this.multiEmbedding = multiEmbedding; return this; } @@ -315,4 +315,3 @@ public EmbeddingDataItem.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingInput.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingInput.java index 0e8a9cf..f962bbe 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingInput.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingInput.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public EmbeddingInput() { } public EmbeddingInput type(@javax.annotation.Nonnull EmbeddingInputType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull EmbeddingInputType type) { } public EmbeddingInput text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -102,7 +102,7 @@ public void setText(@javax.annotation.Nullable String text) { } public EmbeddingInput imageUrl(@javax.annotation.Nullable ImageURL imageUrl) { - + this.imageUrl = imageUrl; return this; } @@ -127,7 +127,7 @@ public void setImageUrl(@javax.annotation.Nullable ImageURL imageUrl) { } public EmbeddingInput videoUrl(@javax.annotation.Nullable VideoURL videoUrl) { - + this.videoUrl = videoUrl; return this; } @@ -262,4 +262,3 @@ public EmbeddingInput.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingInputType.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingInputType.java index ab55189..630ff2a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingInputType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingInputType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets EmbeddingInputType */ public enum EmbeddingInputType { - + TEXT("text"), - + IMAGE_URL("image_url"), - + VIDEO_URL("video_url"); private String value; @@ -57,4 +57,3 @@ public static EmbeddingInputType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingObject.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingObject.java index e4814d0..03e4385 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingObject.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingObject.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets EmbeddingObject */ public enum EmbeddingObject { - + EMBEDDING("embedding"), - + LIST("list"); private String value; @@ -55,4 +55,3 @@ public static EmbeddingObject fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingUsage.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingUsage.java index 6aaaa7c..6eef036 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingUsage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EmbeddingUsage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public EmbeddingUsage() { } public EmbeddingUsage promptTokens(@javax.annotation.Nonnull Long promptTokens) { - + this.promptTokens = promptTokens; return this; } @@ -72,7 +72,7 @@ public void setPromptTokens(@javax.annotation.Nonnull Long promptTokens) { } public EmbeddingUsage totalTokens(@javax.annotation.Nonnull Long totalTokens) { - + this.totalTokens = totalTokens; return this; } @@ -97,7 +97,7 @@ public void setTotalTokens(@javax.annotation.Nonnull Long totalTokens) { } public EmbeddingUsage promptTokensDetails(@javax.annotation.Nonnull PromptTokensDetails promptTokensDetails) { - + this.promptTokensDetails = promptTokensDetails; return this; } @@ -225,4 +225,3 @@ public EmbeddingUsage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EncodingFormat.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EncodingFormat.java index db6d78d..ca588bc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EncodingFormat.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/EncodingFormat.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets EncodingFormat */ public enum EncodingFormat { - + BASE64("base64"), - + FLOAT("float"); private String value; @@ -55,4 +55,3 @@ public static EncodingFormat fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/ImageURL.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/ImageURL.java index e1b1828..e506be8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/ImageURL.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/ImageURL.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ImageURL() { } public ImageURL url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -151,4 +151,3 @@ public ImageURL.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiEmbeddingConfig.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiEmbeddingConfig.java index 796876d..abc5da6 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiEmbeddingConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiEmbeddingConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public MultiEmbeddingConfig() { } public MultiEmbeddingConfig type(@javax.annotation.Nonnull MultiEmbeddingMode type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public MultiEmbeddingConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiEmbeddingMode.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiEmbeddingMode.java index b532685..4310ebf 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiEmbeddingMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiEmbeddingMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets MultiEmbeddingMode */ public enum MultiEmbeddingMode { - + ENABLED("enabled"), - + DISABLED("disabled"); private String value; @@ -55,4 +55,3 @@ public static MultiEmbeddingMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiModalEmbeddingRequest.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiModalEmbeddingRequest.java index 6b6192a..89bdcaa 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiModalEmbeddingRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiModalEmbeddingRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -69,7 +69,7 @@ public MultiModalEmbeddingRequest() { } public MultiModalEmbeddingRequest model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -94,7 +94,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public MultiModalEmbeddingRequest input(@javax.annotation.Nonnull List input) { - + this.input = input; return this; } @@ -127,7 +127,7 @@ public void setInput(@javax.annotation.Nonnull List input) { } public MultiModalEmbeddingRequest encodingFormat(@javax.annotation.Nullable EncodingFormat encodingFormat) { - + this.encodingFormat = encodingFormat; return this; } @@ -152,7 +152,7 @@ public void setEncodingFormat(@javax.annotation.Nullable EncodingFormat encoding } public MultiModalEmbeddingRequest dimensions(@javax.annotation.Nullable Long dimensions) { - + this.dimensions = dimensions; return this; } @@ -177,7 +177,7 @@ public void setDimensions(@javax.annotation.Nullable Long dimensions) { } public MultiModalEmbeddingRequest sparseEmbedding(@javax.annotation.Nullable SparseEmbeddingConfig sparseEmbedding) { - + this.sparseEmbedding = sparseEmbedding; return this; } @@ -202,7 +202,7 @@ public void setSparseEmbedding(@javax.annotation.Nullable SparseEmbeddingConfig } public MultiModalEmbeddingRequest multiEmbedding(@javax.annotation.Nullable MultiEmbeddingConfig multiEmbedding) { - + this.multiEmbedding = multiEmbedding; return this; } @@ -227,7 +227,7 @@ public void setMultiEmbedding(@javax.annotation.Nullable MultiEmbeddingConfig mu } public MultiModalEmbeddingRequest instructions(@javax.annotation.Nullable String instructions) { - + this.instructions = instructions; return this; } @@ -383,4 +383,3 @@ public MultiModalEmbeddingRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiModalEmbeddingResponse.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiModalEmbeddingResponse.java index eb42539..64fae37 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiModalEmbeddingResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/MultiModalEmbeddingResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -97,7 +97,7 @@ public MultiModalEmbeddingResponse() { } public MultiModalEmbeddingResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -122,7 +122,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public MultiModalEmbeddingResponse model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -147,7 +147,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public MultiModalEmbeddingResponse created(@javax.annotation.Nonnull Long created) { - + this.created = created; return this; } @@ -172,7 +172,7 @@ public void setCreated(@javax.annotation.Nonnull Long created) { } public MultiModalEmbeddingResponse _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -197,7 +197,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public MultiModalEmbeddingResponse data(@javax.annotation.Nonnull EmbeddingDataItem data) { - + this.data = data; return this; } @@ -222,7 +222,7 @@ public void setData(@javax.annotation.Nonnull EmbeddingDataItem data) { } public MultiModalEmbeddingResponse usage(@javax.annotation.Nonnull EmbeddingUsage usage) { - + this.usage = usage; return this; } @@ -371,4 +371,3 @@ public MultiModalEmbeddingResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/PromptTokensDetails.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/PromptTokensDetails.java index bd9cce3..474d814 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/PromptTokensDetails.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/PromptTokensDetails.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public PromptTokensDetails() { } public PromptTokensDetails textTokens(@javax.annotation.Nonnull Long textTokens) { - + this.textTokens = textTokens; return this; } @@ -67,7 +67,7 @@ public void setTextTokens(@javax.annotation.Nonnull Long textTokens) { } public PromptTokensDetails imageTokens(@javax.annotation.Nonnull Long imageTokens) { - + this.imageTokens = imageTokens; return this; } @@ -188,4 +188,3 @@ public PromptTokensDetails.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingConfig.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingConfig.java index c95318d..ee1ccb1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public SparseEmbeddingConfig() { } public SparseEmbeddingConfig type(@javax.annotation.Nullable SparseEmbeddingMode type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public SparseEmbeddingConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingMode.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingMode.java index b3ecaba..014dd3b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets SparseEmbeddingMode */ public enum SparseEmbeddingMode { - + ENABLED("enabled"), - + DISABLED("disabled"); private String value; @@ -55,4 +55,3 @@ public static SparseEmbeddingMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingValue.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingValue.java index fa3d081..1317beb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingValue.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/SparseEmbeddingValue.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public SparseEmbeddingValue() { } public SparseEmbeddingValue index(@javax.annotation.Nonnull Long index) { - + this.index = index; return this; } @@ -67,7 +67,7 @@ public void setIndex(@javax.annotation.Nonnull Long index) { } public SparseEmbeddingValue value(@javax.annotation.Nonnull Double value) { - + this.value = value; return this; } @@ -188,4 +188,3 @@ public SparseEmbeddingValue.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/VideoURL.java b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/VideoURL.java index f54c238..a01a4e9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/VideoURL.java +++ b/src/main/java/com/volcengine/ark/runtime/models/multimodal_embedding/VideoURL.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public VideoURL() { } public VideoURL url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -67,7 +67,7 @@ public void setUrl(@javax.annotation.Nonnull String url) { } public VideoURL fps(@javax.annotation.Nullable Double fps) { - + this.fps = fps; return this; } @@ -188,4 +188,3 @@ public VideoURL.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/Annotation.java b/src/main/java/com/volcengine/ark/runtime/models/responses/Annotation.java index dfd0c37..48bd60a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/Annotation.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/Annotation.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -29,4 +29,3 @@ public interface Annotation { public AnnotationType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/AnnotationType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/AnnotationType.java index e339870..8c20214 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/AnnotationType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/AnnotationType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets AnnotationType */ public enum AnnotationType { - + DOC_CITATION("doc_citation"), - + URL_CITATION("url_citation"); private String value; @@ -55,4 +55,3 @@ public static AnnotationType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/AppliedEdit.java b/src/main/java/com/volcengine/ark/runtime/models/responses/AppliedEdit.java index a03d301..04c1695 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/AppliedEdit.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/AppliedEdit.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -29,4 +29,3 @@ public interface AppliedEdit { public AppliedEditType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/AppliedEditType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/AppliedEditType.java index 112c7a9..c362900 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/AppliedEditType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/AppliedEditType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets AppliedEditType */ public enum AppliedEditType { - + CLEAR_THINKING("clear_thinking"), - + CLEAR_TOOL_USES("clear_tool_uses"); private String value; @@ -55,4 +55,3 @@ public static AppliedEditType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/AudioChunk.java b/src/main/java/com/volcengine/ark/runtime/models/responses/AudioChunk.java index 3a86f85..757d6bd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/AudioChunk.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/AudioChunk.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public AudioChunk() { } public AudioChunk text(@javax.annotation.Nonnull String text) { - + this.text = text; return this; } @@ -72,7 +72,7 @@ public void setText(@javax.annotation.Nonnull String text) { } public AudioChunk startTime(@javax.annotation.Nonnull Long startTime) { - + this.startTime = startTime; return this; } @@ -97,7 +97,7 @@ public void setStartTime(@javax.annotation.Nonnull Long startTime) { } public AudioChunk endTime(@javax.annotation.Nonnull Long endTime) { - + this.endTime = endTime; return this; } @@ -225,4 +225,3 @@ public AudioChunk.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/AudioChunkingStrategy.java b/src/main/java/com/volcengine/ark/runtime/models/responses/AudioChunkingStrategy.java index 75c86f8..80a57bb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/AudioChunkingStrategy.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/AudioChunkingStrategy.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -87,7 +87,7 @@ public AudioChunkingStrategy() { } public AudioChunkingStrategy type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -112,7 +112,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public AudioChunkingStrategy prefixPaddingMs(@javax.annotation.Nullable Long prefixPaddingMs) { - + this.prefixPaddingMs = prefixPaddingMs; return this; } @@ -137,7 +137,7 @@ public void setPrefixPaddingMs(@javax.annotation.Nullable Long prefixPaddingMs) } public AudioChunkingStrategy silenceDurationMs(@javax.annotation.Nullable Long silenceDurationMs) { - + this.silenceDurationMs = silenceDurationMs; return this; } @@ -162,7 +162,7 @@ public void setSilenceDurationMs(@javax.annotation.Nullable Long silenceDuration } public AudioChunkingStrategy threshold(@javax.annotation.Nullable Double threshold) { - + this.threshold = threshold; return this; } @@ -297,4 +297,3 @@ public AudioChunkingStrategy.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/CacheMode.java b/src/main/java/com/volcengine/ark/runtime/models/responses/CacheMode.java index 2549d43..43d4909 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/CacheMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/CacheMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets CacheMode */ public enum CacheMode { - + DISABLED("disabled"), - + ENABLED("enabled"); private String value; @@ -55,4 +55,3 @@ public static CacheMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinking.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinking.java index defd5af..053b471 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinking.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinking.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ClearThinking() { } public ClearThinking type(@javax.annotation.Nonnull EditType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull EditType type) { } public ClearThinking keep(@javax.annotation.Nonnull ClearThinkingKeep keep) { - + this.keep = keep; return this; } @@ -188,4 +188,3 @@ public ClearThinking.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinkingKeep.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinkingKeep.java index 50c5d31..23765bd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinkingKeep.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinkingKeep.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public ClearThinkingKeep() { } public ClearThinkingKeep all(@javax.annotation.Nullable AllEnum all) { - + this.all = all; return this; } @@ -102,7 +102,7 @@ public void setAll(@javax.annotation.Nullable AllEnum all) { } public ClearThinkingKeep thinkingTurnParams(@javax.annotation.Nullable ThinkingTurnsParam thinkingTurnParams) { - + this.thinkingTurnParams = thinkingTurnParams; return this; } @@ -223,4 +223,3 @@ public ClearThinkingKeep.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinkingResponse.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinkingResponse.java index 59c47a6..008abf7 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinkingResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearThinkingResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ClearThinkingResponse() { } public ClearThinkingResponse type(@javax.annotation.Nonnull AppliedEditType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull AppliedEditType type) { } public ClearThinkingResponse clearedThinkingTurns(@javax.annotation.Nonnull Integer clearedThinkingTurns) { - + this.clearedThinkingTurns = clearedThinkingTurns; return this; } @@ -188,4 +188,3 @@ public ClearThinkingResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUses.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUses.java index c2951b4..80d53c8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUses.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUses.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public ClearToolUses() { } public ClearToolUses type(@javax.annotation.Nonnull EditType type) { - + this.type = type; return this; } @@ -84,7 +84,7 @@ public void setType(@javax.annotation.Nonnull EditType type) { } public ClearToolUses clearToolInputs(@javax.annotation.Nonnull ClearToolUsesInputs clearToolInputs) { - + this.clearToolInputs = clearToolInputs; return this; } @@ -109,7 +109,7 @@ public void setClearToolInputs(@javax.annotation.Nonnull ClearToolUsesInputs cle } public ClearToolUses excludeTools(@javax.annotation.Nullable List excludeTools) { - + this.excludeTools = excludeTools; return this; } @@ -142,7 +142,7 @@ public void setExcludeTools(@javax.annotation.Nullable List excludeTools } public ClearToolUses keep(@javax.annotation.Nullable ToolUsesKeep keep) { - + this.keep = keep; return this; } @@ -167,7 +167,7 @@ public void setKeep(@javax.annotation.Nullable ToolUsesKeep keep) { } public ClearToolUses trigger(@javax.annotation.Nullable ToolUsesTrigger trigger) { - + this.trigger = trigger; return this; } @@ -309,4 +309,3 @@ public ClearToolUses.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUsesInputs.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUsesInputs.java index 4778993..3b90706 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUsesInputs.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUsesInputs.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ClearToolUsesInputs() { } public ClearToolUsesInputs clearAll(@javax.annotation.Nullable Boolean clearAll) { - + this.clearAll = clearAll; return this; } @@ -67,7 +67,7 @@ public void setClearAll(@javax.annotation.Nullable Boolean clearAll) { } public ClearToolUsesInputs toolNameList(@javax.annotation.Nullable ToolNameList toolNameList) { - + this.toolNameList = toolNameList; return this; } @@ -188,4 +188,3 @@ public ClearToolUsesInputs.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUsesResponse.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUsesResponse.java index 64b60b5..207d59d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUsesResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ClearToolUsesResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ClearToolUsesResponse() { } public ClearToolUsesResponse type(@javax.annotation.Nonnull AppliedEditType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull AppliedEditType type) { } public ClearToolUsesResponse clearedToolUses(@javax.annotation.Nonnull Integer clearedToolUses) { - + this.clearedToolUses = clearedToolUses; return this; } @@ -188,4 +188,3 @@ public ClearToolUsesResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentFilter.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentFilter.java index 9d520bc..e674769 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentFilter.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentFilter.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ContentFilter() { } public ContentFilter type(@javax.annotation.Nonnull String type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull String type) { } public ContentFilter details(@javax.annotation.Nonnull String details) { - + this.details = details; return this; } @@ -188,4 +188,3 @@ public ContentFilter.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItem.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItem.java index b5b227d..d1da815 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -34,4 +34,3 @@ public interface ContentItem { public ContentItemType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemAudio.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemAudio.java index a809c85..bb52905 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemAudio.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemAudio.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ContentItemAudio() { } public ContentItemAudio type(@javax.annotation.Nonnull ContentItemType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ContentItemType type) { } public ContentItemAudio chunkingStrategy(@javax.annotation.Nullable AudioChunkingStrategy chunkingStrategy) { - + this.chunkingStrategy = chunkingStrategy; return this; } @@ -102,7 +102,7 @@ public void setChunkingStrategy(@javax.annotation.Nullable AudioChunkingStrategy } public ContentItemAudio audioUrl(@javax.annotation.Nullable String audioUrl) { - + this.audioUrl = audioUrl; return this; } @@ -127,7 +127,7 @@ public void setAudioUrl(@javax.annotation.Nullable String audioUrl) { } public ContentItemAudio fileId(@javax.annotation.Nullable String fileId) { - + this.fileId = fileId; return this; } @@ -262,4 +262,3 @@ public ContentItemAudio.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemFile.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemFile.java index 4b006f7..76471a4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemFile.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemFile.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ContentItemFile() { } public ContentItemFile type(@javax.annotation.Nonnull ContentItemType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ContentItemType type) { } public ContentItemFile fileData(@javax.annotation.Nullable String fileData) { - + this.fileData = fileData; return this; } @@ -107,7 +107,7 @@ public void setFileData(@javax.annotation.Nullable String fileData) { } public ContentItemFile fileId(@javax.annotation.Nullable String fileId) { - + this.fileId = fileId; return this; } @@ -132,7 +132,7 @@ public void setFileId(@javax.annotation.Nullable String fileId) { } public ContentItemFile fileUrl(@javax.annotation.Nullable String fileUrl) { - + this.fileUrl = fileUrl; return this; } @@ -157,7 +157,7 @@ public void setFileUrl(@javax.annotation.Nullable String fileUrl) { } public ContentItemFile filename(@javax.annotation.Nullable String filename) { - + this.filename = filename; return this; } @@ -299,4 +299,3 @@ public ContentItemFile.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemImage.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemImage.java index 4afa55e..e5b0b32 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemImage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemImage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ContentItemImage() { } public ContentItemImage type(@javax.annotation.Nonnull ContentItemType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ContentItemType type) { } public ContentItemImage imageUrl(@javax.annotation.Nullable String imageUrl) { - + this.imageUrl = imageUrl; return this; } @@ -107,7 +107,7 @@ public void setImageUrl(@javax.annotation.Nullable String imageUrl) { } public ContentItemImage fileId(@javax.annotation.Nullable String fileId) { - + this.fileId = fileId; return this; } @@ -132,7 +132,7 @@ public void setFileId(@javax.annotation.Nullable String fileId) { } public ContentItemImage detail(@javax.annotation.Nullable ImageDetail detail) { - + this.detail = detail; return this; } @@ -157,7 +157,7 @@ public void setDetail(@javax.annotation.Nullable ImageDetail detail) { } public ContentItemImage imagePixelLimit(@javax.annotation.Nullable ImagePixelLimit imagePixelLimit) { - + this.imagePixelLimit = imagePixelLimit; return this; } @@ -299,4 +299,3 @@ public ContentItemImage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemText.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemText.java index 6093ec1..65f52de 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemText.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemText.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ContentItemText() { } public ContentItemText text(@javax.annotation.Nonnull String text) { - + this.text = text; return this; } @@ -67,7 +67,7 @@ public void setText(@javax.annotation.Nonnull String text) { } public ContentItemText type(@javax.annotation.Nonnull ContentItemType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public ContentItemText.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemType.java index bdf2c40..51c9661 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,19 +24,19 @@ * Gets or Sets ContentItemType */ public enum ContentItemType { - + INPUT_AUDIO("input_audio"), - + INPUT_FILE("input_file"), - + INPUT_IMAGE("input_image"), - + INPUT_TEXT("input_text"), - + INPUT_VIDEO("input_video"), - + OUTPUT_TEXT("output_text"), - + REASONING_TEXT("reasoning_text"); private String value; @@ -65,4 +65,3 @@ public static ContentItemType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemVideo.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemVideo.java index f362721..f8926d8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemVideo.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContentItemVideo.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ContentItemVideo() { } public ContentItemVideo type(@javax.annotation.Nonnull ContentItemType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ContentItemType type) { } public ContentItemVideo videoUrl(@javax.annotation.Nonnull String videoUrl) { - + this.videoUrl = videoUrl; return this; } @@ -102,7 +102,7 @@ public void setVideoUrl(@javax.annotation.Nonnull String videoUrl) { } public ContentItemVideo fileId(@javax.annotation.Nullable String fileId) { - + this.fileId = fileId; return this; } @@ -127,7 +127,7 @@ public void setFileId(@javax.annotation.Nullable String fileId) { } public ContentItemVideo fps(@javax.annotation.Nullable Double fps) { - + this.fps = fps; return this; } @@ -262,4 +262,3 @@ public ContentItemVideo.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContextManagement.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContextManagement.java index c6d46fd..4a15f37 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContextManagement.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContextManagement.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public ContextManagement() { } public ContextManagement edits(@javax.annotation.Nonnull List edits) { - + this.edits = edits; return this; } @@ -161,4 +161,3 @@ public ContextManagement.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ContextManagementResponse.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ContextManagementResponse.java index 83114e8..7408325 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ContextManagementResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ContextManagementResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public ContextManagementResponse() { } public ContextManagementResponse appliedEdits(@javax.annotation.Nonnull List appliedEdits) { - + this.appliedEdits = appliedEdits; return this; } @@ -161,4 +161,3 @@ public ContextManagementResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/CoverImage.java b/src/main/java/com/volcengine/ark/runtime/models/responses/CoverImage.java index 1b4fb1c..4f87a8f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/CoverImage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/CoverImage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public CoverImage() { } public CoverImage url(@javax.annotation.Nullable String url) { - + this.url = url; return this; } @@ -72,7 +72,7 @@ public void setUrl(@javax.annotation.Nullable String url) { } public CoverImage width(@javax.annotation.Nullable Long width) { - + this.width = width; return this; } @@ -97,7 +97,7 @@ public void setWidth(@javax.annotation.Nullable Long width) { } public CoverImage height(@javax.annotation.Nullable Long height) { - + this.height = height; return this; } @@ -225,4 +225,3 @@ public CoverImage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DeleteResponseRequest.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DeleteResponseRequest.java index 9887209..5893952 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DeleteResponseRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DeleteResponseRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public DeleteResponseRequest() { } public DeleteResponseRequest responseId(@javax.annotation.Nonnull String responseId) { - + this.responseId = responseId; return this; } @@ -151,4 +151,3 @@ public DeleteResponseRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DeleteResponseResponse.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DeleteResponseResponse.java index d5ce947..3a942d4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DeleteResponseResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DeleteResponseResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -82,7 +82,7 @@ public DeleteResponseResponse() { } public DeleteResponseResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -107,7 +107,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public DeleteResponseResponse _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -132,7 +132,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public DeleteResponseResponse deleted(@javax.annotation.Nonnull Boolean deleted) { - + this.deleted = deleted; return this; } @@ -260,4 +260,3 @@ public DeleteResponseResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DocCitation.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DocCitation.java index 55ed6f4..1b638df 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DocCitation.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DocCitation.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -60,7 +60,7 @@ public DocCitation() { } public DocCitation type(@javax.annotation.Nonnull AnnotationType type) { - + this.type = type; return this; } @@ -85,7 +85,7 @@ public void setType(@javax.annotation.Nonnull AnnotationType type) { } public DocCitation docId(@javax.annotation.Nullable String docId) { - + this.docId = docId; return this; } @@ -110,7 +110,7 @@ public void setDocId(@javax.annotation.Nullable String docId) { } public DocCitation docName(@javax.annotation.Nullable String docName) { - + this.docName = docName; return this; } @@ -135,7 +135,7 @@ public void setDocName(@javax.annotation.Nullable String docName) { } public DocCitation chunkId(@javax.annotation.Nullable Integer chunkId) { - + this.chunkId = chunkId; return this; } @@ -160,7 +160,7 @@ public void setChunkId(@javax.annotation.Nullable Integer chunkId) { } public DocCitation chunkAttachment(@javax.annotation.Nullable List> chunkAttachment) { - + this.chunkAttachment = chunkAttachment; return this; } @@ -310,4 +310,3 @@ public DocCitation.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlock.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlock.java index 5cc92b7..1cc5f17 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlock.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlock.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,4 +31,3 @@ public interface DoubaoAppCallBlock { public DoubaoAppCallBlockType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockOutputText.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockOutputText.java index 4989c62..59c74bf 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockOutputText.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockOutputText.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public DoubaoAppCallBlockOutputText() { } public DoubaoAppCallBlockOutputText type(@javax.annotation.Nonnull DoubaoAppCallBlockType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull DoubaoAppCallBlockType type) { } public DoubaoAppCallBlockOutputText id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -107,7 +107,7 @@ public void setId(@javax.annotation.Nullable String id) { } public DoubaoAppCallBlockOutputText text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -132,7 +132,7 @@ public void setText(@javax.annotation.Nullable String text) { } public DoubaoAppCallBlockOutputText status(@javax.annotation.Nullable ItemStatus status) { - + this.status = status; return this; } @@ -157,7 +157,7 @@ public void setStatus(@javax.annotation.Nullable ItemStatus status) { } public DoubaoAppCallBlockOutputText parentId(@javax.annotation.Nullable String parentId) { - + this.parentId = parentId; return this; } @@ -299,4 +299,3 @@ public DoubaoAppCallBlockOutputText.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockReasoningSearch.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockReasoningSearch.java index 00edc84..5cba9de 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockReasoningSearch.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockReasoningSearch.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -69,7 +69,7 @@ public DoubaoAppCallBlockReasoningSearch() { } public DoubaoAppCallBlockReasoningSearch type(@javax.annotation.Nonnull DoubaoAppCallBlockType type) { - + this.type = type; return this; } @@ -94,7 +94,7 @@ public void setType(@javax.annotation.Nonnull DoubaoAppCallBlockType type) { } public DoubaoAppCallBlockReasoningSearch id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -119,7 +119,7 @@ public void setId(@javax.annotation.Nullable String id) { } public DoubaoAppCallBlockReasoningSearch summary(@javax.annotation.Nullable String summary) { - + this.summary = summary; return this; } @@ -144,7 +144,7 @@ public void setSummary(@javax.annotation.Nullable String summary) { } public DoubaoAppCallBlockReasoningSearch queries(@javax.annotation.Nullable List queries) { - + this.queries = queries; return this; } @@ -177,7 +177,7 @@ public void setQueries(@javax.annotation.Nullable List queries) { } public DoubaoAppCallBlockReasoningSearch results(@javax.annotation.Nullable List results) { - + this.results = results; return this; } @@ -210,7 +210,7 @@ public void setResults(@javax.annotation.Nullable List re } public DoubaoAppCallBlockReasoningSearch status(@javax.annotation.Nullable ItemStatus status) { - + this.status = status; return this; } @@ -235,7 +235,7 @@ public void setStatus(@javax.annotation.Nullable ItemStatus status) { } public DoubaoAppCallBlockReasoningSearch parentId(@javax.annotation.Nullable String parentId) { - + this.parentId = parentId; return this; } @@ -391,4 +391,3 @@ public DoubaoAppCallBlockReasoningSearch.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockReasoningText.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockReasoningText.java index cf96273..e9e9e82 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockReasoningText.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockReasoningText.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public DoubaoAppCallBlockReasoningText() { } public DoubaoAppCallBlockReasoningText type(@javax.annotation.Nonnull DoubaoAppCallBlockType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull DoubaoAppCallBlockType type) { } public DoubaoAppCallBlockReasoningText id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -107,7 +107,7 @@ public void setId(@javax.annotation.Nullable String id) { } public DoubaoAppCallBlockReasoningText reasoningText(@javax.annotation.Nullable String reasoningText) { - + this.reasoningText = reasoningText; return this; } @@ -132,7 +132,7 @@ public void setReasoningText(@javax.annotation.Nullable String reasoningText) { } public DoubaoAppCallBlockReasoningText status(@javax.annotation.Nullable ItemStatus status) { - + this.status = status; return this; } @@ -157,7 +157,7 @@ public void setStatus(@javax.annotation.Nullable ItemStatus status) { } public DoubaoAppCallBlockReasoningText parentId(@javax.annotation.Nullable String parentId) { - + this.parentId = parentId; return this; } @@ -299,4 +299,3 @@ public DoubaoAppCallBlockReasoningText.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockSearch.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockSearch.java index cd3a3c8..7e231ee 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockSearch.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockSearch.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -69,7 +69,7 @@ public DoubaoAppCallBlockSearch() { } public DoubaoAppCallBlockSearch type(@javax.annotation.Nonnull DoubaoAppCallBlockType type) { - + this.type = type; return this; } @@ -94,7 +94,7 @@ public void setType(@javax.annotation.Nonnull DoubaoAppCallBlockType type) { } public DoubaoAppCallBlockSearch id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -119,7 +119,7 @@ public void setId(@javax.annotation.Nullable String id) { } public DoubaoAppCallBlockSearch summary(@javax.annotation.Nullable String summary) { - + this.summary = summary; return this; } @@ -144,7 +144,7 @@ public void setSummary(@javax.annotation.Nullable String summary) { } public DoubaoAppCallBlockSearch queries(@javax.annotation.Nullable List queries) { - + this.queries = queries; return this; } @@ -177,7 +177,7 @@ public void setQueries(@javax.annotation.Nullable List queries) { } public DoubaoAppCallBlockSearch results(@javax.annotation.Nullable List results) { - + this.results = results; return this; } @@ -210,7 +210,7 @@ public void setResults(@javax.annotation.Nullable List re } public DoubaoAppCallBlockSearch status(@javax.annotation.Nullable ItemStatus status) { - + this.status = status; return this; } @@ -235,7 +235,7 @@ public void setStatus(@javax.annotation.Nullable ItemStatus status) { } public DoubaoAppCallBlockSearch parentId(@javax.annotation.Nullable String parentId) { - + this.parentId = parentId; return this; } @@ -391,4 +391,3 @@ public DoubaoAppCallBlockSearch.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockType.java index 7476d77..fc8e90e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppCallBlockType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets DoubaoAppCallBlockType */ public enum DoubaoAppCallBlockType { - + OUTPUT_TEXT("output_text"), - + REASONING_SEARCH("reasoning_search"), - + REASONING_TEXT("reasoning_text"), - + SEARCH("search"); private String value; @@ -59,4 +59,3 @@ public static DoubaoAppCallBlockType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeature.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeature.java index 40b2885..afe6a21 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeature.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeature.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public DoubaoAppFeature() { } public DoubaoAppFeature chat(@javax.annotation.Nullable DoubaoAppFeatureItem chat) { - + this.chat = chat; return this; } @@ -77,7 +77,7 @@ public void setChat(@javax.annotation.Nullable DoubaoAppFeatureItem chat) { } public DoubaoAppFeature deepChat(@javax.annotation.Nullable DoubaoAppFeatureItem deepChat) { - + this.deepChat = deepChat; return this; } @@ -102,7 +102,7 @@ public void setDeepChat(@javax.annotation.Nullable DoubaoAppFeatureItem deepChat } public DoubaoAppFeature aiSearch(@javax.annotation.Nullable DoubaoAppFeatureItem aiSearch) { - + this.aiSearch = aiSearch; return this; } @@ -127,7 +127,7 @@ public void setAiSearch(@javax.annotation.Nullable DoubaoAppFeatureItem aiSearch } public DoubaoAppFeature reasoningSearch(@javax.annotation.Nullable DoubaoAppFeatureItem reasoningSearch) { - + this.reasoningSearch = reasoningSearch; return this; } @@ -262,4 +262,3 @@ public DoubaoAppFeature.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeatureItem.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeatureItem.java index 9b0c40c..ea93c3d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeatureItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeatureItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public DoubaoAppFeatureItem() { } public DoubaoAppFeatureItem type(@javax.annotation.Nullable DoubaoAppFeatureMode type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nullable DoubaoAppFeatureMode type) { } public DoubaoAppFeatureItem roleDescription(@javax.annotation.Nullable String roleDescription) { - + this.roleDescription = roleDescription; return this; } @@ -188,4 +188,3 @@ public DoubaoAppFeatureItem.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeatureMode.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeatureMode.java index 461cccb..bdcf2dc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeatureMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppFeatureMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets DoubaoAppFeatureMode */ public enum DoubaoAppFeatureMode { - + ENABLED("enabled"), - + DISABLED("disabled"); private String value; @@ -55,4 +55,3 @@ public static DoubaoAppFeatureMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppSearchResult.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppSearchResult.java index cfe1dd3..57ee7da 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppSearchResult.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppSearchResult.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public DoubaoAppSearchResult() { } public DoubaoAppSearchResult textCard(@javax.annotation.Nonnull DoubaoAppSearchTextItem textCard) { - + this.textCard = textCard; return this; } @@ -151,4 +151,3 @@ public DoubaoAppSearchResult.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppSearchTextItem.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppSearchTextItem.java index 9d8bdc8..5c41240 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppSearchTextItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppSearchTextItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public DoubaoAppSearchTextItem() { } public DoubaoAppSearchTextItem title(@javax.annotation.Nonnull String title) { - + this.title = title; return this; } @@ -72,7 +72,7 @@ public void setTitle(@javax.annotation.Nonnull String title) { } public DoubaoAppSearchTextItem sitename(@javax.annotation.Nonnull String sitename) { - + this.sitename = sitename; return this; } @@ -97,7 +97,7 @@ public void setSitename(@javax.annotation.Nonnull String sitename) { } public DoubaoAppSearchTextItem url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -225,4 +225,3 @@ public DoubaoAppSearchTextItem.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppTool.java b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppTool.java index 6584117..ba5fe2b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppTool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/DoubaoAppTool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public DoubaoAppTool() { } public DoubaoAppTool type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull ToolType type) { } public DoubaoAppTool feature(@javax.annotation.Nonnull DoubaoAppFeature feature) { - + this.feature = feature; return this; } @@ -97,7 +97,7 @@ public void setFeature(@javax.annotation.Nonnull DoubaoAppFeature feature) { } public DoubaoAppTool userLocation(@javax.annotation.Nullable UserLocation userLocation) { - + this.userLocation = userLocation; return this; } @@ -225,4 +225,3 @@ public DoubaoAppTool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/Edit.java b/src/main/java/com/volcengine/ark/runtime/models/responses/Edit.java index fd29f99..08fb0de 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/Edit.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/Edit.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -29,4 +29,3 @@ public interface Edit { public EditType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/EditType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/EditType.java index 08e8b18..52b0860 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/EditType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/EditType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets EditType */ public enum EditType { - + CLEAR_THINKING("clear_thinking"), - + CLEAR_TOOL_USES("clear_tool_uses"); private String value; @@ -55,4 +55,3 @@ public static EditType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/FunctionTool.java b/src/main/java/com/volcengine/ark/runtime/models/responses/FunctionTool.java index e86c206..6b3dbed 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/FunctionTool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/FunctionTool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public FunctionTool() { } public FunctionTool name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -79,7 +79,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public FunctionTool parameters(@javax.annotation.Nullable Map parameters) { - + this.parameters = parameters; return this; } @@ -112,7 +112,7 @@ public void setParameters(@javax.annotation.Nullable Map paramet } public FunctionTool type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -137,7 +137,7 @@ public void setType(@javax.annotation.Nonnull ToolType type) { } public FunctionTool description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -272,4 +272,3 @@ public FunctionTool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/GetResponseRequest.java b/src/main/java/com/volcengine/ark/runtime/models/responses/GetResponseRequest.java index 4762b04..c1d6ab7 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/GetResponseRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/GetResponseRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public GetResponseRequest() { } public GetResponseRequest responseId(@javax.annotation.Nonnull String responseId) { - + this.responseId = responseId; return this; } @@ -69,7 +69,7 @@ public void setResponseId(@javax.annotation.Nonnull String responseId) { } public GetResponseRequest include(@javax.annotation.Nullable List include) { - + this.include = include; return this; } @@ -198,4 +198,3 @@ public GetResponseRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ImageDetail.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ImageDetail.java index 8165dee..33517e6 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ImageDetail.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ImageDetail.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets ImageDetail */ public enum ImageDetail { - + AUTO("auto"), - + HIGH("high"), - + LOW("low"), - + XHIGH("xhigh"); private String value; @@ -59,4 +59,3 @@ public static ImageDetail fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ImagePixelLimit.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ImagePixelLimit.java index 2d452f0..49ca0fd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ImagePixelLimit.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ImagePixelLimit.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ImagePixelLimit() { } public ImagePixelLimit maxPixels(@javax.annotation.Nullable Long maxPixels) { - + this.maxPixels = maxPixels; return this; } @@ -67,7 +67,7 @@ public void setMaxPixels(@javax.annotation.Nullable Long maxPixels) { } public ImagePixelLimit minPixels(@javax.annotation.Nullable Long minPixels) { - + this.minPixels = minPixels; return this; } @@ -188,4 +188,3 @@ public ImagePixelLimit.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ImageProcessOptions.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ImageProcessOptions.java index 1eff4a4..b513b0a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ImageProcessOptions.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ImageProcessOptions.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ImageProcessOptions() { } public ImageProcessOptions type(@javax.annotation.Nullable String type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public ImageProcessOptions.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ImageProcessTool.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ImageProcessTool.java index 35f9946..2e5d9c1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ImageProcessTool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ImageProcessTool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ImageProcessTool() { } public ImageProcessTool type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ToolType type) { } public ImageProcessTool point(@javax.annotation.Nullable ImageProcessOptions point) { - + this.point = point; return this; } @@ -107,7 +107,7 @@ public void setPoint(@javax.annotation.Nullable ImageProcessOptions point) { } public ImageProcessTool grounding(@javax.annotation.Nullable ImageProcessOptions grounding) { - + this.grounding = grounding; return this; } @@ -132,7 +132,7 @@ public void setGrounding(@javax.annotation.Nullable ImageProcessOptions groundin } public ImageProcessTool zoom(@javax.annotation.Nullable ImageProcessOptions zoom) { - + this.zoom = zoom; return this; } @@ -157,7 +157,7 @@ public void setZoom(@javax.annotation.Nullable ImageProcessOptions zoom) { } public ImageProcessTool rotate(@javax.annotation.Nullable ImageProcessOptions rotate) { - + this.rotate = rotate; return this; } @@ -299,4 +299,3 @@ public ImageProcessTool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/IncompleteDetails.java b/src/main/java/com/volcengine/ark/runtime/models/responses/IncompleteDetails.java index cd719f8..2b88c0f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/IncompleteDetails.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/IncompleteDetails.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public IncompleteDetails() { } public IncompleteDetails reason(@javax.annotation.Nonnull String reason) { - + this.reason = reason; return this; } @@ -67,7 +67,7 @@ public void setReason(@javax.annotation.Nonnull String reason) { } public IncompleteDetails contentFilter(@javax.annotation.Nullable ContentFilter contentFilter) { - + this.contentFilter = contentFilter; return this; } @@ -188,4 +188,3 @@ public IncompleteDetails.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/InputItem.java b/src/main/java/com/volcengine/ark/runtime/models/responses/InputItem.java index 93b477e..9a9e4ff 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/InputItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/InputItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -35,4 +35,3 @@ public interface InputItem { public ItemType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/InputTokensDetails.java b/src/main/java/com/volcengine/ark/runtime/models/responses/InputTokensDetails.java index 70e0faa..c0ea661 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/InputTokensDetails.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/InputTokensDetails.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public InputTokensDetails() { } public InputTokensDetails cachedTokens(@javax.annotation.Nonnull Long cachedTokens) { - + this.cachedTokens = cachedTokens; return this; } @@ -72,7 +72,7 @@ public void setCachedTokens(@javax.annotation.Nonnull Long cachedTokens) { } public InputTokensDetails audioTokens(@javax.annotation.Nullable Long audioTokens) { - + this.audioTokens = audioTokens; return this; } @@ -97,7 +97,7 @@ public void setAudioTokens(@javax.annotation.Nullable Long audioTokens) { } public InputTokensDetails audioCachedTokens(@javax.annotation.Nullable Long audioCachedTokens) { - + this.audioCachedTokens = audioCachedTokens; return this; } @@ -225,4 +225,3 @@ public InputTokensDetails.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemAgentToolCall.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemAgentToolCall.java index 5b07428..6b552e6 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemAgentToolCall.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemAgentToolCall.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ItemAgentToolCall() { } public ItemAgentToolCall type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemAgentToolCall id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -102,7 +102,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemAgentToolCall name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -127,7 +127,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public ItemAgentToolCall status(@javax.annotation.Nonnull ItemStatus status) { - + this.status = status; return this; } @@ -262,4 +262,3 @@ public ItemAgentToolCall.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemDoubaoAppCall.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemDoubaoAppCall.java index fda8df8..371cadf 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemDoubaoAppCall.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemDoubaoAppCall.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public ItemDoubaoAppCall() { } public ItemDoubaoAppCall type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -84,7 +84,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemDoubaoAppCall id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -109,7 +109,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemDoubaoAppCall feature(@javax.annotation.Nullable String feature) { - + this.feature = feature; return this; } @@ -134,7 +134,7 @@ public void setFeature(@javax.annotation.Nullable String feature) { } public ItemDoubaoAppCall blocks(@javax.annotation.Nullable List blocks) { - + this.blocks = blocks; return this; } @@ -167,7 +167,7 @@ public void setBlocks(@javax.annotation.Nullable List blocks } public ItemDoubaoAppCall status(@javax.annotation.Nullable ItemStatus status) { - + this.status = status; return this; } @@ -309,4 +309,3 @@ public ItemDoubaoAppCall.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemEasyMessage.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemEasyMessage.java index 71dbc5e..ea5f4a4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemEasyMessage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemEasyMessage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ItemEasyMessage() { } public ItemEasyMessage type(@javax.annotation.Nullable ItemType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nullable ItemType type) { } public ItemEasyMessage role(@javax.annotation.Nullable MessageRole role) { - + this.role = role; return this; } @@ -107,7 +107,7 @@ public void setRole(@javax.annotation.Nullable MessageRole role) { } public ItemEasyMessage content(@javax.annotation.Nonnull MessageContent content) { - + this.content = content; return this; } @@ -132,7 +132,7 @@ public void setContent(@javax.annotation.Nonnull MessageContent content) { } public ItemEasyMessage id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -157,7 +157,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemEasyMessage partial(@javax.annotation.Nullable Boolean partial) { - + this.partial = partial; return this; } @@ -299,4 +299,3 @@ public ItemEasyMessage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionImageProcess.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionImageProcess.java index 335b098..80f27c8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionImageProcess.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionImageProcess.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -64,7 +64,7 @@ public ItemFunctionImageProcess() { } public ItemFunctionImageProcess type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -89,7 +89,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemFunctionImageProcess action(@javax.annotation.Nullable ResponseImageProcessAction action) { - + this.action = action; return this; } @@ -114,7 +114,7 @@ public void setAction(@javax.annotation.Nullable ResponseImageProcessAction acti } public ItemFunctionImageProcess arguments(@javax.annotation.Nullable Map arguments) { - + this.arguments = arguments; return this; } @@ -147,7 +147,7 @@ public void setArguments(@javax.annotation.Nullable Map argument } public ItemFunctionImageProcess status(@javax.annotation.Nonnull ItemStatus status) { - + this.status = status; return this; } @@ -172,7 +172,7 @@ public void setStatus(@javax.annotation.Nonnull ItemStatus status) { } public ItemFunctionImageProcess id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -197,7 +197,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public ItemFunctionImageProcess error(@javax.annotation.Nullable ResponseImageProcessError error) { - + this.error = error; return this; } @@ -346,4 +346,3 @@ public ItemFunctionImageProcess.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionKnowledgeSearch.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionKnowledgeSearch.java index 07ad1aa..2634ea3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionKnowledgeSearch.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionKnowledgeSearch.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public ItemFunctionKnowledgeSearch() { } public ItemFunctionKnowledgeSearch type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -84,7 +84,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemFunctionKnowledgeSearch queries(@javax.annotation.Nonnull List queries) { - + this.queries = queries; return this; } @@ -117,7 +117,7 @@ public void setQueries(@javax.annotation.Nonnull List queries) { } public ItemFunctionKnowledgeSearch knowledgeResourceId(@javax.annotation.Nonnull String knowledgeResourceId) { - + this.knowledgeResourceId = knowledgeResourceId; return this; } @@ -142,7 +142,7 @@ public void setKnowledgeResourceId(@javax.annotation.Nonnull String knowledgeRes } public ItemFunctionKnowledgeSearch status(@javax.annotation.Nonnull ItemStatus status) { - + this.status = status; return this; } @@ -167,7 +167,7 @@ public void setStatus(@javax.annotation.Nonnull ItemStatus status) { } public ItemFunctionKnowledgeSearch id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -309,4 +309,3 @@ public ItemFunctionKnowledgeSearch.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpApprovalRequest.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpApprovalRequest.java index 545448d..3f3a33b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpApprovalRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpApprovalRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ItemFunctionMcpApprovalRequest() { } public ItemFunctionMcpApprovalRequest type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemFunctionMcpApprovalRequest serverLabel(@javax.annotation.Nonnull String serverLabel) { - + this.serverLabel = serverLabel; return this; } @@ -107,7 +107,7 @@ public void setServerLabel(@javax.annotation.Nonnull String serverLabel) { } public ItemFunctionMcpApprovalRequest arguments(@javax.annotation.Nonnull String arguments) { - + this.arguments = arguments; return this; } @@ -132,7 +132,7 @@ public void setArguments(@javax.annotation.Nonnull String arguments) { } public ItemFunctionMcpApprovalRequest name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -157,7 +157,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public ItemFunctionMcpApprovalRequest id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -299,4 +299,3 @@ public ItemFunctionMcpApprovalRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpApprovalResponse.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpApprovalResponse.java index 9e493d1..bc3af30 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpApprovalResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpApprovalResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ItemFunctionMcpApprovalResponse() { } public ItemFunctionMcpApprovalResponse id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -82,7 +82,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemFunctionMcpApprovalResponse approvalRequestId(@javax.annotation.Nonnull String approvalRequestId) { - + this.approvalRequestId = approvalRequestId; return this; } @@ -107,7 +107,7 @@ public void setApprovalRequestId(@javax.annotation.Nonnull String approvalReques } public ItemFunctionMcpApprovalResponse approve(@javax.annotation.Nonnull Boolean approve) { - + this.approve = approve; return this; } @@ -132,7 +132,7 @@ public void setApprove(@javax.annotation.Nonnull Boolean approve) { } public ItemFunctionMcpApprovalResponse type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -157,7 +157,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemFunctionMcpApprovalResponse reason(@javax.annotation.Nullable String reason) { - + this.reason = reason; return this; } @@ -299,4 +299,3 @@ public ItemFunctionMcpApprovalResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpCall.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpCall.java index 428dd3e..c08e075 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpCall.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpCall.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -67,7 +67,7 @@ public ItemFunctionMcpCall() { } public ItemFunctionMcpCall type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -92,7 +92,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemFunctionMcpCall serverLabel(@javax.annotation.Nonnull String serverLabel) { - + this.serverLabel = serverLabel; return this; } @@ -117,7 +117,7 @@ public void setServerLabel(@javax.annotation.Nonnull String serverLabel) { } public ItemFunctionMcpCall arguments(@javax.annotation.Nullable String arguments) { - + this.arguments = arguments; return this; } @@ -142,7 +142,7 @@ public void setArguments(@javax.annotation.Nullable String arguments) { } public ItemFunctionMcpCall name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -167,7 +167,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public ItemFunctionMcpCall id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -192,7 +192,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemFunctionMcpCall error(@javax.annotation.Nullable String error) { - + this.error = error; return this; } @@ -217,7 +217,7 @@ public void setError(@javax.annotation.Nullable String error) { } public ItemFunctionMcpCall output(@javax.annotation.Nullable String output) { - + this.output = output; return this; } @@ -373,4 +373,3 @@ public ItemFunctionMcpCall.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpListTools.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpListTools.java index d91e0b3..35bef16 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpListTools.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionMcpListTools.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public ItemFunctionMcpListTools() { } public ItemFunctionMcpListTools type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -84,7 +84,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemFunctionMcpListTools serverLabel(@javax.annotation.Nonnull String serverLabel) { - + this.serverLabel = serverLabel; return this; } @@ -109,7 +109,7 @@ public void setServerLabel(@javax.annotation.Nonnull String serverLabel) { } public ItemFunctionMcpListTools tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -142,7 +142,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public ItemFunctionMcpListTools id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -167,7 +167,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemFunctionMcpListTools error(@javax.annotation.Nullable String error) { - + this.error = error; return this; } @@ -309,4 +309,3 @@ public ItemFunctionMcpListTools.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionToolCall.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionToolCall.java index 6e3fbb8..c29f45a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionToolCall.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionToolCall.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ItemFunctionToolCall() { } public ItemFunctionToolCall id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -87,7 +87,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemFunctionToolCall type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -112,7 +112,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemFunctionToolCall arguments(@javax.annotation.Nullable String arguments) { - + this.arguments = arguments; return this; } @@ -137,7 +137,7 @@ public void setArguments(@javax.annotation.Nullable String arguments) { } public ItemFunctionToolCall callId(@javax.annotation.Nullable String callId) { - + this.callId = callId; return this; } @@ -162,7 +162,7 @@ public void setCallId(@javax.annotation.Nullable String callId) { } public ItemFunctionToolCall name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -187,7 +187,7 @@ public void setName(@javax.annotation.Nullable String name) { } public ItemFunctionToolCall status(@javax.annotation.Nullable ItemStatus status) { - + this.status = status; return this; } @@ -336,4 +336,3 @@ public ItemFunctionToolCall.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionToolCallOutput.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionToolCallOutput.java index 9982e1f..a84a54d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionToolCallOutput.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionToolCallOutput.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ItemFunctionToolCallOutput() { } public ItemFunctionToolCallOutput type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemFunctionToolCallOutput callId(@javax.annotation.Nullable String callId) { - + this.callId = callId; return this; } @@ -107,7 +107,7 @@ public void setCallId(@javax.annotation.Nullable String callId) { } public ItemFunctionToolCallOutput output(@javax.annotation.Nullable MessageContent output) { - + this.output = output; return this; } @@ -132,7 +132,7 @@ public void setOutput(@javax.annotation.Nullable MessageContent output) { } public ItemFunctionToolCallOutput id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -157,7 +157,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemFunctionToolCallOutput status(@javax.annotation.Nullable ItemStatus status) { - + this.status = status; return this; } @@ -299,4 +299,3 @@ public ItemFunctionToolCallOutput.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionWebSearch.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionWebSearch.java index a6e6759..d412789 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionWebSearch.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemFunctionWebSearch.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ItemFunctionWebSearch() { } public ItemFunctionWebSearch type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemFunctionWebSearch action(@javax.annotation.Nullable WebSearchAction action) { - + this.action = action; return this; } @@ -102,7 +102,7 @@ public void setAction(@javax.annotation.Nullable WebSearchAction action) { } public ItemFunctionWebSearch status(@javax.annotation.Nonnull ItemStatus status) { - + this.status = status; return this; } @@ -127,7 +127,7 @@ public void setStatus(@javax.annotation.Nonnull ItemStatus status) { } public ItemFunctionWebSearch id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -262,4 +262,3 @@ public ItemFunctionWebSearch.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemInputMessage.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemInputMessage.java index a9438bf..649cfa1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemInputMessage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemInputMessage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -99,7 +99,7 @@ public ItemInputMessage() { } public ItemInputMessage type(@javax.annotation.Nullable TypeEnum type) { - + this.type = type; return this; } @@ -124,7 +124,7 @@ public void setType(@javax.annotation.Nullable TypeEnum type) { } public ItemInputMessage role(@javax.annotation.Nonnull MessageRole role) { - + this.role = role; return this; } @@ -149,7 +149,7 @@ public void setRole(@javax.annotation.Nonnull MessageRole role) { } public ItemInputMessage content(@javax.annotation.Nonnull List content) { - + this.content = content; return this; } @@ -182,7 +182,7 @@ public void setContent(@javax.annotation.Nonnull List content) { } public ItemInputMessage status(@javax.annotation.Nullable ItemStatus status) { - + this.status = status; return this; } @@ -207,7 +207,7 @@ public void setStatus(@javax.annotation.Nullable ItemStatus status) { } public ItemInputMessage id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -232,7 +232,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemInputMessage partial(@javax.annotation.Nullable Boolean partial) { - + this.partial = partial; return this; } @@ -381,4 +381,3 @@ public ItemInputMessage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemOutputMessage.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemOutputMessage.java index ae8b43e..2c34fa0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemOutputMessage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemOutputMessage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -99,7 +99,7 @@ public ItemOutputMessage() { } public ItemOutputMessage type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -124,7 +124,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemOutputMessage role(@javax.annotation.Nonnull RoleEnum role) { - + this.role = role; return this; } @@ -149,7 +149,7 @@ public void setRole(@javax.annotation.Nonnull RoleEnum role) { } public ItemOutputMessage content(@javax.annotation.Nullable List content) { - + this.content = content; return this; } @@ -182,7 +182,7 @@ public void setContent(@javax.annotation.Nullable List conten } public ItemOutputMessage status(@javax.annotation.Nonnull ItemStatus status) { - + this.status = status; return this; } @@ -207,7 +207,7 @@ public void setStatus(@javax.annotation.Nonnull ItemStatus status) { } public ItemOutputMessage id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -232,7 +232,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public ItemOutputMessage partial(@javax.annotation.Nullable Boolean partial) { - + this.partial = partial; return this; } @@ -381,4 +381,3 @@ public ItemOutputMessage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemReasoning.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemReasoning.java index 3e3dfa5..fedd98a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemReasoning.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemReasoning.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -64,7 +64,7 @@ public ItemReasoning() { } public ItemReasoning id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -89,7 +89,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemReasoning type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -114,7 +114,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemReasoning status(@javax.annotation.Nonnull ItemStatus status) { - + this.status = status; return this; } @@ -139,7 +139,7 @@ public void setStatus(@javax.annotation.Nonnull ItemStatus status) { } public ItemReasoning summary(@javax.annotation.Nullable List summary) { - + this.summary = summary; return this; } @@ -172,7 +172,7 @@ public void setSummary(@javax.annotation.Nullable List sum } public ItemReasoning content(@javax.annotation.Nullable List content) { - + this.content = content; return this; } @@ -205,7 +205,7 @@ public void setContent(@javax.annotation.Nullable List conten } public ItemReasoning encryptedContent(@javax.annotation.Nullable String encryptedContent) { - + this.encryptedContent = encryptedContent; return this; } @@ -354,4 +354,3 @@ public ItemReasoning.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemReference.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemReference.java index b79175e..54fea82 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemReference.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemReference.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public ItemReference() { } public ItemReference id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -102,7 +102,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemReference type(@javax.annotation.Nullable TypeEnum type) { - + this.type = type; return this; } @@ -223,4 +223,3 @@ public ItemReference.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemStatus.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemStatus.java index b615825..b2cee78 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemStatus.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemStatus.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,15 +24,15 @@ * Gets or Sets ItemStatus */ public enum ItemStatus { - + IN_PROGRESS("in_progress"), - + COMPLETED("completed"), - + INCOMPLETE("incomplete"), - + SEARCHING("searching"), - + FAILED("failed"); private String value; @@ -61,4 +61,3 @@ public static ItemStatus fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemTranscription.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemTranscription.java index 5e9d3a1..a8cd95d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemTranscription.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemTranscription.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public ItemTranscription() { } public ItemTranscription id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -79,7 +79,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ItemTranscription type(@javax.annotation.Nonnull ItemType type) { - + this.type = type; return this; } @@ -104,7 +104,7 @@ public void setType(@javax.annotation.Nonnull ItemType type) { } public ItemTranscription transcription(@javax.annotation.Nullable List transcription) { - + this.transcription = transcription; return this; } @@ -137,7 +137,7 @@ public void setTranscription(@javax.annotation.Nullable List } public ItemTranscription status(@javax.annotation.Nonnull ItemStatus status) { - + this.status = status; return this; } @@ -272,4 +272,3 @@ public ItemTranscription.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemType.java index 9eaf878..0f4cdfe 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ItemType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ItemType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,33 +24,33 @@ * Gets or Sets ItemType */ public enum ItemType { - + AGENT_TOOL_CALL("agent_tool_call"), - + DOUBAO_APP_CALL("doubao_app_call"), - + FUNCTION_CALL("function_call"), - + FUNCTION_CALL_OUTPUT("function_call_output"), - + IMAGE_PROCESS("image_process"), - + KNOWLEDGE_SEARCH_CALL("knowledge_search_call"), - + MCP_APPROVAL_REQUEST("mcp_approval_request"), - + MCP_APPROVAL_RESPONSE("mcp_approval_response"), - + MCP_CALL("mcp_call"), - + MCP_LIST_TOOLS("mcp_list_tools"), - + MESSAGE("message"), - + REASONING("reasoning"), - + TRANSCRIPTION("transcription"), - + WEB_SEARCH_CALL("web_search_call"); private String value; @@ -79,4 +79,3 @@ public static ItemType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/KnowledgeSearchTool.java b/src/main/java/com/volcengine/ark/runtime/models/responses/KnowledgeSearchTool.java index 82f31fb..83a7ae2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/KnowledgeSearchTool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/KnowledgeSearchTool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -74,7 +74,7 @@ public KnowledgeSearchTool() { } public KnowledgeSearchTool type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -99,7 +99,7 @@ public void setType(@javax.annotation.Nonnull ToolType type) { } public KnowledgeSearchTool knowledgeResourceId(@javax.annotation.Nonnull String knowledgeResourceId) { - + this.knowledgeResourceId = knowledgeResourceId; return this; } @@ -124,7 +124,7 @@ public void setKnowledgeResourceId(@javax.annotation.Nonnull String knowledgeRes } public KnowledgeSearchTool description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -149,7 +149,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public KnowledgeSearchTool limit(@javax.annotation.Nullable Long limit) { - + this.limit = limit; return this; } @@ -174,7 +174,7 @@ public void setLimit(@javax.annotation.Nullable Long limit) { } public KnowledgeSearchTool denseWeight(@javax.annotation.Nullable Double denseWeight) { - + this.denseWeight = denseWeight; return this; } @@ -199,7 +199,7 @@ public void setDenseWeight(@javax.annotation.Nullable Double denseWeight) { } public KnowledgeSearchTool docFilter(@javax.annotation.Nullable Map docFilter) { - + this.docFilter = docFilter; return this; } @@ -232,7 +232,7 @@ public void setDocFilter(@javax.annotation.Nullable Map docFilte } public KnowledgeSearchTool rankingOptions(@javax.annotation.Nullable Map rankingOptions) { - + this.rankingOptions = rankingOptions; return this; } @@ -265,7 +265,7 @@ public void setRankingOptions(@javax.annotation.Nullable Map ran } public KnowledgeSearchTool maxKeyword(@javax.annotation.Nullable Long maxKeyword) { - + this.maxKeyword = maxKeyword; return this; } @@ -428,4 +428,3 @@ public KnowledgeSearchTool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ListInputItemsRequest.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ListInputItemsRequest.java index 3344e09..976e2a4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ListInputItemsRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ListInputItemsRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -64,7 +64,7 @@ public ListInputItemsRequest() { } public ListInputItemsRequest responseId(@javax.annotation.Nonnull String responseId) { - + this.responseId = responseId; return this; } @@ -89,7 +89,7 @@ public void setResponseId(@javax.annotation.Nonnull String responseId) { } public ListInputItemsRequest after(@javax.annotation.Nullable String after) { - + this.after = after; return this; } @@ -114,7 +114,7 @@ public void setAfter(@javax.annotation.Nullable String after) { } public ListInputItemsRequest before(@javax.annotation.Nullable String before) { - + this.before = before; return this; } @@ -139,7 +139,7 @@ public void setBefore(@javax.annotation.Nullable String before) { } public ListInputItemsRequest limit(@javax.annotation.Nullable Integer limit) { - + this.limit = limit; return this; } @@ -164,7 +164,7 @@ public void setLimit(@javax.annotation.Nullable Integer limit) { } public ListInputItemsRequest order(@javax.annotation.Nullable Order order) { - + this.order = order; return this; } @@ -189,7 +189,7 @@ public void setOrder(@javax.annotation.Nullable Order order) { } public ListInputItemsRequest include(@javax.annotation.Nullable List include) { - + this.include = include; return this; } @@ -346,4 +346,3 @@ public ListInputItemsRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ListInputItemsResponse.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ListInputItemsResponse.java index 32de9c1..5cf82a5 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ListInputItemsResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ListInputItemsResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -94,7 +94,7 @@ public ListInputItemsResponse() { } public ListInputItemsResponse _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -119,7 +119,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public ListInputItemsResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -152,7 +152,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public ListInputItemsResponse firstId(@javax.annotation.Nonnull String firstId) { - + this.firstId = firstId; return this; } @@ -177,7 +177,7 @@ public void setFirstId(@javax.annotation.Nonnull String firstId) { } public ListInputItemsResponse lastId(@javax.annotation.Nonnull String lastId) { - + this.lastId = lastId; return this; } @@ -202,7 +202,7 @@ public void setLastId(@javax.annotation.Nonnull String lastId) { } public ListInputItemsResponse hasMore(@javax.annotation.Nullable Boolean hasMore) { - + this.hasMore = hasMore; return this; } @@ -344,4 +344,3 @@ public ListInputItemsResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/McpAllowedTools.java b/src/main/java/com/volcengine/ark/runtime/models/responses/McpAllowedTools.java index f0c0cb2..da0dc7d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/McpAllowedTools.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/McpAllowedTools.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/McpAllowedToolsFilter.java b/src/main/java/com/volcengine/ark/runtime/models/responses/McpAllowedToolsFilter.java index d7b14e9..25ce6ce 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/McpAllowedToolsFilter.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/McpAllowedToolsFilter.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public McpAllowedToolsFilter() { } public McpAllowedToolsFilter toolNames(@javax.annotation.Nonnull List toolNames) { - + this.toolNames = toolNames; return this; } @@ -161,4 +161,3 @@ public McpAllowedToolsFilter.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/McpApprovalMode.java b/src/main/java/com/volcengine/ark/runtime/models/responses/McpApprovalMode.java index 7e425a4..b39fc1d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/McpApprovalMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/McpApprovalMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets McpApprovalMode */ public enum McpApprovalMode { - + ALWAYS("always"), - + NEVER("never"); private String value; @@ -55,4 +55,3 @@ public static McpApprovalMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/McpListToolsTool.java b/src/main/java/com/volcengine/ark/runtime/models/responses/McpListToolsTool.java index 93ddcf8..86cdb81 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/McpListToolsTool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/McpListToolsTool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public McpListToolsTool() { } public McpListToolsTool name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -79,7 +79,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public McpListToolsTool description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -104,7 +104,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public McpListToolsTool inputSchema(@javax.annotation.Nullable Map inputSchema) { - + this.inputSchema = inputSchema; return this; } @@ -137,7 +137,7 @@ public void setInputSchema(@javax.annotation.Nullable Map inputS } public McpListToolsTool annotations(@javax.annotation.Nullable Map annotations) { - + this.annotations = annotations; return this; } @@ -280,4 +280,3 @@ public McpListToolsTool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/McpRequireApproval.java b/src/main/java/com/volcengine/ark/runtime/models/responses/McpRequireApproval.java index 29ae5c6..7d0898e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/McpRequireApproval.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/McpRequireApproval.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/McpTool.java b/src/main/java/com/volcengine/ark/runtime/models/responses/McpTool.java index 331aaaa..cbcc38c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/McpTool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/McpTool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -69,7 +69,7 @@ public McpTool() { } public McpTool type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -94,7 +94,7 @@ public void setType(@javax.annotation.Nonnull ToolType type) { } public McpTool serverLabel(@javax.annotation.Nonnull String serverLabel) { - + this.serverLabel = serverLabel; return this; } @@ -119,7 +119,7 @@ public void setServerLabel(@javax.annotation.Nonnull String serverLabel) { } public McpTool serverUrl(@javax.annotation.Nonnull String serverUrl) { - + this.serverUrl = serverUrl; return this; } @@ -144,7 +144,7 @@ public void setServerUrl(@javax.annotation.Nonnull String serverUrl) { } public McpTool allowedTools(@javax.annotation.Nullable McpAllowedTools allowedTools) { - + this.allowedTools = allowedTools; return this; } @@ -169,7 +169,7 @@ public void setAllowedTools(@javax.annotation.Nullable McpAllowedTools allowedTo } public McpTool headers(@javax.annotation.Nullable Map headers) { - + this.headers = headers; return this; } @@ -202,7 +202,7 @@ public void setHeaders(@javax.annotation.Nullable Map headers) { } public McpTool requireApproval(@javax.annotation.Nullable McpRequireApproval requireApproval) { - + this.requireApproval = requireApproval; return this; } @@ -227,7 +227,7 @@ public void setRequireApproval(@javax.annotation.Nullable McpRequireApproval req } public McpTool serverDescription(@javax.annotation.Nullable String serverDescription) { - + this.serverDescription = serverDescription; return this; } @@ -383,4 +383,3 @@ public McpTool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilter.java b/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilter.java index 781da84..2ac96ab 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilter.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilter.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public McpToolApprovalFilter() { } public McpToolApprovalFilter always(@javax.annotation.Nullable McpToolApprovalFilterAlways always) { - + this.always = always; return this; } @@ -67,7 +67,7 @@ public void setAlways(@javax.annotation.Nullable McpToolApprovalFilterAlways alw } public McpToolApprovalFilter never(@javax.annotation.Nullable McpToolApprovalFilterNever never) { - + this.never = never; return this; } @@ -188,4 +188,3 @@ public McpToolApprovalFilter.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilterAlways.java b/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilterAlways.java index 64cda15..ba86c1f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilterAlways.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilterAlways.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public McpToolApprovalFilterAlways() { } public McpToolApprovalFilterAlways toolNames(@javax.annotation.Nonnull List toolNames) { - + this.toolNames = toolNames; return this; } @@ -161,4 +161,3 @@ public McpToolApprovalFilterAlways.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilterNever.java b/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilterNever.java index 762212d..e407e42 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilterNever.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/McpToolApprovalFilterNever.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public McpToolApprovalFilterNever() { } public McpToolApprovalFilterNever toolNames(@javax.annotation.Nonnull List toolNames) { - + this.toolNames = toolNames; return this; } @@ -161,4 +161,3 @@ public McpToolApprovalFilterNever.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/MessageContent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/MessageContent.java index 6a6aed9..fd4164f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/MessageContent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/MessageContent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/MessageRole.java b/src/main/java/com/volcengine/ark/runtime/models/responses/MessageRole.java index 50c2849..f15f09f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/MessageRole.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/MessageRole.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets MessageRole */ public enum MessageRole { - + USER("user"), - + SYSTEM("system"), - + DEVELOPER("developer"), - + ASSISTANT("assistant"); private String value; @@ -59,4 +59,3 @@ public static MessageRole fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/Order.java b/src/main/java/com/volcengine/ark/runtime/models/responses/Order.java index e676f92..7509b68 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/Order.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/Order.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Sort order for list endpoints. */ public enum Order { - + ASC("asc"), - + DESC("desc"); private String value; @@ -55,4 +55,3 @@ public static Order fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItem.java b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItem.java index 3764e46..03e8430 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -29,4 +29,3 @@ public interface OutputContentItem { public ContentItemType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItemReasoningText.java b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItemReasoningText.java index e4849f6..632939f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItemReasoningText.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItemReasoningText.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public OutputContentItemReasoningText() { } public OutputContentItemReasoningText type(@javax.annotation.Nonnull ContentItemType type) { - + this.type = type; return this; } @@ -74,7 +74,7 @@ public void setType(@javax.annotation.Nonnull ContentItemType type) { } public OutputContentItemReasoningText text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -99,7 +99,7 @@ public void setText(@javax.annotation.Nullable String text) { } public OutputContentItemReasoningText annotations(@javax.annotation.Nullable List annotations) { - + this.annotations = annotations; return this; } @@ -235,4 +235,3 @@ public OutputContentItemReasoningText.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItemText.java b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItemText.java index 56f6e5f..e60f169 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItemText.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputContentItemText.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public OutputContentItemText() { } public OutputContentItemText type(@javax.annotation.Nonnull ContentItemType type) { - + this.type = type; return this; } @@ -74,7 +74,7 @@ public void setType(@javax.annotation.Nonnull ContentItemType type) { } public OutputContentItemText text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -99,7 +99,7 @@ public void setText(@javax.annotation.Nullable String text) { } public OutputContentItemText annotations(@javax.annotation.Nullable List annotations) { - + this.annotations = annotations; return this; } @@ -235,4 +235,3 @@ public OutputContentItemText.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputItem.java b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputItem.java index 0f6e40d..671d06b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,4 +39,3 @@ public interface OutputItem { public ItemType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputTokensDetails.java b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputTokensDetails.java index 9b51cb3..3c1c36f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/OutputTokensDetails.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/OutputTokensDetails.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public OutputTokensDetails() { } public OutputTokensDetails reasoningTokens(@javax.annotation.Nonnull Long reasoningTokens) { - + this.reasoningTokens = reasoningTokens; return this; } @@ -151,4 +151,3 @@ public OutputTokensDetails.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/Reasoning.java b/src/main/java/com/volcengine/ark/runtime/models/responses/Reasoning.java index f2cfab2..9f72e3f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/Reasoning.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/Reasoning.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public Reasoning() { } public Reasoning effort(@javax.annotation.Nullable ReasoningEffort effort) { - + this.effort = effort; return this; } @@ -151,4 +151,3 @@ public Reasoning.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ReasoningEffort.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ReasoningEffort.java index fd1ab9d..5917d13 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ReasoningEffort.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ReasoningEffort.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,15 +24,15 @@ * Gets or Sets ReasoningEffort */ public enum ReasoningEffort { - + MINIMAL("minimal"), - + LOW("low"), - + MEDIUM("medium"), - + HIGH("high"), - + MAX("max"); private String value; @@ -61,4 +61,3 @@ public static ReasoningEffort fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ReasoningSummaryPart.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ReasoningSummaryPart.java index 74aa3ff..4193dd6 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ReasoningSummaryPart.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ReasoningSummaryPart.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public ReasoningSummaryPart() { } public ReasoningSummaryPart type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public ReasoningSummaryPart text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -223,4 +223,3 @@ public ReasoningSummaryPart.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/Response.java b/src/main/java/com/volcengine/ark/runtime/models/responses/Response.java index 0e47c86..4033f25 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/Response.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/Response.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -214,7 +214,7 @@ public Response() { } public Response createdAt(@javax.annotation.Nonnull Long createdAt) { - + this.createdAt = createdAt; return this; } @@ -239,7 +239,7 @@ public void setCreatedAt(@javax.annotation.Nonnull Long createdAt) { } public Response error(@javax.annotation.Nullable ResponseError error) { - + this.error = error; return this; } @@ -264,7 +264,7 @@ public void setError(@javax.annotation.Nullable ResponseError error) { } public Response id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -289,7 +289,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public Response incompleteDetails(@javax.annotation.Nullable IncompleteDetails incompleteDetails) { - + this.incompleteDetails = incompleteDetails; return this; } @@ -314,7 +314,7 @@ public void setIncompleteDetails(@javax.annotation.Nullable IncompleteDetails in } public Response maxOutputTokens(@javax.annotation.Nullable Long maxOutputTokens) { - + this.maxOutputTokens = maxOutputTokens; return this; } @@ -339,7 +339,7 @@ public void setMaxOutputTokens(@javax.annotation.Nullable Long maxOutputTokens) } public Response model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -364,7 +364,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public Response _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -389,7 +389,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public Response output(@javax.annotation.Nullable List output) { - + this.output = output; return this; } @@ -422,7 +422,7 @@ public void setOutput(@javax.annotation.Nullable List output) { } public Response previousResponseId(@javax.annotation.Nullable String previousResponseId) { - + this.previousResponseId = previousResponseId; return this; } @@ -447,7 +447,7 @@ public void setPreviousResponseId(@javax.annotation.Nullable String previousResp } public Response thinking(@javax.annotation.Nullable Thinking thinking) { - + this.thinking = thinking; return this; } @@ -472,7 +472,7 @@ public void setThinking(@javax.annotation.Nullable Thinking thinking) { } public Response serviceTier(@javax.annotation.Nullable ServiceTier serviceTier) { - + this.serviceTier = serviceTier; return this; } @@ -497,7 +497,7 @@ public void setServiceTier(@javax.annotation.Nullable ServiceTier serviceTier) { } public Response status(@javax.annotation.Nullable ResponseStatus status) { - + this.status = status; return this; } @@ -522,7 +522,7 @@ public void setStatus(@javax.annotation.Nullable ResponseStatus status) { } public Response temperature(@javax.annotation.Nullable Double temperature) { - + this.temperature = temperature; return this; } @@ -547,7 +547,7 @@ public void setTemperature(@javax.annotation.Nullable Double temperature) { } public Response tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -580,7 +580,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public Response topP(@javax.annotation.Nullable Double topP) { - + this.topP = topP; return this; } @@ -605,7 +605,7 @@ public void setTopP(@javax.annotation.Nullable Double topP) { } public Response usage(@javax.annotation.Nullable ResponseUsage usage) { - + this.usage = usage; return this; } @@ -630,7 +630,7 @@ public void setUsage(@javax.annotation.Nullable ResponseUsage usage) { } public Response caching(@javax.annotation.Nullable ResponseCaching caching) { - + this.caching = caching; return this; } @@ -655,7 +655,7 @@ public void setCaching(@javax.annotation.Nullable ResponseCaching caching) { } public Response text(@javax.annotation.Nullable ResponseTextConfig text) { - + this.text = text; return this; } @@ -680,7 +680,7 @@ public void setText(@javax.annotation.Nullable ResponseTextConfig text) { } public Response instructions(@javax.annotation.Nullable String instructions) { - + this.instructions = instructions; return this; } @@ -705,7 +705,7 @@ public void setInstructions(@javax.annotation.Nullable String instructions) { } public Response store(@javax.annotation.Nullable Boolean store) { - + this.store = store; return this; } @@ -730,7 +730,7 @@ public void setStore(@javax.annotation.Nullable Boolean store) { } public Response expireAt(@javax.annotation.Nullable Long expireAt) { - + this.expireAt = expireAt; return this; } @@ -755,7 +755,7 @@ public void setExpireAt(@javax.annotation.Nullable Long expireAt) { } public Response toolChoice(@javax.annotation.Nullable ToolChoice toolChoice) { - + this.toolChoice = toolChoice; return this; } @@ -780,7 +780,7 @@ public void setToolChoice(@javax.annotation.Nullable ToolChoice toolChoice) { } public Response parallelToolCalls(@javax.annotation.Nullable Boolean parallelToolCalls) { - + this.parallelToolCalls = parallelToolCalls; return this; } @@ -805,7 +805,7 @@ public void setParallelToolCalls(@javax.annotation.Nullable Boolean parallelTool } public Response maxToolCalls(@javax.annotation.Nullable Long maxToolCalls) { - + this.maxToolCalls = maxToolCalls; return this; } @@ -830,7 +830,7 @@ public void setMaxToolCalls(@javax.annotation.Nullable Long maxToolCalls) { } public Response reasoning(@javax.annotation.Nullable Reasoning reasoning) { - + this.reasoning = reasoning; return this; } @@ -855,7 +855,7 @@ public void setReasoning(@javax.annotation.Nullable Reasoning reasoning) { } public Response contextManagement(@javax.annotation.Nullable ContextManagementResponse contextManagement) { - + this.contextManagement = contextManagement; return this; } @@ -880,7 +880,7 @@ public void setContextManagement(@javax.annotation.Nullable ContextManagementRes } public Response session(@javax.annotation.Nullable Session session) { - + this.session = session; return this; } @@ -905,7 +905,7 @@ public void setSession(@javax.annotation.Nullable Session session) { } public Response safetyIdentifier(@javax.annotation.Nullable String safetyIdentifier) { - + this.safetyIdentifier = safetyIdentifier; return this; } @@ -930,7 +930,7 @@ public void setSafetyIdentifier(@javax.annotation.Nullable String safetyIdentifi } public Response promptCacheKey(@javax.annotation.Nullable String promptCacheKey) { - + this.promptCacheKey = promptCacheKey; return this; } @@ -1240,4 +1240,3 @@ public Response.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseAgentToolCallCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseAgentToolCallCompletedEvent.java index e9d17d9..cd140c0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseAgentToolCallCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseAgentToolCallCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseAgentToolCallCompletedEvent() { } public ResponseAgentToolCallCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseAgentToolCallCompletedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -107,7 +107,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseAgentToolCallCompletedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -132,7 +132,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseAgentToolCallCompletedEvent name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -157,7 +157,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public ResponseAgentToolCallCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseAgentToolCallCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseAgentToolCallInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseAgentToolCallInProgressEvent.java index 9f356ea..a1d073c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseAgentToolCallInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseAgentToolCallInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseAgentToolCallInProgressEvent() { } public ResponseAgentToolCallInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseAgentToolCallInProgressEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -107,7 +107,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseAgentToolCallInProgressEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -132,7 +132,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseAgentToolCallInProgressEvent name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -157,7 +157,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public ResponseAgentToolCallInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseAgentToolCallInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCaching.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCaching.java index ee65f85..ea18aab 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCaching.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCaching.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ResponseCaching() { } public ResponseCaching type(@javax.annotation.Nullable CacheMode type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nullable CacheMode type) { } public ResponseCaching prefix(@javax.annotation.Nullable Boolean prefix) { - + this.prefix = prefix; return this; } @@ -188,4 +188,3 @@ public ResponseCaching.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCompletedEvent.java index 816cc1d..fc58e29 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ResponseCompletedEvent() { } public ResponseCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseCompletedEvent response(@javax.annotation.Nonnull Response response) { - + this.response = response; return this; } @@ -97,7 +97,7 @@ public void setResponse(@javax.annotation.Nonnull Response response) { } public ResponseCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -225,4 +225,3 @@ public ResponseCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseContentPartAddedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseContentPartAddedEvent.java index 95efe2f..6741f7e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseContentPartAddedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseContentPartAddedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseContentPartAddedEvent() { } public ResponseContentPartAddedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseContentPartAddedEvent contentIndex(@javax.annotation.Nonnull Long contentIndex) { - + this.contentIndex = contentIndex; return this; } @@ -112,7 +112,7 @@ public void setContentIndex(@javax.annotation.Nonnull Long contentIndex) { } public ResponseContentPartAddedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -137,7 +137,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseContentPartAddedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -162,7 +162,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseContentPartAddedEvent part(@javax.annotation.Nonnull OutputContentItem part) { - + this.part = part; return this; } @@ -187,7 +187,7 @@ public void setPart(@javax.annotation.Nonnull OutputContentItem part) { } public ResponseContentPartAddedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseContentPartAddedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseContentPartDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseContentPartDoneEvent.java index 5c8879b..61aaca5 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseContentPartDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseContentPartDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseContentPartDoneEvent() { } public ResponseContentPartDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseContentPartDoneEvent contentIndex(@javax.annotation.Nonnull Long contentIndex) { - + this.contentIndex = contentIndex; return this; } @@ -112,7 +112,7 @@ public void setContentIndex(@javax.annotation.Nonnull Long contentIndex) { } public ResponseContentPartDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -137,7 +137,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseContentPartDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -162,7 +162,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseContentPartDoneEvent part(@javax.annotation.Nonnull OutputContentItem part) { - + this.part = part; return this; } @@ -187,7 +187,7 @@ public void setPart(@javax.annotation.Nonnull OutputContentItem part) { } public ResponseContentPartDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseContentPartDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCreatedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCreatedEvent.java index 9fae942..857f801 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCreatedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseCreatedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ResponseCreatedEvent() { } public ResponseCreatedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseCreatedEvent response(@javax.annotation.Nonnull Response response) { - + this.response = response; return this; } @@ -97,7 +97,7 @@ public void setResponse(@javax.annotation.Nonnull Response response) { } public ResponseCreatedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -225,4 +225,3 @@ public ResponseCreatedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallBlockAddedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallBlockAddedEvent.java index e5a5587..83da438 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallBlockAddedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallBlockAddedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseDoubaoAppCallBlockAddedEvent() { } public ResponseDoubaoAppCallBlockAddedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallBlockAddedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -107,7 +107,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallBlockAddedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -132,7 +132,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallBlockAddedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -157,7 +157,7 @@ public void setSequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { } public ResponseDoubaoAppCallBlockAddedEvent block(@javax.annotation.Nonnull DoubaoAppCallBlock block) { - + this.block = block; return this; } @@ -299,4 +299,3 @@ public ResponseDoubaoAppCallBlockAddedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallBlockDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallBlockDoneEvent.java index 3d5456f..8ea92a1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallBlockDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallBlockDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseDoubaoAppCallBlockDoneEvent() { } public ResponseDoubaoAppCallBlockDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallBlockDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -107,7 +107,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallBlockDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -132,7 +132,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallBlockDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -157,7 +157,7 @@ public void setSequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { } public ResponseDoubaoAppCallBlockDoneEvent block(@javax.annotation.Nonnull DoubaoAppCallBlock block) { - + this.block = block; return this; } @@ -299,4 +299,3 @@ public ResponseDoubaoAppCallBlockDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallCompletedEvent.java index a0bd8f3..a8d199a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -64,7 +64,7 @@ public ResponseDoubaoAppCallCompletedEvent() { } public ResponseDoubaoAppCallCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -89,7 +89,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallCompletedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -114,7 +114,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallCompletedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -139,7 +139,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallCompletedEvent feature(@javax.annotation.Nonnull String feature) { - + this.feature = feature; return this; } @@ -164,7 +164,7 @@ public void setFeature(@javax.annotation.Nonnull String feature) { } public ResponseDoubaoAppCallCompletedEvent blocks(@javax.annotation.Nonnull List blocks) { - + this.blocks = blocks; return this; } @@ -197,7 +197,7 @@ public void setBlocks(@javax.annotation.Nonnull List blocks) } public ResponseDoubaoAppCallCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -346,4 +346,3 @@ public ResponseDoubaoAppCallCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallFailedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallFailedEvent.java index 9a9a70b..af235f1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallFailedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallFailedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseDoubaoAppCallFailedEvent() { } public ResponseDoubaoAppCallFailedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallFailedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -107,7 +107,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallFailedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -132,7 +132,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallFailedEvent errorMessage(@javax.annotation.Nullable String errorMessage) { - + this.errorMessage = errorMessage; return this; } @@ -157,7 +157,7 @@ public void setErrorMessage(@javax.annotation.Nullable String errorMessage) { } public ResponseDoubaoAppCallFailedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseDoubaoAppCallFailedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallInProgressEvent.java index 04ba181..c5a09bb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseDoubaoAppCallInProgressEvent() { } public ResponseDoubaoAppCallInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallInProgressEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -107,7 +107,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallInProgressEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -132,7 +132,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallInProgressEvent feature(@javax.annotation.Nonnull String feature) { - + this.feature = feature; return this; } @@ -157,7 +157,7 @@ public void setFeature(@javax.annotation.Nonnull String feature) { } public ResponseDoubaoAppCallInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseDoubaoAppCallInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallOutputTextDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallOutputTextDeltaEvent.java index 06350cd..e390397 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallOutputTextDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallOutputTextDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseDoubaoAppCallOutputTextDeltaEvent() { } public ResponseDoubaoAppCallOutputTextDeltaEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallOutputTextDeltaEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallOutputTextDeltaEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallOutputTextDeltaEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -162,7 +162,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallOutputTextDeltaEvent delta(@javax.annotation.Nullable String delta) { - + this.delta = delta; return this; } @@ -187,7 +187,7 @@ public void setDelta(@javax.annotation.Nullable String delta) { } public ResponseDoubaoAppCallOutputTextDeltaEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseDoubaoAppCallOutputTextDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallOutputTextDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallOutputTextDoneEvent.java index c0668dc..7d89a9c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallOutputTextDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallOutputTextDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseDoubaoAppCallOutputTextDoneEvent() { } public ResponseDoubaoAppCallOutputTextDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallOutputTextDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallOutputTextDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallOutputTextDoneEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -162,7 +162,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallOutputTextDoneEvent text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -187,7 +187,7 @@ public void setText(@javax.annotation.Nullable String text) { } public ResponseDoubaoAppCallOutputTextDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseDoubaoAppCallOutputTextDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchCompletedEvent.java index 19df27f..437852f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -74,7 +74,7 @@ public ResponseDoubaoAppCallReasoningSearchCompletedEvent() { } public ResponseDoubaoAppCallReasoningSearchCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -99,7 +99,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallReasoningSearchCompletedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -124,7 +124,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallReasoningSearchCompletedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -149,7 +149,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallReasoningSearchCompletedEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -174,7 +174,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallReasoningSearchCompletedEvent summary(@javax.annotation.Nullable String summary) { - + this.summary = summary; return this; } @@ -199,7 +199,7 @@ public void setSummary(@javax.annotation.Nullable String summary) { } public ResponseDoubaoAppCallReasoningSearchCompletedEvent queries(@javax.annotation.Nonnull List queries) { - + this.queries = queries; return this; } @@ -232,7 +232,7 @@ public void setQueries(@javax.annotation.Nonnull List queries) { } public ResponseDoubaoAppCallReasoningSearchCompletedEvent results(@javax.annotation.Nonnull List results) { - + this.results = results; return this; } @@ -265,7 +265,7 @@ public void setResults(@javax.annotation.Nonnull List res } public ResponseDoubaoAppCallReasoningSearchCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -428,4 +428,3 @@ public ResponseDoubaoAppCallReasoningSearchCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchInProgressEvent.java index 4ef12a1..af4a02d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseDoubaoAppCallReasoningSearchInProgressEvent() { } public ResponseDoubaoAppCallReasoningSearchInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallReasoningSearchInProgressEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -107,7 +107,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallReasoningSearchInProgressEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -132,7 +132,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallReasoningSearchInProgressEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -157,7 +157,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallReasoningSearchInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseDoubaoAppCallReasoningSearchInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchSearchingEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchSearchingEvent.java index c0a791e..ea93bd6 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchSearchingEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningSearchSearchingEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseDoubaoAppCallReasoningSearchSearchingEvent() { } public ResponseDoubaoAppCallReasoningSearchSearchingEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallReasoningSearchSearchingEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallReasoningSearchSearchingEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallReasoningSearchSearchingEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -162,7 +162,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallReasoningSearchSearchingEvent searchingState(@javax.annotation.Nullable String searchingState) { - + this.searchingState = searchingState; return this; } @@ -187,7 +187,7 @@ public void setSearchingState(@javax.annotation.Nullable String searchingState) } public ResponseDoubaoAppCallReasoningSearchSearchingEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseDoubaoAppCallReasoningSearchSearchingEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningTextDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningTextDeltaEvent.java index 968de97..121e7cb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningTextDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningTextDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseDoubaoAppCallReasoningTextDeltaEvent() { } public ResponseDoubaoAppCallReasoningTextDeltaEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallReasoningTextDeltaEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallReasoningTextDeltaEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallReasoningTextDeltaEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -162,7 +162,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallReasoningTextDeltaEvent delta(@javax.annotation.Nullable String delta) { - + this.delta = delta; return this; } @@ -187,7 +187,7 @@ public void setDelta(@javax.annotation.Nullable String delta) { } public ResponseDoubaoAppCallReasoningTextDeltaEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseDoubaoAppCallReasoningTextDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningTextDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningTextDoneEvent.java index 2920597..14f645a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningTextDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallReasoningTextDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseDoubaoAppCallReasoningTextDoneEvent() { } public ResponseDoubaoAppCallReasoningTextDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallReasoningTextDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallReasoningTextDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallReasoningTextDoneEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -162,7 +162,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallReasoningTextDoneEvent text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -187,7 +187,7 @@ public void setText(@javax.annotation.Nullable String text) { } public ResponseDoubaoAppCallReasoningTextDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseDoubaoAppCallReasoningTextDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchCompletedEvent.java index 7cc9e78..4d53df1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -74,7 +74,7 @@ public ResponseDoubaoAppCallSearchCompletedEvent() { } public ResponseDoubaoAppCallSearchCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -99,7 +99,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallSearchCompletedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -124,7 +124,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallSearchCompletedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -149,7 +149,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallSearchCompletedEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -174,7 +174,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallSearchCompletedEvent summary(@javax.annotation.Nullable String summary) { - + this.summary = summary; return this; } @@ -199,7 +199,7 @@ public void setSummary(@javax.annotation.Nullable String summary) { } public ResponseDoubaoAppCallSearchCompletedEvent queries(@javax.annotation.Nonnull List queries) { - + this.queries = queries; return this; } @@ -232,7 +232,7 @@ public void setQueries(@javax.annotation.Nonnull List queries) { } public ResponseDoubaoAppCallSearchCompletedEvent results(@javax.annotation.Nonnull List results) { - + this.results = results; return this; } @@ -265,7 +265,7 @@ public void setResults(@javax.annotation.Nonnull List res } public ResponseDoubaoAppCallSearchCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -428,4 +428,3 @@ public ResponseDoubaoAppCallSearchCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchInProgressEvent.java index 1875e6e..c6afc6f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseDoubaoAppCallSearchInProgressEvent() { } public ResponseDoubaoAppCallSearchInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallSearchInProgressEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -107,7 +107,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallSearchInProgressEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -132,7 +132,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallSearchInProgressEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -157,7 +157,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallSearchInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseDoubaoAppCallSearchInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchSearchingEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchSearchingEvent.java index 5105229..60d3fbc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchSearchingEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseDoubaoAppCallSearchSearchingEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseDoubaoAppCallSearchSearchingEvent() { } public ResponseDoubaoAppCallSearchSearchingEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseDoubaoAppCallSearchSearchingEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseDoubaoAppCallSearchSearchingEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseDoubaoAppCallSearchSearchingEvent blockIndex(@javax.annotation.Nullable Long blockIndex) { - + this.blockIndex = blockIndex; return this; } @@ -162,7 +162,7 @@ public void setBlockIndex(@javax.annotation.Nullable Long blockIndex) { } public ResponseDoubaoAppCallSearchSearchingEvent searchingState(@javax.annotation.Nullable String searchingState) { - + this.searchingState = searchingState; return this; } @@ -187,7 +187,7 @@ public void setSearchingState(@javax.annotation.Nullable String searchingState) } public ResponseDoubaoAppCallSearchSearchingEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseDoubaoAppCallSearchSearchingEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseError.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseError.java index 10470bb..91e7401 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseError.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseError.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ResponseError() { } public ResponseError code(@javax.annotation.Nonnull String code) { - + this.code = code; return this; } @@ -67,7 +67,7 @@ public void setCode(@javax.annotation.Nonnull String code) { } public ResponseError message(@javax.annotation.Nonnull String message) { - + this.message = message; return this; } @@ -188,4 +188,3 @@ public ResponseError.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseErrorEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseErrorEvent.java index 60ec868..f0d892a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseErrorEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseErrorEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseErrorEvent() { } public ResponseErrorEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseErrorEvent code(@javax.annotation.Nullable String code) { - + this.code = code; return this; } @@ -107,7 +107,7 @@ public void setCode(@javax.annotation.Nullable String code) { } public ResponseErrorEvent message(@javax.annotation.Nonnull String message) { - + this.message = message; return this; } @@ -132,7 +132,7 @@ public void setMessage(@javax.annotation.Nonnull String message) { } public ResponseErrorEvent param(@javax.annotation.Nullable String param) { - + this.param = param; return this; } @@ -157,7 +157,7 @@ public void setParam(@javax.annotation.Nullable String param) { } public ResponseErrorEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseErrorEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFailedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFailedEvent.java index 3afe921..2df94cd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFailedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFailedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ResponseFailedEvent() { } public ResponseFailedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseFailedEvent response(@javax.annotation.Nonnull Response response) { - + this.response = response; return this; } @@ -97,7 +97,7 @@ public void setResponse(@javax.annotation.Nonnull Response response) { } public ResponseFailedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -225,4 +225,3 @@ public ResponseFailedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFunctionCallArgumentsDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFunctionCallArgumentsDeltaEvent.java index a31efb7..0a17089 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFunctionCallArgumentsDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFunctionCallArgumentsDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseFunctionCallArgumentsDeltaEvent() { } public ResponseFunctionCallArgumentsDeltaEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseFunctionCallArgumentsDeltaEvent delta(@javax.annotation.Nullable String delta) { - + this.delta = delta; return this; } @@ -107,7 +107,7 @@ public void setDelta(@javax.annotation.Nullable String delta) { } public ResponseFunctionCallArgumentsDeltaEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -132,7 +132,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseFunctionCallArgumentsDeltaEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -157,7 +157,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseFunctionCallArgumentsDeltaEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseFunctionCallArgumentsDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFunctionCallArgumentsDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFunctionCallArgumentsDoneEvent.java index 9d53c43..1afe1d8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFunctionCallArgumentsDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseFunctionCallArgumentsDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseFunctionCallArgumentsDoneEvent() { } public ResponseFunctionCallArgumentsDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseFunctionCallArgumentsDoneEvent arguments(@javax.annotation.Nullable String arguments) { - + this.arguments = arguments; return this; } @@ -107,7 +107,7 @@ public void setArguments(@javax.annotation.Nullable String arguments) { } public ResponseFunctionCallArgumentsDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -132,7 +132,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseFunctionCallArgumentsDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -157,7 +157,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseFunctionCallArgumentsDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseFunctionCallArgumentsDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessAction.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessAction.java index 89c23cb..39b6565 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessAction.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessAction.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ResponseImageProcessAction() { } public ResponseImageProcessAction type(@javax.annotation.Nonnull String type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull String type) { } public ResponseImageProcessAction resultImageUrl(@javax.annotation.Nullable String resultImageUrl) { - + this.resultImageUrl = resultImageUrl; return this; } @@ -188,4 +188,3 @@ public ResponseImageProcessAction.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallCompletedEvent.java index b38cafd..863bd83 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -63,7 +63,7 @@ public ResponseImageProcessCallCompletedEvent() { } public ResponseImageProcessCallCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -88,7 +88,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseImageProcessCallCompletedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -113,7 +113,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseImageProcessCallCompletedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -138,7 +138,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseImageProcessCallCompletedEvent action(@javax.annotation.Nonnull ResponseImageProcessAction action) { - + this.action = action; return this; } @@ -163,7 +163,7 @@ public void setAction(@javax.annotation.Nonnull ResponseImageProcessAction actio } public ResponseImageProcessCallCompletedEvent arguments(@javax.annotation.Nonnull Map arguments) { - + this.arguments = arguments; return this; } @@ -193,7 +193,7 @@ public void setArguments(@javax.annotation.Nonnull Map arguments } public ResponseImageProcessCallCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -342,4 +342,3 @@ public ResponseImageProcessCallCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallInProgressEvent.java index 48500f4..5622ff8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseImageProcessCallInProgressEvent() { } public ResponseImageProcessCallInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseImageProcessCallInProgressEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseImageProcessCallInProgressEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseImageProcessCallInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseImageProcessCallInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallProcessingEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallProcessingEvent.java index b38761a..601e6e3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallProcessingEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessCallProcessingEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -63,7 +63,7 @@ public ResponseImageProcessCallProcessingEvent() { } public ResponseImageProcessCallProcessingEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -88,7 +88,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseImageProcessCallProcessingEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -113,7 +113,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseImageProcessCallProcessingEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -138,7 +138,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseImageProcessCallProcessingEvent action(@javax.annotation.Nonnull ResponseImageProcessAction action) { - + this.action = action; return this; } @@ -163,7 +163,7 @@ public void setAction(@javax.annotation.Nonnull ResponseImageProcessAction actio } public ResponseImageProcessCallProcessingEvent arguments(@javax.annotation.Nonnull Map arguments) { - + this.arguments = arguments; return this; } @@ -193,7 +193,7 @@ public void setArguments(@javax.annotation.Nonnull Map arguments } public ResponseImageProcessCallProcessingEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -342,4 +342,3 @@ public ResponseImageProcessCallProcessingEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessError.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessError.java index 7975612..18f1da2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessError.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseImageProcessError.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ResponseImageProcessError() { } public ResponseImageProcessError message(@javax.annotation.Nonnull String message) { - + this.message = message; return this; } @@ -151,4 +151,3 @@ public ResponseImageProcessError.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseInProgressEvent.java index e0ba870..3fc7f98 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ResponseInProgressEvent() { } public ResponseInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseInProgressEvent response(@javax.annotation.Nonnull Response response) { - + this.response = response; return this; } @@ -97,7 +97,7 @@ public void setResponse(@javax.annotation.Nonnull Response response) { } public ResponseInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -225,4 +225,3 @@ public ResponseInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseIncludable.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseIncludable.java index 02b791b..78fce7a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseIncludable.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseIncludable.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets ResponseIncludable */ public enum ResponseIncludable { - + MESSAGE_INPUT_IMAGE_IMAGE_URL("message.input_image.image_url"), - + REASONING_ENCRYPTED_CONTENT("reasoning.encrypted_content"), - + MESSAGE_INPUT_AUDIO_AUDIO_URL("message.input_audio.audio_url"); private String value; @@ -57,4 +57,3 @@ public static ResponseIncludable fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseIncompleteEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseIncompleteEvent.java index 007d5f2..81a6e7e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseIncompleteEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseIncompleteEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ResponseIncompleteEvent() { } public ResponseIncompleteEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseIncompleteEvent response(@javax.annotation.Nonnull Response response) { - + this.response = response; return this; } @@ -97,7 +97,7 @@ public void setResponse(@javax.annotation.Nonnull Response response) { } public ResponseIncompleteEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -225,4 +225,3 @@ public ResponseIncompleteEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallCompletedEvent.java index 3ad89ab..eb2d3d3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseKnowledgeSearchCallCompletedEvent() { } public ResponseKnowledgeSearchCallCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseKnowledgeSearchCallCompletedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseKnowledgeSearchCallCompletedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseKnowledgeSearchCallCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseKnowledgeSearchCallCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallFailedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallFailedEvent.java index 4da2b3d..5fb76c3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallFailedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallFailedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseKnowledgeSearchCallFailedEvent() { } public ResponseKnowledgeSearchCallFailedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseKnowledgeSearchCallFailedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseKnowledgeSearchCallFailedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseKnowledgeSearchCallFailedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseKnowledgeSearchCallFailedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallInProgressEvent.java index 070d440..c018a54 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseKnowledgeSearchCallInProgressEvent() { } public ResponseKnowledgeSearchCallInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseKnowledgeSearchCallInProgressEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseKnowledgeSearchCallInProgressEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseKnowledgeSearchCallInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseKnowledgeSearchCallInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallSearchingEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallSearchingEvent.java index 1b40459..546a965 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallSearchingEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseKnowledgeSearchCallSearchingEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseKnowledgeSearchCallSearchingEvent() { } public ResponseKnowledgeSearchCallSearchingEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseKnowledgeSearchCallSearchingEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseKnowledgeSearchCallSearchingEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseKnowledgeSearchCallSearchingEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseKnowledgeSearchCallSearchingEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpApprovalRequestEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpApprovalRequestEvent.java index f2eaa86..0966a1b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpApprovalRequestEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpApprovalRequestEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseMcpApprovalRequestEvent() { } public ResponseMcpApprovalRequestEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseMcpApprovalRequestEvent functionMcpApprovalRequest(@javax.annotation.Nonnull ItemFunctionMcpApprovalRequest functionMcpApprovalRequest) { - + this.functionMcpApprovalRequest = functionMcpApprovalRequest; return this; } @@ -102,7 +102,7 @@ public void setFunctionMcpApprovalRequest(@javax.annotation.Nonnull ItemFunction } public ResponseMcpApprovalRequestEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseMcpApprovalRequestEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseMcpApprovalRequestEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallArgumentsDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallArgumentsDeltaEvent.java index 8127550..1a5ddd4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallArgumentsDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallArgumentsDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseMcpCallArgumentsDeltaEvent() { } public ResponseMcpCallArgumentsDeltaEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseMcpCallArgumentsDeltaEvent delta(@javax.annotation.Nonnull String delta) { - + this.delta = delta; return this; } @@ -107,7 +107,7 @@ public void setDelta(@javax.annotation.Nonnull String delta) { } public ResponseMcpCallArgumentsDeltaEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -132,7 +132,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseMcpCallArgumentsDeltaEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -157,7 +157,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseMcpCallArgumentsDeltaEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseMcpCallArgumentsDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallArgumentsDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallArgumentsDoneEvent.java index ec38dbf..ec1e4ce 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallArgumentsDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallArgumentsDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -57,7 +57,7 @@ public ResponseMcpCallArgumentsDoneEvent() { } public ResponseMcpCallArgumentsDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -82,7 +82,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseMcpCallArgumentsDoneEvent arguments(@javax.annotation.Nonnull String arguments) { - + this.arguments = arguments; return this; } @@ -107,7 +107,7 @@ public void setArguments(@javax.annotation.Nonnull String arguments) { } public ResponseMcpCallArgumentsDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -132,7 +132,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseMcpCallArgumentsDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -157,7 +157,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseMcpCallArgumentsDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -299,4 +299,3 @@ public ResponseMcpCallArgumentsDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallCompletedEvent.java index 94be87a..d38a600 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseMcpCallCompletedEvent() { } public ResponseMcpCallCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseMcpCallCompletedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseMcpCallCompletedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseMcpCallCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseMcpCallCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallFailedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallFailedEvent.java index 13f427a..1f0db7a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallFailedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallFailedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseMcpCallFailedEvent() { } public ResponseMcpCallFailedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseMcpCallFailedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseMcpCallFailedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseMcpCallFailedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseMcpCallFailedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallInProgressEvent.java index 444a136..a28ec69 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpCallInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseMcpCallInProgressEvent() { } public ResponseMcpCallInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseMcpCallInProgressEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseMcpCallInProgressEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseMcpCallInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseMcpCallInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsCompletedEvent.java index 0cea17f..05ad822 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseMcpListToolsCompletedEvent() { } public ResponseMcpListToolsCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseMcpListToolsCompletedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseMcpListToolsCompletedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseMcpListToolsCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseMcpListToolsCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsFailedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsFailedEvent.java index 4b269be..af93439 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsFailedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsFailedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseMcpListToolsFailedEvent() { } public ResponseMcpListToolsFailedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseMcpListToolsFailedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseMcpListToolsFailedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseMcpListToolsFailedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseMcpListToolsFailedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsInProgressEvent.java index 106b8e0..74c7c11 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseMcpListToolsInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseMcpListToolsInProgressEvent() { } public ResponseMcpListToolsInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseMcpListToolsInProgressEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseMcpListToolsInProgressEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseMcpListToolsInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseMcpListToolsInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputItemAddedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputItemAddedEvent.java index 28eda91..257246f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputItemAddedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputItemAddedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseOutputItemAddedEvent() { } public ResponseOutputItemAddedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseOutputItemAddedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -102,7 +102,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseOutputItemAddedEvent item(@javax.annotation.Nonnull OutputItem item) { - + this.item = item; return this; } @@ -127,7 +127,7 @@ public void setItem(@javax.annotation.Nonnull OutputItem item) { } public ResponseOutputItemAddedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseOutputItemAddedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputItemDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputItemDoneEvent.java index 74aee68..7f51ec2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputItemDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputItemDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseOutputItemDoneEvent() { } public ResponseOutputItemDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseOutputItemDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -102,7 +102,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseOutputItemDoneEvent item(@javax.annotation.Nonnull OutputItem item) { - + this.item = item; return this; } @@ -127,7 +127,7 @@ public void setItem(@javax.annotation.Nonnull OutputItem item) { } public ResponseOutputItemDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseOutputItemDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputTextAnnotationAddedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputTextAnnotationAddedEvent.java index 140db6c..ee2156c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputTextAnnotationAddedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseOutputTextAnnotationAddedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -67,7 +67,7 @@ public ResponseOutputTextAnnotationAddedEvent() { } public ResponseOutputTextAnnotationAddedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -92,7 +92,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseOutputTextAnnotationAddedEvent contentIndex(@javax.annotation.Nonnull Long contentIndex) { - + this.contentIndex = contentIndex; return this; } @@ -117,7 +117,7 @@ public void setContentIndex(@javax.annotation.Nonnull Long contentIndex) { } public ResponseOutputTextAnnotationAddedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -142,7 +142,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseOutputTextAnnotationAddedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -167,7 +167,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseOutputTextAnnotationAddedEvent annotationIndex(@javax.annotation.Nullable Long annotationIndex) { - + this.annotationIndex = annotationIndex; return this; } @@ -192,7 +192,7 @@ public void setAnnotationIndex(@javax.annotation.Nullable Long annotationIndex) } public ResponseOutputTextAnnotationAddedEvent annotation(@javax.annotation.Nonnull Annotation annotation) { - + this.annotation = annotation; return this; } @@ -217,7 +217,7 @@ public void setAnnotation(@javax.annotation.Nonnull Annotation annotation) { } public ResponseOutputTextAnnotationAddedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -373,4 +373,3 @@ public ResponseOutputTextAnnotationAddedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningRawTextDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningRawTextDeltaEvent.java index d2b9e3e..dfca18f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningRawTextDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningRawTextDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseReasoningRawTextDeltaEvent() { } public ResponseReasoningRawTextDeltaEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseReasoningRawTextDeltaEvent contentIndex(@javax.annotation.Nonnull Long contentIndex) { - + this.contentIndex = contentIndex; return this; } @@ -112,7 +112,7 @@ public void setContentIndex(@javax.annotation.Nonnull Long contentIndex) { } public ResponseReasoningRawTextDeltaEvent delta(@javax.annotation.Nullable String delta) { - + this.delta = delta; return this; } @@ -137,7 +137,7 @@ public void setDelta(@javax.annotation.Nullable String delta) { } public ResponseReasoningRawTextDeltaEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -162,7 +162,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseReasoningRawTextDeltaEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -187,7 +187,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseReasoningRawTextDeltaEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseReasoningRawTextDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningRawTextDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningRawTextDoneEvent.java index d297356..20d94ba 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningRawTextDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningRawTextDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseReasoningRawTextDoneEvent() { } public ResponseReasoningRawTextDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseReasoningRawTextDoneEvent contentIndex(@javax.annotation.Nonnull Long contentIndex) { - + this.contentIndex = contentIndex; return this; } @@ -112,7 +112,7 @@ public void setContentIndex(@javax.annotation.Nonnull Long contentIndex) { } public ResponseReasoningRawTextDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -137,7 +137,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseReasoningRawTextDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -162,7 +162,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseReasoningRawTextDoneEvent text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -187,7 +187,7 @@ public void setText(@javax.annotation.Nullable String text) { } public ResponseReasoningRawTextDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseReasoningRawTextDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryPartAddedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryPartAddedEvent.java index b1f0f12..1862954 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryPartAddedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryPartAddedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseReasoningSummaryPartAddedEvent() { } public ResponseReasoningSummaryPartAddedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseReasoningSummaryPartAddedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseReasoningSummaryPartAddedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseReasoningSummaryPartAddedEvent summaryIndex(@javax.annotation.Nonnull Long summaryIndex) { - + this.summaryIndex = summaryIndex; return this; } @@ -162,7 +162,7 @@ public void setSummaryIndex(@javax.annotation.Nonnull Long summaryIndex) { } public ResponseReasoningSummaryPartAddedEvent part(@javax.annotation.Nonnull ReasoningSummaryPart part) { - + this.part = part; return this; } @@ -187,7 +187,7 @@ public void setPart(@javax.annotation.Nonnull ReasoningSummaryPart part) { } public ResponseReasoningSummaryPartAddedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseReasoningSummaryPartAddedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryPartDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryPartDoneEvent.java index 9d08c17..78df154 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryPartDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryPartDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseReasoningSummaryPartDoneEvent() { } public ResponseReasoningSummaryPartDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseReasoningSummaryPartDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseReasoningSummaryPartDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseReasoningSummaryPartDoneEvent summaryIndex(@javax.annotation.Nonnull Long summaryIndex) { - + this.summaryIndex = summaryIndex; return this; } @@ -162,7 +162,7 @@ public void setSummaryIndex(@javax.annotation.Nonnull Long summaryIndex) { } public ResponseReasoningSummaryPartDoneEvent part(@javax.annotation.Nonnull ReasoningSummaryPart part) { - + this.part = part; return this; } @@ -187,7 +187,7 @@ public void setPart(@javax.annotation.Nonnull ReasoningSummaryPart part) { } public ResponseReasoningSummaryPartDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseReasoningSummaryPartDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryTextDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryTextDeltaEvent.java index 6ee577f..2199cf0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryTextDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryTextDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseReasoningSummaryTextDeltaEvent() { } public ResponseReasoningSummaryTextDeltaEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseReasoningSummaryTextDeltaEvent delta(@javax.annotation.Nullable String delta) { - + this.delta = delta; return this; } @@ -112,7 +112,7 @@ public void setDelta(@javax.annotation.Nullable String delta) { } public ResponseReasoningSummaryTextDeltaEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -137,7 +137,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseReasoningSummaryTextDeltaEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -162,7 +162,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseReasoningSummaryTextDeltaEvent summaryIndex(@javax.annotation.Nonnull Long summaryIndex) { - + this.summaryIndex = summaryIndex; return this; } @@ -187,7 +187,7 @@ public void setSummaryIndex(@javax.annotation.Nonnull Long summaryIndex) { } public ResponseReasoningSummaryTextDeltaEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseReasoningSummaryTextDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryTextDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryTextDoneEvent.java index 7379990..14a80fd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryTextDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningSummaryTextDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseReasoningSummaryTextDoneEvent() { } public ResponseReasoningSummaryTextDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseReasoningSummaryTextDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseReasoningSummaryTextDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseReasoningSummaryTextDoneEvent summaryIndex(@javax.annotation.Nonnull Long summaryIndex) { - + this.summaryIndex = summaryIndex; return this; } @@ -162,7 +162,7 @@ public void setSummaryIndex(@javax.annotation.Nonnull Long summaryIndex) { } public ResponseReasoningSummaryTextDoneEvent text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -187,7 +187,7 @@ public void setText(@javax.annotation.Nullable String text) { } public ResponseReasoningSummaryTextDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseReasoningSummaryTextDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningTextDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningTextDeltaEvent.java index 83e627c..03cb4c2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningTextDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningTextDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseReasoningTextDeltaEvent() { } public ResponseReasoningTextDeltaEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseReasoningTextDeltaEvent contentIndex(@javax.annotation.Nonnull Long contentIndex) { - + this.contentIndex = contentIndex; return this; } @@ -112,7 +112,7 @@ public void setContentIndex(@javax.annotation.Nonnull Long contentIndex) { } public ResponseReasoningTextDeltaEvent delta(@javax.annotation.Nullable String delta) { - + this.delta = delta; return this; } @@ -137,7 +137,7 @@ public void setDelta(@javax.annotation.Nullable String delta) { } public ResponseReasoningTextDeltaEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -162,7 +162,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseReasoningTextDeltaEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -187,7 +187,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseReasoningTextDeltaEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseReasoningTextDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningTextDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningTextDoneEvent.java index 47e11b5..0d80664 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningTextDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseReasoningTextDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseReasoningTextDoneEvent() { } public ResponseReasoningTextDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseReasoningTextDoneEvent contentIndex(@javax.annotation.Nonnull Long contentIndex) { - + this.contentIndex = contentIndex; return this; } @@ -112,7 +112,7 @@ public void setContentIndex(@javax.annotation.Nonnull Long contentIndex) { } public ResponseReasoningTextDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -137,7 +137,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseReasoningTextDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -162,7 +162,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseReasoningTextDoneEvent text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -187,7 +187,7 @@ public void setText(@javax.annotation.Nullable String text) { } public ResponseReasoningTextDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseReasoningTextDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStatus.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStatus.java index 57aa8f1..238519f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStatus.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStatus.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets ResponseStatus */ public enum ResponseStatus { - + IN_PROGRESS("in_progress"), - + COMPLETED("completed"), - + INCOMPLETE("incomplete"), - + FAILED("failed"); private String value; @@ -59,4 +59,3 @@ public static ResponseStatus fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStreamEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStreamEvent.java index 9cb4137..8a2251d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStreamEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStreamEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -90,4 +90,3 @@ public interface ResponseStreamEvent { public ResponseStreamEventType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStreamEventType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStreamEventType.java index adae2bc..0d358b9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStreamEventType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseStreamEventType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,131 +24,131 @@ * Gets or Sets ResponseStreamEventType */ public enum ResponseStreamEventType { - + ERROR("error"), - + RESPONSE_AGENT_TOOL_CALL_COMPLETED("response.agent_tool_call.completed"), - + RESPONSE_AGENT_TOOL_CALL_IN_PROGRESS("response.agent_tool_call.in_progress"), - + RESPONSE_COMPLETED("response.completed"), - + RESPONSE_CONTENT_PART_ADDED("response.content_part.added"), - + RESPONSE_CONTENT_PART_DONE("response.content_part.done"), - + RESPONSE_CREATED("response.created"), - + RESPONSE_DOUBAO_APP_CALL_COMPLETED("response.doubao_app_call.completed"), - + RESPONSE_DOUBAO_APP_CALL_FAILED("response.doubao_app_call.failed"), - + RESPONSE_DOUBAO_APP_CALL_IN_PROGRESS("response.doubao_app_call.in_progress"), - + RESPONSE_DOUBAO_APP_CALL_BLOCK_ADDED("response.doubao_app_call_block.added"), - + RESPONSE_DOUBAO_APP_CALL_BLOCK_DONE("response.doubao_app_call_block.done"), - + RESPONSE_DOUBAO_APP_CALL_OUTPUT_TEXT_DELTA("response.doubao_app_call_output_text.delta"), - + RESPONSE_DOUBAO_APP_CALL_OUTPUT_TEXT_DONE("response.doubao_app_call_output_text.done"), - + RESPONSE_DOUBAO_APP_CALL_REASONING_SEARCH_COMPLETED("response.doubao_app_call_reasoning_search.completed"), - + RESPONSE_DOUBAO_APP_CALL_REASONING_SEARCH_IN_PROGRESS("response.doubao_app_call_reasoning_search.in_progress"), - + RESPONSE_DOUBAO_APP_CALL_REASONING_SEARCH_SEARCHING("response.doubao_app_call_reasoning_search.searching"), - + RESPONSE_DOUBAO_APP_CALL_REASONING_TEXT_DELTA("response.doubao_app_call_reasoning_text.delta"), - + RESPONSE_DOUBAO_APP_CALL_REASONING_TEXT_DONE("response.doubao_app_call_reasoning_text.done"), - + RESPONSE_DOUBAO_APP_CALL_SEARCH_COMPLETED("response.doubao_app_call_search.completed"), - + RESPONSE_DOUBAO_APP_CALL_SEARCH_IN_PROGRESS("response.doubao_app_call_search.in_progress"), - + RESPONSE_DOUBAO_APP_CALL_SEARCH_SEARCHING("response.doubao_app_call_search.searching"), - + RESPONSE_FAILED("response.failed"), - + RESPONSE_FUNCTION_CALL_ARGUMENTS_DELTA("response.function_call_arguments.delta"), - + RESPONSE_FUNCTION_CALL_ARGUMENTS_DONE("response.function_call_arguments.done"), - + RESPONSE_IMAGE_PROCESS_CALL_COMPLETED("response.image_process_call.completed"), - + RESPONSE_IMAGE_PROCESS_CALL_IN_PROGRESS("response.image_process_call.in_progress"), - + RESPONSE_IMAGE_PROCESS_CALL_PROGRESSING("response.image_process_call.progressing"), - + RESPONSE_IN_PROGRESS("response.in_progress"), - + RESPONSE_INCOMPLETE("response.incomplete"), - + RESPONSE_KNOWLEDGE_SEARCH_CALL_COMPLETED("response.knowledge_search_call.completed"), - + RESPONSE_KNOWLEDGE_SEARCH_CALL_FAILED("response.knowledge_search_call.failed"), - + RESPONSE_KNOWLEDGE_SEARCH_CALL_IN_PROGRESS("response.knowledge_search_call.in_progress"), - + RESPONSE_KNOWLEDGE_SEARCH_CALL_SEARCHING("response.knowledge_search_call.searching"), - + RESPONSE_MCP_APPROVAL_REQUEST("response.mcp_approval_request"), - + RESPONSE_MCP_CALL_COMPLETED("response.mcp_call.completed"), - + RESPONSE_MCP_CALL_FAILED("response.mcp_call.failed"), - + RESPONSE_MCP_CALL_IN_PROGRESS("response.mcp_call.in_progress"), - + RESPONSE_MCP_CALL_ARGUMENTS_DELTA("response.mcp_call_arguments.delta"), - + RESPONSE_MCP_CALL_ARGUMENTS_DONE("response.mcp_call_arguments.done"), - + RESPONSE_MCP_LIST_TOOLS_COMPLETED("response.mcp_list_tools.completed"), - + RESPONSE_MCP_LIST_TOOLS_FAILED("response.mcp_list_tools.failed"), - + RESPONSE_MCP_LIST_TOOLS_IN_PROGRESS("response.mcp_list_tools.in_progress"), - + RESPONSE_OUTPUT_ITEM_ADDED("response.output_item.added"), - + RESPONSE_OUTPUT_ITEM_DONE("response.output_item.done"), - + RESPONSE_OUTPUT_TEXT_ANNOTATION_ADDED("response.output_text.annotation.added"), - + RESPONSE_OUTPUT_TEXT_DELTA("response.output_text.delta"), - + RESPONSE_OUTPUT_TEXT_DONE("response.output_text.done"), - + RESPONSE_REASONING_RAW_TEXT_DELTA("response.reasoning_raw_text.delta"), - + RESPONSE_REASONING_RAW_TEXT_DONE("response.reasoning_raw_text.done"), - + RESPONSE_REASONING_SUMMARY_PART_ADDED("response.reasoning_summary_part.added"), - + RESPONSE_REASONING_SUMMARY_PART_DONE("response.reasoning_summary_part.done"), - + RESPONSE_REASONING_SUMMARY_TEXT_DELTA("response.reasoning_summary_text.delta"), - + RESPONSE_REASONING_SUMMARY_TEXT_DONE("response.reasoning_summary_text.done"), - + RESPONSE_REASONING_TEXT_DELTA("response.reasoning_text.delta"), - + RESPONSE_REASONING_TEXT_DONE("response.reasoning_text.done"), - + RESPONSE_TRANSCRIPTION_PART_ADDED("response.transcription_part.added"), - + RESPONSE_TRANSCRIPTION_PART_DONE("response.transcription_part.done"), - + RESPONSE_TRANSCRIPTION_TEXT_DELTA("response.transcription_text.delta"), - + RESPONSE_TRANSCRIPTION_TEXT_DONE("response.transcription_text.done"), - + RESPONSE_WEB_SEARCH_CALL_COMPLETED("response.web_search_call.completed"), - + RESPONSE_WEB_SEARCH_CALL_IN_PROGRESS("response.web_search_call.in_progress"), - + RESPONSE_WEB_SEARCH_CALL_SEARCHING("response.web_search_call.searching"); private String value; @@ -177,4 +177,3 @@ public static ResponseStreamEventType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextConfig.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextConfig.java index 1eaad8e..f903f2d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextConfig.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextConfig.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ResponseTextConfig() { } public ResponseTextConfig format(@javax.annotation.Nonnull TextFormat format) { - + this.format = format; return this; } @@ -151,4 +151,3 @@ public ResponseTextConfig.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextDeltaEvent.java index 2a11140..d2afd97 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseTextDeltaEvent() { } public ResponseTextDeltaEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseTextDeltaEvent contentIndex(@javax.annotation.Nonnull Long contentIndex) { - + this.contentIndex = contentIndex; return this; } @@ -112,7 +112,7 @@ public void setContentIndex(@javax.annotation.Nonnull Long contentIndex) { } public ResponseTextDeltaEvent delta(@javax.annotation.Nullable String delta) { - + this.delta = delta; return this; } @@ -137,7 +137,7 @@ public void setDelta(@javax.annotation.Nullable String delta) { } public ResponseTextDeltaEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -162,7 +162,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseTextDeltaEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -187,7 +187,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseTextDeltaEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseTextDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextDoneEvent.java index 87eedd9..aa17247 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTextDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseTextDoneEvent() { } public ResponseTextDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseTextDoneEvent contentIndex(@javax.annotation.Nonnull Long contentIndex) { - + this.contentIndex = contentIndex; return this; } @@ -112,7 +112,7 @@ public void setContentIndex(@javax.annotation.Nonnull Long contentIndex) { } public ResponseTextDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -137,7 +137,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseTextDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -162,7 +162,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseTextDoneEvent text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -187,7 +187,7 @@ public void setText(@javax.annotation.Nullable String text) { } public ResponseTextDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseTextDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionPartAddedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionPartAddedEvent.java index 47d716b..2002db6 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionPartAddedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionPartAddedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseTranscriptionPartAddedEvent() { } public ResponseTranscriptionPartAddedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseTranscriptionPartAddedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseTranscriptionPartAddedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseTranscriptionPartAddedEvent transcriptionIndex(@javax.annotation.Nonnull Long transcriptionIndex) { - + this.transcriptionIndex = transcriptionIndex; return this; } @@ -162,7 +162,7 @@ public void setTranscriptionIndex(@javax.annotation.Nonnull Long transcriptionIn } public ResponseTranscriptionPartAddedEvent part(@javax.annotation.Nonnull TranscriptionPart part) { - + this.part = part; return this; } @@ -187,7 +187,7 @@ public void setPart(@javax.annotation.Nonnull TranscriptionPart part) { } public ResponseTranscriptionPartAddedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseTranscriptionPartAddedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionPartDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionPartDoneEvent.java index e080c20..5bfdb3d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionPartDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionPartDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public ResponseTranscriptionPartDoneEvent() { } public ResponseTranscriptionPartDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -87,7 +87,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseTranscriptionPartDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -112,7 +112,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseTranscriptionPartDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -137,7 +137,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseTranscriptionPartDoneEvent transcriptionIndex(@javax.annotation.Nonnull Long transcriptionIndex) { - + this.transcriptionIndex = transcriptionIndex; return this; } @@ -162,7 +162,7 @@ public void setTranscriptionIndex(@javax.annotation.Nonnull Long transcriptionIn } public ResponseTranscriptionPartDoneEvent part(@javax.annotation.Nonnull TranscriptionPart part) { - + this.part = part; return this; } @@ -187,7 +187,7 @@ public void setPart(@javax.annotation.Nonnull TranscriptionPart part) { } public ResponseTranscriptionPartDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -336,4 +336,3 @@ public ResponseTranscriptionPartDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionTextDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionTextDeltaEvent.java index 028d909..f788d0e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionTextDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionTextDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -72,7 +72,7 @@ public ResponseTranscriptionTextDeltaEvent() { } public ResponseTranscriptionTextDeltaEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -97,7 +97,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseTranscriptionTextDeltaEvent transcriptionIndex(@javax.annotation.Nonnull Long transcriptionIndex) { - + this.transcriptionIndex = transcriptionIndex; return this; } @@ -122,7 +122,7 @@ public void setTranscriptionIndex(@javax.annotation.Nonnull Long transcriptionIn } public ResponseTranscriptionTextDeltaEvent delta(@javax.annotation.Nullable String delta) { - + this.delta = delta; return this; } @@ -147,7 +147,7 @@ public void setDelta(@javax.annotation.Nullable String delta) { } public ResponseTranscriptionTextDeltaEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -172,7 +172,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseTranscriptionTextDeltaEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -197,7 +197,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseTranscriptionTextDeltaEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -222,7 +222,7 @@ public void setSequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { } public ResponseTranscriptionTextDeltaEvent startTime(@javax.annotation.Nonnull Long startTime) { - + this.startTime = startTime; return this; } @@ -247,7 +247,7 @@ public void setStartTime(@javax.annotation.Nonnull Long startTime) { } public ResponseTranscriptionTextDeltaEvent endTime(@javax.annotation.Nonnull Long endTime) { - + this.endTime = endTime; return this; } @@ -410,4 +410,3 @@ public ResponseTranscriptionTextDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionTextDoneEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionTextDoneEvent.java index a20fc2c..9b5dc97 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionTextDoneEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseTranscriptionTextDoneEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -79,7 +79,7 @@ public ResponseTranscriptionTextDoneEvent() { } public ResponseTranscriptionTextDoneEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -104,7 +104,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseTranscriptionTextDoneEvent transcriptionIndex(@javax.annotation.Nonnull Long transcriptionIndex) { - + this.transcriptionIndex = transcriptionIndex; return this; } @@ -129,7 +129,7 @@ public void setTranscriptionIndex(@javax.annotation.Nonnull Long transcriptionIn } public ResponseTranscriptionTextDoneEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -154,7 +154,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseTranscriptionTextDoneEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -179,7 +179,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseTranscriptionTextDoneEvent text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -204,7 +204,7 @@ public void setText(@javax.annotation.Nullable String text) { } public ResponseTranscriptionTextDoneEvent startTime(@javax.annotation.Nonnull Long startTime) { - + this.startTime = startTime; return this; } @@ -229,7 +229,7 @@ public void setStartTime(@javax.annotation.Nonnull Long startTime) { } public ResponseTranscriptionTextDoneEvent endTime(@javax.annotation.Nonnull Long endTime) { - + this.endTime = endTime; return this; } @@ -254,7 +254,7 @@ public void setEndTime(@javax.annotation.Nonnull Long endTime) { } public ResponseTranscriptionTextDoneEvent chunks(@javax.annotation.Nonnull List chunks) { - + this.chunks = chunks; return this; } @@ -287,7 +287,7 @@ public void setChunks(@javax.annotation.Nonnull List chunks) { } public ResponseTranscriptionTextDoneEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -457,4 +457,3 @@ public ResponseTranscriptionTextDoneEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseUsage.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseUsage.java index f1dbc0c..46e61ce 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseUsage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseUsage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -67,7 +67,7 @@ public ResponseUsage() { } public ResponseUsage inputTokens(@javax.annotation.Nonnull Long inputTokens) { - + this.inputTokens = inputTokens; return this; } @@ -92,7 +92,7 @@ public void setInputTokens(@javax.annotation.Nonnull Long inputTokens) { } public ResponseUsage outputTokens(@javax.annotation.Nonnull Long outputTokens) { - + this.outputTokens = outputTokens; return this; } @@ -117,7 +117,7 @@ public void setOutputTokens(@javax.annotation.Nonnull Long outputTokens) { } public ResponseUsage totalTokens(@javax.annotation.Nonnull Long totalTokens) { - + this.totalTokens = totalTokens; return this; } @@ -142,7 +142,7 @@ public void setTotalTokens(@javax.annotation.Nonnull Long totalTokens) { } public ResponseUsage inputTokensDetails(@javax.annotation.Nonnull InputTokensDetails inputTokensDetails) { - + this.inputTokensDetails = inputTokensDetails; return this; } @@ -167,7 +167,7 @@ public void setInputTokensDetails(@javax.annotation.Nonnull InputTokensDetails i } public ResponseUsage outputTokensDetails(@javax.annotation.Nonnull OutputTokensDetails outputTokensDetails) { - + this.outputTokensDetails = outputTokensDetails; return this; } @@ -192,7 +192,7 @@ public void setOutputTokensDetails(@javax.annotation.Nonnull OutputTokensDetails } public ResponseUsage toolUsage(@javax.annotation.Nullable ToolUsage toolUsage) { - + this.toolUsage = toolUsage; return this; } @@ -217,7 +217,7 @@ public void setToolUsage(@javax.annotation.Nullable ToolUsage toolUsage) { } public ResponseUsage toolUsageDetails(@javax.annotation.Nullable ToolUsageDetails toolUsageDetails) { - + this.toolUsageDetails = toolUsageDetails; return this; } @@ -373,4 +373,3 @@ public ResponseUsage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallCompletedEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallCompletedEvent.java index 75602e1..1a1fcfc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallCompletedEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallCompletedEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseWebSearchCallCompletedEvent() { } public ResponseWebSearchCallCompletedEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseWebSearchCallCompletedEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseWebSearchCallCompletedEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseWebSearchCallCompletedEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseWebSearchCallCompletedEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallInProgressEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallInProgressEvent.java index 5effea3..ed9b01a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallInProgressEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallInProgressEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseWebSearchCallInProgressEvent() { } public ResponseWebSearchCallInProgressEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseWebSearchCallInProgressEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseWebSearchCallInProgressEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseWebSearchCallInProgressEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseWebSearchCallInProgressEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallSearchingEvent.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallSearchingEvent.java index 1abdca5..a0d011b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallSearchingEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponseWebSearchCallSearchingEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ResponseWebSearchCallSearchingEvent() { } public ResponseWebSearchCallSearchingEvent type(@javax.annotation.Nonnull ResponseStreamEventType type) { - + this.type = type; return this; } @@ -77,7 +77,7 @@ public void setType(@javax.annotation.Nonnull ResponseStreamEventType type) { } public ResponseWebSearchCallSearchingEvent itemId(@javax.annotation.Nonnull String itemId) { - + this.itemId = itemId; return this; } @@ -102,7 +102,7 @@ public void setItemId(@javax.annotation.Nonnull String itemId) { } public ResponseWebSearchCallSearchingEvent outputIndex(@javax.annotation.Nonnull Long outputIndex) { - + this.outputIndex = outputIndex; return this; } @@ -127,7 +127,7 @@ public void setOutputIndex(@javax.annotation.Nonnull Long outputIndex) { } public ResponseWebSearchCallSearchingEvent sequenceNumber(@javax.annotation.Nonnull Long sequenceNumber) { - + this.sequenceNumber = sequenceNumber; return this; } @@ -262,4 +262,3 @@ public ResponseWebSearchCallSearchingEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponsesInput.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponsesInput.java index f7c2c8b..bf1b981 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponsesInput.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponsesInput.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponsesRequest.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponsesRequest.java index 58e547a..8698ff3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ResponsesRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ResponsesRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -154,7 +154,7 @@ public ResponsesRequest() { } public ResponsesRequest input(@javax.annotation.Nonnull ResponsesInput input) { - + this.input = input; return this; } @@ -179,7 +179,7 @@ public void setInput(@javax.annotation.Nonnull ResponsesInput input) { } public ResponsesRequest model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -204,7 +204,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public ResponsesRequest maxOutputTokens(@javax.annotation.Nullable Long maxOutputTokens) { - + this.maxOutputTokens = maxOutputTokens; return this; } @@ -229,7 +229,7 @@ public void setMaxOutputTokens(@javax.annotation.Nullable Long maxOutputTokens) } public ResponsesRequest previousResponseId(@javax.annotation.Nullable String previousResponseId) { - + this.previousResponseId = previousResponseId; return this; } @@ -254,7 +254,7 @@ public void setPreviousResponseId(@javax.annotation.Nullable String previousResp } public ResponsesRequest thinking(@javax.annotation.Nullable Thinking thinking) { - + this.thinking = thinking; return this; } @@ -279,7 +279,7 @@ public void setThinking(@javax.annotation.Nullable Thinking thinking) { } public ResponsesRequest serviceTier(@javax.annotation.Nullable ServiceTier serviceTier) { - + this.serviceTier = serviceTier; return this; } @@ -304,7 +304,7 @@ public void setServiceTier(@javax.annotation.Nullable ServiceTier serviceTier) { } public ResponsesRequest store(@javax.annotation.Nullable Boolean store) { - + this.store = store; return this; } @@ -329,7 +329,7 @@ public void setStore(@javax.annotation.Nullable Boolean store) { } public ResponsesRequest stream(@javax.annotation.Nullable Boolean stream) { - + this.stream = stream; return this; } @@ -354,7 +354,7 @@ public void setStream(@javax.annotation.Nullable Boolean stream) { } public ResponsesRequest temperature(@javax.annotation.Nullable Double temperature) { - + this.temperature = temperature; return this; } @@ -379,7 +379,7 @@ public void setTemperature(@javax.annotation.Nullable Double temperature) { } public ResponsesRequest tools(@javax.annotation.Nullable List tools) { - + this.tools = tools; return this; } @@ -412,7 +412,7 @@ public void setTools(@javax.annotation.Nullable List tools) { } public ResponsesRequest topP(@javax.annotation.Nullable Double topP) { - + this.topP = topP; return this; } @@ -437,7 +437,7 @@ public void setTopP(@javax.annotation.Nullable Double topP) { } public ResponsesRequest instructions(@javax.annotation.Nullable String instructions) { - + this.instructions = instructions; return this; } @@ -462,7 +462,7 @@ public void setInstructions(@javax.annotation.Nullable String instructions) { } public ResponsesRequest include(@javax.annotation.Nullable List include) { - + this.include = include; return this; } @@ -495,7 +495,7 @@ public void setInclude(@javax.annotation.Nullable List inclu } public ResponsesRequest caching(@javax.annotation.Nullable ResponseCaching caching) { - + this.caching = caching; return this; } @@ -520,7 +520,7 @@ public void setCaching(@javax.annotation.Nullable ResponseCaching caching) { } public ResponsesRequest text(@javax.annotation.Nullable ResponseTextConfig text) { - + this.text = text; return this; } @@ -545,7 +545,7 @@ public void setText(@javax.annotation.Nullable ResponseTextConfig text) { } public ResponsesRequest expireAt(@javax.annotation.Nullable Long expireAt) { - + this.expireAt = expireAt; return this; } @@ -570,7 +570,7 @@ public void setExpireAt(@javax.annotation.Nullable Long expireAt) { } public ResponsesRequest toolChoice(@javax.annotation.Nullable ToolChoice toolChoice) { - + this.toolChoice = toolChoice; return this; } @@ -595,7 +595,7 @@ public void setToolChoice(@javax.annotation.Nullable ToolChoice toolChoice) { } public ResponsesRequest parallelToolCalls(@javax.annotation.Nullable Boolean parallelToolCalls) { - + this.parallelToolCalls = parallelToolCalls; return this; } @@ -620,7 +620,7 @@ public void setParallelToolCalls(@javax.annotation.Nullable Boolean parallelTool } public ResponsesRequest maxToolCalls(@javax.annotation.Nullable Long maxToolCalls) { - + this.maxToolCalls = maxToolCalls; return this; } @@ -645,7 +645,7 @@ public void setMaxToolCalls(@javax.annotation.Nullable Long maxToolCalls) { } public ResponsesRequest reasoning(@javax.annotation.Nullable Reasoning reasoning) { - + this.reasoning = reasoning; return this; } @@ -670,7 +670,7 @@ public void setReasoning(@javax.annotation.Nullable Reasoning reasoning) { } public ResponsesRequest contextManagement(@javax.annotation.Nullable ContextManagement contextManagement) { - + this.contextManagement = contextManagement; return this; } @@ -695,7 +695,7 @@ public void setContextManagement(@javax.annotation.Nullable ContextManagement co } public ResponsesRequest session(@javax.annotation.Nullable Session session) { - + this.session = session; return this; } @@ -720,7 +720,7 @@ public void setSession(@javax.annotation.Nullable Session session) { } public ResponsesRequest promptCacheKey(@javax.annotation.Nullable String promptCacheKey) { - + this.promptCacheKey = promptCacheKey; return this; } @@ -745,7 +745,7 @@ public void setPromptCacheKey(@javax.annotation.Nullable String promptCacheKey) } public ResponsesRequest safetyIdentifier(@javax.annotation.Nullable String safetyIdentifier) { - + this.safetyIdentifier = safetyIdentifier; return this; } @@ -1020,4 +1020,3 @@ public ResponsesRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ServiceTier.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ServiceTier.java index 5afed91..fa57445 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ServiceTier.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ServiceTier.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets ServiceTier */ public enum ServiceTier { - + AUTO("auto"), - + DEFAULT("default"); private String value; @@ -55,4 +55,3 @@ public static ServiceTier fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/Session.java b/src/main/java/com/volcengine/ark/runtime/models/responses/Session.java index ddca79a..26115eb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/Session.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/Session.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public Session() { } public Session id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -151,4 +151,3 @@ public Session.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/TextFormat.java b/src/main/java/com/volcengine/ark/runtime/models/responses/TextFormat.java index 6192554..a1a05dd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/TextFormat.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/TextFormat.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public TextFormat() { } public TextFormat type(@javax.annotation.Nonnull TextFormatType type) { - + this.type = type; return this; } @@ -84,7 +84,7 @@ public void setType(@javax.annotation.Nonnull TextFormatType type) { } public TextFormat schema(@javax.annotation.Nullable Map schema) { - + this.schema = schema; return this; } @@ -117,7 +117,7 @@ public void setSchema(@javax.annotation.Nullable Map schema) { } public TextFormat name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -142,7 +142,7 @@ public void setName(@javax.annotation.Nullable String name) { } public TextFormat description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -167,7 +167,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public TextFormat strict(@javax.annotation.Nullable Boolean strict) { - + this.strict = strict; return this; } @@ -309,4 +309,3 @@ public TextFormat.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/TextFormatType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/TextFormatType.java index 81e0749..f3a7c91 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/TextFormatType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/TextFormatType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets TextFormatType */ public enum TextFormatType { - + TEXT("text"), - + JSON_OBJECT("json_object"), - + JSON_SCHEMA("json_schema"); private String value; @@ -57,4 +57,3 @@ public static TextFormatType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/TextTranslationOptions.java b/src/main/java/com/volcengine/ark/runtime/models/responses/TextTranslationOptions.java index 2edeb63..279d6db 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/TextTranslationOptions.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/TextTranslationOptions.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public TextTranslationOptions() { } public TextTranslationOptions sourceLanguage(@javax.annotation.Nonnull String sourceLanguage) { - + this.sourceLanguage = sourceLanguage; return this; } @@ -67,7 +67,7 @@ public void setSourceLanguage(@javax.annotation.Nonnull String sourceLanguage) { } public TextTranslationOptions targetLanguage(@javax.annotation.Nonnull String targetLanguage) { - + this.targetLanguage = targetLanguage; return this; } @@ -188,4 +188,3 @@ public TextTranslationOptions.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/Thinking.java b/src/main/java/com/volcengine/ark/runtime/models/responses/Thinking.java index 698d423..528f73a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/Thinking.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/Thinking.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public Thinking() { } public Thinking type(@javax.annotation.Nullable ThinkingMode type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public Thinking.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ThinkingMode.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ThinkingMode.java index 56d1d80..ead5539 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ThinkingMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ThinkingMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets ThinkingMode */ public enum ThinkingMode { - + ENABLED("enabled"), - + DISABLED("disabled"), - + AUTO("auto"); private String value; @@ -57,4 +57,3 @@ public static ThinkingMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ThinkingTurnsParam.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ThinkingTurnsParam.java index cad1eea..e74e3f9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ThinkingTurnsParam.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ThinkingTurnsParam.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public ThinkingTurnsParam() { } public ThinkingTurnsParam type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public ThinkingTurnsParam value(@javax.annotation.Nonnull Integer value) { - + this.value = value; return this; } @@ -223,4 +223,3 @@ public ThinkingTurnsParam.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/Tool.java b/src/main/java/com/volcengine/ark/runtime/models/responses/Tool.java index 00c48c5..3cc2cdb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/Tool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/Tool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -33,4 +33,3 @@ public interface Tool { public ToolType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoice.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoice.java index 379f806..ed01e3f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoice.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoice.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceFunction.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceFunction.java index 882c39a..5b34644 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceFunction.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceFunction.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ToolChoiceFunction() { } public ToolChoiceFunction name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -67,7 +67,7 @@ public void setName(@javax.annotation.Nonnull String name) { } public ToolChoiceFunction type(@javax.annotation.Nonnull TypedToolChoiceType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public ToolChoiceFunction.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceKnowledgeSearch.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceKnowledgeSearch.java index 0c180a8..ae3ef75 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceKnowledgeSearch.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceKnowledgeSearch.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ToolChoiceKnowledgeSearch() { } public ToolChoiceKnowledgeSearch type(@javax.annotation.Nonnull TypedToolChoiceType type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public ToolChoiceKnowledgeSearch.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceMcp.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceMcp.java index 445632d..1625b74 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceMcp.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceMcp.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ToolChoiceMcp() { } public ToolChoiceMcp type(@javax.annotation.Nonnull TypedToolChoiceType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull TypedToolChoiceType type) { } public ToolChoiceMcp serverLabel(@javax.annotation.Nonnull String serverLabel) { - + this.serverLabel = serverLabel; return this; } @@ -97,7 +97,7 @@ public void setServerLabel(@javax.annotation.Nonnull String serverLabel) { } public ToolChoiceMcp name(@javax.annotation.Nullable String name) { - + this.name = name; return this; } @@ -225,4 +225,3 @@ public ToolChoiceMcp.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceOptions.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceOptions.java index e7c1f09..432dce8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceOptions.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceOptions.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets ToolChoiceOptions */ public enum ToolChoiceOptions { - + AUTO("auto"), - + NONE("none"), - + REQUIRED("required"); private String value; @@ -57,4 +57,3 @@ public static ToolChoiceOptions fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceWebSearch.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceWebSearch.java index 07a8954..dea318f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceWebSearch.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolChoiceWebSearch.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public ToolChoiceWebSearch() { } public ToolChoiceWebSearch type(@javax.annotation.Nonnull TypedToolChoiceType type) { - + this.type = type; return this; } @@ -151,4 +151,3 @@ public ToolChoiceWebSearch.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolNameList.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolNameList.java index e007e87..eaed83c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolNameList.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolNameList.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public ToolNameList() { } public ToolNameList clearToolNames(@javax.annotation.Nonnull List clearToolNames) { - + this.clearToolNames = clearToolNames; return this; } @@ -161,4 +161,3 @@ public ToolNameList.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolType.java index f282159..b9f1ec0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,17 +24,17 @@ * Gets or Sets ToolType */ public enum ToolType { - + DOUBAO_APP("doubao_app"), - + FUNCTION("function"), - + IMAGE_PROCESS("image_process"), - + KNOWLEDGE_SEARCH("knowledge_search"), - + MCP("mcp"), - + WEB_SEARCH("web_search"); private String value; @@ -63,4 +63,3 @@ public static ToolType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsage.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsage.java index 88d8317..a8a0506 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ToolUsage() { } public ToolUsage webSearch(@javax.annotation.Nullable Long webSearch) { - + this.webSearch = webSearch; return this; } @@ -77,7 +77,7 @@ public void setWebSearch(@javax.annotation.Nullable Long webSearch) { } public ToolUsage mcp(@javax.annotation.Nullable Long mcp) { - + this.mcp = mcp; return this; } @@ -102,7 +102,7 @@ public void setMcp(@javax.annotation.Nullable Long mcp) { } public ToolUsage knowledgeSearch(@javax.annotation.Nullable Long knowledgeSearch) { - + this.knowledgeSearch = knowledgeSearch; return this; } @@ -127,7 +127,7 @@ public void setKnowledgeSearch(@javax.annotation.Nullable Long knowledgeSearch) } public ToolUsage doubaoApp(@javax.annotation.Nullable Long doubaoApp) { - + this.doubaoApp = doubaoApp; return this; } @@ -262,4 +262,3 @@ public ToolUsage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsageDetails.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsageDetails.java index b069103..b465b37 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsageDetails.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsageDetails.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public ToolUsageDetails() { } public ToolUsageDetails webSearch(@javax.annotation.Nullable Map webSearch) { - + this.webSearch = webSearch; return this; } @@ -87,7 +87,7 @@ public void setWebSearch(@javax.annotation.Nullable Map webSearc } public ToolUsageDetails mcp(@javax.annotation.Nullable Map mcp) { - + this.mcp = mcp; return this; } @@ -120,7 +120,7 @@ public void setMcp(@javax.annotation.Nullable Map mcp) { } public ToolUsageDetails knowledgeSearch(@javax.annotation.Nullable Map knowledgeSearch) { - + this.knowledgeSearch = knowledgeSearch; return this; } @@ -153,7 +153,7 @@ public void setKnowledgeSearch(@javax.annotation.Nullable Map kn } public ToolUsageDetails doubaoApp(@javax.annotation.Nullable Map doubaoApp) { - + this.doubaoApp = doubaoApp; return this; } @@ -296,4 +296,3 @@ public ToolUsageDetails.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsesKeep.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsesKeep.java index 7e65b99..95d09fc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsesKeep.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsesKeep.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public ToolUsesKeep() { } public ToolUsesKeep type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public ToolUsesKeep value(@javax.annotation.Nonnull Integer value) { - + this.value = value; return this; } @@ -223,4 +223,3 @@ public ToolUsesKeep.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsesTrigger.java b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsesTrigger.java index eb0d673..2035a97 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsesTrigger.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/ToolUsesTrigger.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public ToolUsesTrigger() { } public ToolUsesTrigger type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public ToolUsesTrigger value(@javax.annotation.Nonnull Integer value) { - + this.value = value; return this; } @@ -223,4 +223,3 @@ public ToolUsesTrigger.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/TranscriptionPart.java b/src/main/java/com/volcengine/ark/runtime/models/responses/TranscriptionPart.java index f184b58..9577ee2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/TranscriptionPart.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/TranscriptionPart.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -84,7 +84,7 @@ public TranscriptionPart() { } public TranscriptionPart type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -109,7 +109,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public TranscriptionPart text(@javax.annotation.Nullable String text) { - + this.text = text; return this; } @@ -134,7 +134,7 @@ public void setText(@javax.annotation.Nullable String text) { } public TranscriptionPart chunks(@javax.annotation.Nullable List chunks) { - + this.chunks = chunks; return this; } @@ -270,4 +270,3 @@ public TranscriptionPart.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/TruncationMode.java b/src/main/java/com/volcengine/ark/runtime/models/responses/TruncationMode.java index e9fb4ea..87213ec 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/TruncationMode.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/TruncationMode.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets TruncationMode */ public enum TruncationMode { - + AUTO("auto"), - + DISABLED("disabled"); private String value; @@ -55,4 +55,3 @@ public static TruncationMode fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/TypedToolChoice.java b/src/main/java/com/volcengine/ark/runtime/models/responses/TypedToolChoice.java index 95008c6..ae0ae03 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/TypedToolChoice.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/TypedToolChoice.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,4 +31,3 @@ public interface TypedToolChoice { public TypedToolChoiceType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/TypedToolChoiceType.java b/src/main/java/com/volcengine/ark/runtime/models/responses/TypedToolChoiceType.java index 82a248d..689b4f4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/TypedToolChoiceType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/TypedToolChoiceType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets TypedToolChoiceType */ public enum TypedToolChoiceType { - + FUNCTION("function"), - + KNOWLEDGE_SEARCH("knowledge_search"), - + MCP("mcp"), - + WEB_SEARCH("web_search"); private String value; @@ -59,4 +59,3 @@ public static TypedToolChoiceType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/UrlCitation.java b/src/main/java/com/volcengine/ark/runtime/models/responses/UrlCitation.java index 9e7abca..766f2f6 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/UrlCitation.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/UrlCitation.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -82,7 +82,7 @@ public UrlCitation() { } public UrlCitation type(@javax.annotation.Nonnull AnnotationType type) { - + this.type = type; return this; } @@ -107,7 +107,7 @@ public void setType(@javax.annotation.Nonnull AnnotationType type) { } public UrlCitation title(@javax.annotation.Nonnull String title) { - + this.title = title; return this; } @@ -132,7 +132,7 @@ public void setTitle(@javax.annotation.Nonnull String title) { } public UrlCitation url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -157,7 +157,7 @@ public void setUrl(@javax.annotation.Nonnull String url) { } public UrlCitation logoUrl(@javax.annotation.Nullable String logoUrl) { - + this.logoUrl = logoUrl; return this; } @@ -182,7 +182,7 @@ public void setLogoUrl(@javax.annotation.Nullable String logoUrl) { } public UrlCitation mobileUrl(@javax.annotation.Nullable String mobileUrl) { - + this.mobileUrl = mobileUrl; return this; } @@ -207,7 +207,7 @@ public void setMobileUrl(@javax.annotation.Nullable String mobileUrl) { } public UrlCitation siteName(@javax.annotation.Nullable String siteName) { - + this.siteName = siteName; return this; } @@ -232,7 +232,7 @@ public void setSiteName(@javax.annotation.Nullable String siteName) { } public UrlCitation publishTime(@javax.annotation.Nullable String publishTime) { - + this.publishTime = publishTime; return this; } @@ -257,7 +257,7 @@ public void setPublishTime(@javax.annotation.Nullable String publishTime) { } public UrlCitation coverImage(@javax.annotation.Nullable CoverImage coverImage) { - + this.coverImage = coverImage; return this; } @@ -282,7 +282,7 @@ public void setCoverImage(@javax.annotation.Nullable CoverImage coverImage) { } public UrlCitation summary(@javax.annotation.Nullable String summary) { - + this.summary = summary; return this; } @@ -307,7 +307,7 @@ public void setSummary(@javax.annotation.Nullable String summary) { } public UrlCitation freshnessInfo(@javax.annotation.Nullable String freshnessInfo) { - + this.freshnessInfo = freshnessInfo; return this; } @@ -484,4 +484,3 @@ public UrlCitation.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/UserLocation.java b/src/main/java/com/volcengine/ark/runtime/models/responses/UserLocation.java index 958beea..81cb680 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/UserLocation.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/UserLocation.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -92,7 +92,7 @@ public UserLocation() { } public UserLocation type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -117,7 +117,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public UserLocation city(@javax.annotation.Nullable String city) { - + this.city = city; return this; } @@ -142,7 +142,7 @@ public void setCity(@javax.annotation.Nullable String city) { } public UserLocation country(@javax.annotation.Nullable String country) { - + this.country = country; return this; } @@ -167,7 +167,7 @@ public void setCountry(@javax.annotation.Nullable String country) { } public UserLocation region(@javax.annotation.Nullable String region) { - + this.region = region; return this; } @@ -192,7 +192,7 @@ public void setRegion(@javax.annotation.Nullable String region) { } public UserLocation timezone(@javax.annotation.Nullable Double timezone) { - + this.timezone = timezone; return this; } @@ -334,4 +334,3 @@ public UserLocation.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchAction.java b/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchAction.java index e6ea4ec..b987044 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchAction.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchAction.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public WebSearchAction() { } public WebSearchAction type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public WebSearchAction query(@javax.annotation.Nonnull String query) { - + this.query = query; return this; } @@ -223,4 +223,3 @@ public WebSearchAction.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchSource.java b/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchSource.java index 49144c8..41e1359 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchSource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchSource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets WebSearchSource */ public enum WebSearchSource { - + TOUTIAO("toutiao"), - + DOUYIN("douyin"), - + MOJI("moji"), - + SEARCH_ENGINE("search_engine"); private String value; @@ -59,4 +59,3 @@ public static WebSearchSource fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchTool.java b/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchTool.java index 1b619c9..db4caa1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchTool.java +++ b/src/main/java/com/volcengine/ark/runtime/models/responses/WebSearchTool.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public WebSearchTool() { } public WebSearchTool type(@javax.annotation.Nonnull ToolType type) { - + this.type = type; return this; } @@ -84,7 +84,7 @@ public void setType(@javax.annotation.Nonnull ToolType type) { } public WebSearchTool limit(@javax.annotation.Nullable Long limit) { - + this.limit = limit; return this; } @@ -109,7 +109,7 @@ public void setLimit(@javax.annotation.Nullable Long limit) { } public WebSearchTool userLocation(@javax.annotation.Nullable UserLocation userLocation) { - + this.userLocation = userLocation; return this; } @@ -134,7 +134,7 @@ public void setUserLocation(@javax.annotation.Nullable UserLocation userLocation } public WebSearchTool sources(@javax.annotation.Nullable List sources) { - + this.sources = sources; return this; } @@ -167,7 +167,7 @@ public void setSources(@javax.annotation.Nullable List sources) } public WebSearchTool maxKeyword(@javax.annotation.Nullable Integer maxKeyword) { - + this.maxKeyword = maxKeyword; return this; } @@ -309,4 +309,3 @@ public WebSearchTool.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/AgentIdentifier.java b/src/main/java/com/volcengine/ark/runtime/models/session/AgentIdentifier.java index 6d50f4b..7f2445f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/AgentIdentifier.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/AgentIdentifier.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/AgentRef.java b/src/main/java/com/volcengine/ark/runtime/models/session/AgentRef.java index 1d4ef40..0b0d95a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/AgentRef.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/AgentRef.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -82,7 +82,7 @@ public AgentRef() { } public AgentRef type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -107,7 +107,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public AgentRef id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -132,7 +132,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public AgentRef version(@javax.annotation.Nullable Integer version) { - + this.version = version; return this; } @@ -260,4 +260,3 @@ public AgentRef.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/Base64DocumentSource.java b/src/main/java/com/volcengine/ark/runtime/models/session/Base64DocumentSource.java index 89409f0..8531ceb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/Base64DocumentSource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/Base64DocumentSource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public Base64DocumentSource() { } public Base64DocumentSource data(@javax.annotation.Nonnull String data) { - + this.data = data; return this; } @@ -72,7 +72,7 @@ public void setData(@javax.annotation.Nonnull String data) { } public Base64DocumentSource mediaType(@javax.annotation.Nonnull String mediaType) { - + this.mediaType = mediaType; return this; } @@ -97,7 +97,7 @@ public void setMediaType(@javax.annotation.Nonnull String mediaType) { } public Base64DocumentSource type(@javax.annotation.Nonnull DocumentSourceType type) { - + this.type = type; return this; } @@ -225,4 +225,3 @@ public Base64DocumentSource.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/Base64ImageSource.java b/src/main/java/com/volcengine/ark/runtime/models/session/Base64ImageSource.java index ff490cb..0812152 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/Base64ImageSource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/Base64ImageSource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public Base64ImageSource() { } public Base64ImageSource data(@javax.annotation.Nonnull String data) { - + this.data = data; return this; } @@ -72,7 +72,7 @@ public void setData(@javax.annotation.Nonnull String data) { } public Base64ImageSource mediaType(@javax.annotation.Nonnull String mediaType) { - + this.mediaType = mediaType; return this; } @@ -97,7 +97,7 @@ public void setMediaType(@javax.annotation.Nonnull String mediaType) { } public Base64ImageSource type(@javax.annotation.Nonnull ImageSourceType type) { - + this.type = type; return this; } @@ -225,4 +225,3 @@ public Base64ImageSource.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/CacheCreation.java b/src/main/java/com/volcengine/ark/runtime/models/session/CacheCreation.java index 1c837cb..edee90a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/CacheCreation.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/CacheCreation.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public CacheCreation() { } public CacheCreation ephemeral1hInputTokens(@javax.annotation.Nullable Long ephemeral1hInputTokens) { - + this.ephemeral1hInputTokens = ephemeral1hInputTokens; return this; } @@ -67,7 +67,7 @@ public void setEphemeral1hInputTokens(@javax.annotation.Nullable Long ephemeral1 } public CacheCreation ephemeral5mInputTokens(@javax.annotation.Nullable Long ephemeral5mInputTokens) { - + this.ephemeral5mInputTokens = ephemeral5mInputTokens; return this; } @@ -188,4 +188,3 @@ public CacheCreation.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ContentBlockType.java b/src/main/java/com/volcengine/ark/runtime/models/session/ContentBlockType.java index 819c5d5..2e2f15c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ContentBlockType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ContentBlockType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets ContentBlockType */ public enum ContentBlockType { - + DOCUMENT("document"), - + IMAGE("image"), - + SEARCH_RESULT("search_result"), - + TEXT("text"); private String value; @@ -59,4 +59,3 @@ public static ContentBlockType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/CreateSessionRequest.java b/src/main/java/com/volcengine/ark/runtime/models/session/CreateSessionRequest.java index f3c749e..6314930 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/CreateSessionRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/CreateSessionRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -64,7 +64,7 @@ public CreateSessionRequest() { } public CreateSessionRequest agent(@javax.annotation.Nonnull AgentIdentifier agent) { - + this.agent = agent; return this; } @@ -89,7 +89,7 @@ public void setAgent(@javax.annotation.Nonnull AgentIdentifier agent) { } public CreateSessionRequest environmentId(@javax.annotation.Nonnull String environmentId) { - + this.environmentId = environmentId; return this; } @@ -114,7 +114,7 @@ public void setEnvironmentId(@javax.annotation.Nonnull String environmentId) { } public CreateSessionRequest tags(@javax.annotation.Nullable List tags) { - + this.tags = tags; return this; } @@ -147,7 +147,7 @@ public void setTags(@javax.annotation.Nullable List tags) { } public CreateSessionRequest resources(@javax.annotation.Nullable List resources) { - + this.resources = resources; return this; } @@ -180,7 +180,7 @@ public void setResources(@javax.annotation.Nullable List resour } public CreateSessionRequest title(@javax.annotation.Nullable String title) { - + this.title = title; return this; } @@ -205,7 +205,7 @@ public void setTitle(@javax.annotation.Nullable String title) { } public CreateSessionRequest vaultIds(@javax.annotation.Nullable List vaultIds) { - + this.vaultIds = vaultIds; return this; } @@ -362,4 +362,3 @@ public CreateSessionRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/CreateSessionResourceRequest.java b/src/main/java/com/volcengine/ark/runtime/models/session/CreateSessionResourceRequest.java index cedaff8..ceccbce 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/CreateSessionResourceRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/CreateSessionResourceRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public CreateSessionResourceRequest() { } public CreateSessionResourceRequest type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public CreateSessionResourceRequest fileId(@javax.annotation.Nonnull String fileId) { - + this.fileId = fileId; return this; } @@ -223,4 +223,3 @@ public CreateSessionResourceRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/DeleteSessionResponse.java b/src/main/java/com/volcengine/ark/runtime/models/session/DeleteSessionResponse.java index 32ccd66..f415fc1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/DeleteSessionResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/DeleteSessionResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public DeleteSessionResponse() { } public DeleteSessionResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -67,7 +67,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public DeleteSessionResponse type(@javax.annotation.Nonnull String type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public DeleteSessionResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/DocumentSource.java b/src/main/java/com/volcengine/ark/runtime/models/session/DocumentSource.java index c6176eb..96d76bb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/DocumentSource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/DocumentSource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,4 +31,3 @@ public interface DocumentSource { public DocumentSourceType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/DocumentSourceType.java b/src/main/java/com/volcengine/ark/runtime/models/session/DocumentSourceType.java index 161c26c..c42a051 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/DocumentSourceType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/DocumentSourceType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Gets or Sets DocumentSourceType */ public enum DocumentSourceType { - + BASE64("base64"), - + FILE("file"), - + TEXT("text"), - + URL("url"); private String value; @@ -59,4 +59,3 @@ public static DocumentSourceType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/FileDocumentSource.java b/src/main/java/com/volcengine/ark/runtime/models/session/FileDocumentSource.java index 28f1339..547e02f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/FileDocumentSource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/FileDocumentSource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public FileDocumentSource() { } public FileDocumentSource fileId(@javax.annotation.Nonnull String fileId) { - + this.fileId = fileId; return this; } @@ -67,7 +67,7 @@ public void setFileId(@javax.annotation.Nonnull String fileId) { } public FileDocumentSource type(@javax.annotation.Nonnull DocumentSourceType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public FileDocumentSource.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/FileImageSource.java b/src/main/java/com/volcengine/ark/runtime/models/session/FileImageSource.java index 2a90f9e..80ff7e4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/FileImageSource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/FileImageSource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public FileImageSource() { } public FileImageSource fileId(@javax.annotation.Nonnull String fileId) { - + this.fileId = fileId; return this; } @@ -67,7 +67,7 @@ public void setFileId(@javax.annotation.Nonnull String fileId) { } public FileImageSource type(@javax.annotation.Nonnull ImageSourceType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public FileImageSource.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ImageSource.java b/src/main/java/com/volcengine/ark/runtime/models/session/ImageSource.java index 3afde2d..18a71ff 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ImageSource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ImageSource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,4 +30,3 @@ public interface ImageSource { public ImageSourceType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ImageSourceType.java b/src/main/java/com/volcengine/ark/runtime/models/session/ImageSourceType.java index ac843f1..7dfd76d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ImageSourceType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ImageSourceType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * Gets or Sets ImageSourceType */ public enum ImageSourceType { - + BASE64("base64"), - + FILE("file"), - + URL("url"); private String value; @@ -57,4 +57,3 @@ public static ImageSourceType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ListEventsRequest.java b/src/main/java/com/volcengine/ark/runtime/models/session/ListEventsRequest.java index d6a5090..c6b1ee9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ListEventsRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ListEventsRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -79,7 +79,7 @@ public ListEventsRequest() { } public ListEventsRequest sessionId(@javax.annotation.Nonnull String sessionId) { - + this.sessionId = sessionId; return this; } @@ -104,7 +104,7 @@ public void setSessionId(@javax.annotation.Nonnull String sessionId) { } public ListEventsRequest createdAtGt(@javax.annotation.Nullable String createdAtGt) { - + this.createdAtGt = createdAtGt; return this; } @@ -129,7 +129,7 @@ public void setCreatedAtGt(@javax.annotation.Nullable String createdAtGt) { } public ListEventsRequest createdAtGte(@javax.annotation.Nullable String createdAtGte) { - + this.createdAtGte = createdAtGte; return this; } @@ -154,7 +154,7 @@ public void setCreatedAtGte(@javax.annotation.Nullable String createdAtGte) { } public ListEventsRequest createdAtLt(@javax.annotation.Nullable String createdAtLt) { - + this.createdAtLt = createdAtLt; return this; } @@ -179,7 +179,7 @@ public void setCreatedAtLt(@javax.annotation.Nullable String createdAtLt) { } public ListEventsRequest createdAtLte(@javax.annotation.Nullable String createdAtLte) { - + this.createdAtLte = createdAtLte; return this; } @@ -204,7 +204,7 @@ public void setCreatedAtLte(@javax.annotation.Nullable String createdAtLte) { } public ListEventsRequest limit(@javax.annotation.Nullable Integer limit) { - + this.limit = limit; return this; } @@ -229,7 +229,7 @@ public void setLimit(@javax.annotation.Nullable Integer limit) { } public ListEventsRequest order(@javax.annotation.Nullable ListSessionsOrder order) { - + this.order = order; return this; } @@ -254,7 +254,7 @@ public void setOrder(@javax.annotation.Nullable ListSessionsOrder order) { } public ListEventsRequest page(@javax.annotation.Nullable String page) { - + this.page = page; return this; } @@ -279,7 +279,7 @@ public void setPage(@javax.annotation.Nullable String page) { } public ListEventsRequest types(@javax.annotation.Nullable List types) { - + this.types = types; return this; } @@ -457,4 +457,3 @@ public ListEventsRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ListRequest.java b/src/main/java/com/volcengine/ark/runtime/models/session/ListRequest.java index e23921f..8c04f6e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ListRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ListRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -89,7 +89,7 @@ public ListRequest() { } public ListRequest agentId(@javax.annotation.Nullable String agentId) { - + this.agentId = agentId; return this; } @@ -114,7 +114,7 @@ public void setAgentId(@javax.annotation.Nullable String agentId) { } public ListRequest agentVersion(@javax.annotation.Nullable Integer agentVersion) { - + this.agentVersion = agentVersion; return this; } @@ -139,7 +139,7 @@ public void setAgentVersion(@javax.annotation.Nullable Integer agentVersion) { } public ListRequest createdAtGt(@javax.annotation.Nullable String createdAtGt) { - + this.createdAtGt = createdAtGt; return this; } @@ -164,7 +164,7 @@ public void setCreatedAtGt(@javax.annotation.Nullable String createdAtGt) { } public ListRequest createdAtGte(@javax.annotation.Nullable String createdAtGte) { - + this.createdAtGte = createdAtGte; return this; } @@ -189,7 +189,7 @@ public void setCreatedAtGte(@javax.annotation.Nullable String createdAtGte) { } public ListRequest createdAtLt(@javax.annotation.Nullable String createdAtLt) { - + this.createdAtLt = createdAtLt; return this; } @@ -214,7 +214,7 @@ public void setCreatedAtLt(@javax.annotation.Nullable String createdAtLt) { } public ListRequest createdAtLte(@javax.annotation.Nullable String createdAtLte) { - + this.createdAtLte = createdAtLte; return this; } @@ -239,7 +239,7 @@ public void setCreatedAtLte(@javax.annotation.Nullable String createdAtLte) { } public ListRequest limit(@javax.annotation.Nullable Integer limit) { - + this.limit = limit; return this; } @@ -264,7 +264,7 @@ public void setLimit(@javax.annotation.Nullable Integer limit) { } public ListRequest memoryStoreId(@javax.annotation.Nullable String memoryStoreId) { - + this.memoryStoreId = memoryStoreId; return this; } @@ -289,7 +289,7 @@ public void setMemoryStoreId(@javax.annotation.Nullable String memoryStoreId) { } public ListRequest order(@javax.annotation.Nullable ListSessionsOrder order) { - + this.order = order; return this; } @@ -314,7 +314,7 @@ public void setOrder(@javax.annotation.Nullable ListSessionsOrder order) { } public ListRequest page(@javax.annotation.Nullable String page) { - + this.page = page; return this; } @@ -339,7 +339,7 @@ public void setPage(@javax.annotation.Nullable String page) { } public ListRequest status(@javax.annotation.Nullable List status) { - + this.status = status; return this; } @@ -531,4 +531,3 @@ public ListRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionEventsResponseWire.java b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionEventsResponseWire.java index 65b7525..76316f3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionEventsResponseWire.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionEventsResponseWire.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -45,7 +45,7 @@ public ListSessionEventsResponseWire() { } public ListSessionEventsResponseWire data(@javax.annotation.Nonnull List> data) { - + this.data = data; return this; } @@ -78,7 +78,7 @@ public void setData(@javax.annotation.Nonnull List> data) { } public ListSessionEventsResponseWire nextPage(@javax.annotation.Nullable String nextPage) { - + this.nextPage = nextPage; return this; } @@ -199,4 +199,3 @@ public ListSessionEventsResponseWire.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionResourcesResponse.java b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionResourcesResponse.java index c1a7440..7bf2af0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionResourcesResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionResourcesResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public ListSessionResourcesResponse() { } public ListSessionResourcesResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -161,4 +161,3 @@ public ListSessionResourcesResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionThreadsResponse.java b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionThreadsResponse.java index 3376378..c0e90eb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionThreadsResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionThreadsResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public ListSessionThreadsResponse() { } public ListSessionThreadsResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -77,7 +77,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public ListSessionThreadsResponse nextPage(@javax.annotation.Nullable String nextPage) { - + this.nextPage = nextPage; return this; } @@ -198,4 +198,3 @@ public ListSessionThreadsResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionsOrder.java b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionsOrder.java index b2244c8..5fe7e4b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionsOrder.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionsOrder.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * ListSessions 排序方向。 */ public enum ListSessionsOrder { - + ASC("asc"), - + DESC("desc"); private String value; @@ -55,4 +55,3 @@ public static ListSessionsOrder fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionsResponse.java b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionsResponse.java index 00178c2..5bd3775 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionsResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ListSessionsResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public ListSessionsResponse() { } public ListSessionsResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -77,7 +77,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public ListSessionsResponse nextPage(@javax.annotation.Nullable String nextPage) { - + this.nextPage = nextPage; return this; } @@ -198,4 +198,3 @@ public ListSessionsResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsAgentMessagePreview.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsAgentMessagePreview.java index df2bd7f..cbdcba3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsAgentMessagePreview.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsAgentMessagePreview.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ManagedAgentsAgentMessagePreview() { } public ManagedAgentsAgentMessagePreview id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -67,7 +67,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public ManagedAgentsAgentMessagePreview type(@javax.annotation.Nonnull ManagedAgentsStartEventPreviewType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public ManagedAgentsAgentMessagePreview.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsAgentThinkingPreview.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsAgentThinkingPreview.java index a28d274..35455c9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsAgentThinkingPreview.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsAgentThinkingPreview.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ManagedAgentsAgentThinkingPreview() { } public ManagedAgentsAgentThinkingPreview id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -67,7 +67,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public ManagedAgentsAgentThinkingPreview type(@javax.annotation.Nonnull ManagedAgentsStartEventPreviewType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public ManagedAgentsAgentThinkingPreview.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaContent.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaContent.java index 7d7b4d0..29af024 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaContent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaContent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -82,7 +82,7 @@ public ManagedAgentsDeltaContent() { } public ManagedAgentsDeltaContent type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -107,7 +107,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public ManagedAgentsDeltaContent content(@javax.annotation.Nonnull ManagedAgentsDeltaTextBlock content) { - + this.content = content; return this; } @@ -132,7 +132,7 @@ public void setContent(@javax.annotation.Nonnull ManagedAgentsDeltaTextBlock con } public ManagedAgentsDeltaContent index(@javax.annotation.Nullable Integer index) { - + this.index = index; return this; } @@ -260,4 +260,3 @@ public ManagedAgentsDeltaContent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaEvent.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaEvent.java index 8554476..9e15964 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ManagedAgentsDeltaEvent() { } public ManagedAgentsDeltaEvent type(@javax.annotation.Nonnull ManagedAgentsStreamPreviewEventType type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull ManagedAgentsStreamPreviewEventTyp } public ManagedAgentsDeltaEvent delta(@javax.annotation.Nonnull ManagedAgentsDeltaContent delta) { - + this.delta = delta; return this; } @@ -97,7 +97,7 @@ public void setDelta(@javax.annotation.Nonnull ManagedAgentsDeltaContent delta) } public ManagedAgentsDeltaEvent eventId(@javax.annotation.Nonnull String eventId) { - + this.eventId = eventId; return this; } @@ -225,4 +225,3 @@ public ManagedAgentsDeltaEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaTextBlock.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaTextBlock.java index 9d6c518..fa15d83 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaTextBlock.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDeltaTextBlock.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public ManagedAgentsDeltaTextBlock() { } public ManagedAgentsDeltaTextBlock type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public ManagedAgentsDeltaTextBlock text(@javax.annotation.Nonnull String text) { - + this.text = text; return this; } @@ -223,4 +223,3 @@ public ManagedAgentsDeltaTextBlock.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDocumentBlock.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDocumentBlock.java index cca6243..c511545 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDocumentBlock.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsDocumentBlock.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public ManagedAgentsDocumentBlock() { } public ManagedAgentsDocumentBlock source(@javax.annotation.Nonnull DocumentSource source) { - + this.source = source; return this; } @@ -77,7 +77,7 @@ public void setSource(@javax.annotation.Nonnull DocumentSource source) { } public ManagedAgentsDocumentBlock title(@javax.annotation.Nullable String title) { - + this.title = title; return this; } @@ -102,7 +102,7 @@ public void setTitle(@javax.annotation.Nullable String title) { } public ManagedAgentsDocumentBlock context(@javax.annotation.Nullable String context) { - + this.context = context; return this; } @@ -127,7 +127,7 @@ public void setContext(@javax.annotation.Nullable String context) { } public ManagedAgentsDocumentBlock type(@javax.annotation.Nonnull ContentBlockType type) { - + this.type = type; return this; } @@ -262,4 +262,3 @@ public ManagedAgentsDocumentBlock.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsEventParams.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsEventParams.java index adceb00..142602f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsEventParams.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsEventParams.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -34,4 +34,3 @@ public interface ManagedAgentsEventParams { public ManagedAgentsEventParamsType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsEventParamsType.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsEventParamsType.java index 9766117..6de8718 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsEventParamsType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsEventParamsType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,19 +24,19 @@ * Gets or Sets ManagedAgentsEventParamsType */ public enum ManagedAgentsEventParamsType { - + SYSTEM_MESSAGE("system.message"), - + USER_CUSTOM_TOOL_RESULT("user.custom_tool_result"), - + USER_DEFINE_OUTCOME("user.define_outcome"), - + USER_INTERRUPT("user.interrupt"), - + USER_MESSAGE("user.message"), - + USER_TOOL_CONFIRMATION("user.tool_confirmation"), - + USER_TOOL_RESULT("user.tool_result"); private String value; @@ -65,4 +65,3 @@ public static ManagedAgentsEventParamsType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsFileRubricParams.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsFileRubricParams.java index ae4884b..d22eb76 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsFileRubricParams.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsFileRubricParams.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ManagedAgentsFileRubricParams() { } public ManagedAgentsFileRubricParams fileId(@javax.annotation.Nonnull String fileId) { - + this.fileId = fileId; return this; } @@ -67,7 +67,7 @@ public void setFileId(@javax.annotation.Nonnull String fileId) { } public ManagedAgentsFileRubricParams type(@javax.annotation.Nonnull ManagedAgentsRubricType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public ManagedAgentsFileRubricParams.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsImageBlock.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsImageBlock.java index 8ec8a30..8ce083d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsImageBlock.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsImageBlock.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ManagedAgentsImageBlock() { } public ManagedAgentsImageBlock source(@javax.annotation.Nonnull ImageSource source) { - + this.source = source; return this; } @@ -67,7 +67,7 @@ public void setSource(@javax.annotation.Nonnull ImageSource source) { } public ManagedAgentsImageBlock type(@javax.annotation.Nonnull ContentBlockType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public ManagedAgentsImageBlock.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsMessageContentBlock.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsMessageContentBlock.java index 5b97ced..e3b1d64 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsMessageContentBlock.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsMessageContentBlock.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -30,4 +30,3 @@ public interface ManagedAgentsMessageContentBlock { public ContentBlockType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsRubric.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsRubric.java index 763763c..8cacb34 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsRubric.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsRubric.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -29,4 +29,3 @@ public interface ManagedAgentsRubric { public ManagedAgentsRubricType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsRubricType.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsRubricType.java index 6420afd..2b8be89 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsRubricType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsRubricType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets ManagedAgentsRubricType */ public enum ManagedAgentsRubricType { - + FILE("file"), - + TEXT("text"); private String value; @@ -55,4 +55,3 @@ public static ManagedAgentsRubricType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSearchResultBlock.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSearchResultBlock.java index 2b30f34..04e7edd 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSearchResultBlock.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSearchResultBlock.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -59,7 +59,7 @@ public ManagedAgentsSearchResultBlock() { } public ManagedAgentsSearchResultBlock citations(@javax.annotation.Nonnull SearchResultCitations citations) { - + this.citations = citations; return this; } @@ -84,7 +84,7 @@ public void setCitations(@javax.annotation.Nonnull SearchResultCitations citatio } public ManagedAgentsSearchResultBlock content(@javax.annotation.Nonnull List content) { - + this.content = content; return this; } @@ -117,7 +117,7 @@ public void setContent(@javax.annotation.Nonnull List conte } public ManagedAgentsSearchResultBlock source(@javax.annotation.Nonnull String source) { - + this.source = source; return this; } @@ -142,7 +142,7 @@ public void setSource(@javax.annotation.Nonnull String source) { } public ManagedAgentsSearchResultBlock title(@javax.annotation.Nonnull String title) { - + this.title = title; return this; } @@ -167,7 +167,7 @@ public void setTitle(@javax.annotation.Nonnull String title) { } public ManagedAgentsSearchResultBlock type(@javax.annotation.Nonnull ContentBlockType type) { - + this.type = type; return this; } @@ -309,4 +309,3 @@ public ManagedAgentsSearchResultBlock.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSessionEvent.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSessionEvent.java index 0ac7b43..dc940e8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSessionEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSessionEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public ManagedAgentsSessionEvent() { } public ManagedAgentsSessionEvent type(@javax.annotation.Nonnull String type) { - + this.type = type; return this; } @@ -72,7 +72,7 @@ public void setType(@javax.annotation.Nonnull String type) { } public ManagedAgentsSessionEvent id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -97,7 +97,7 @@ public void setId(@javax.annotation.Nullable String id) { } public ManagedAgentsSessionEvent processedAt(@javax.annotation.Nullable String processedAt) { - + this.processedAt = processedAt; return this; } @@ -225,4 +225,3 @@ public ManagedAgentsSessionEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEvent.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEvent.java index 8ccc6c7..42a75be 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ManagedAgentsStartEvent() { } public ManagedAgentsStartEvent type(@javax.annotation.Nonnull ManagedAgentsStreamPreviewEventType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull ManagedAgentsStreamPreviewEventTyp } public ManagedAgentsStartEvent event(@javax.annotation.Nonnull ManagedAgentsStartEventPreview event) { - + this.event = event; return this; } @@ -188,4 +188,3 @@ public ManagedAgentsStartEvent.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEventPreview.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEventPreview.java index 077b986..1b6ce82 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEventPreview.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEventPreview.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -29,4 +29,3 @@ public interface ManagedAgentsStartEventPreview { public ManagedAgentsStartEventPreviewType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEventPreviewType.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEventPreviewType.java index b5c981e..c015a66 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEventPreviewType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStartEventPreviewType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets ManagedAgentsStartEventPreviewType */ public enum ManagedAgentsStartEventPreviewType { - + AGENT_MESSAGE("agent.message"), - + AGENT_THINKING("agent.thinking"); private String value; @@ -55,4 +55,3 @@ public static ManagedAgentsStartEventPreviewType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStreamPreviewEvent.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStreamPreviewEvent.java index 79eed83..1f29ecb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStreamPreviewEvent.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStreamPreviewEvent.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -29,4 +29,3 @@ public interface ManagedAgentsStreamPreviewEvent { public ManagedAgentsStreamPreviewEventType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStreamPreviewEventType.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStreamPreviewEventType.java index 1d99dbe..ee199de 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStreamPreviewEventType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsStreamPreviewEventType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * Gets or Sets ManagedAgentsStreamPreviewEventType */ public enum ManagedAgentsStreamPreviewEventType { - + EVENT_DELTA("event_delta"), - + EVENT_START("event_start"); private String value; @@ -55,4 +55,3 @@ public static ManagedAgentsStreamPreviewEventType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSystemMessageEventParams.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSystemMessageEventParams.java index b14aa3b..4fba50a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSystemMessageEventParams.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsSystemMessageEventParams.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -54,7 +54,7 @@ public ManagedAgentsSystemMessageEventParams() { } public ManagedAgentsSystemMessageEventParams content(@javax.annotation.Nullable List content) { - + this.content = content; return this; } @@ -87,7 +87,7 @@ public void setContent(@javax.annotation.Nullable List c } public ManagedAgentsSystemMessageEventParams sessionId(@javax.annotation.Nullable String sessionId) { - + this.sessionId = sessionId; return this; } @@ -112,7 +112,7 @@ public void setSessionId(@javax.annotation.Nullable String sessionId) { } public ManagedAgentsSystemMessageEventParams sessionThreadId(@javax.annotation.Nullable String sessionThreadId) { - + this.sessionThreadId = sessionThreadId; return this; } @@ -137,7 +137,7 @@ public void setSessionThreadId(@javax.annotation.Nullable String sessionThreadId } public ManagedAgentsSystemMessageEventParams type(@javax.annotation.Nonnull ManagedAgentsEventParamsType type) { - + this.type = type; return this; } @@ -272,4 +272,3 @@ public ManagedAgentsSystemMessageEventParams.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsTextBlock.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsTextBlock.java index 9d41a28..5bc2a77 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsTextBlock.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsTextBlock.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ManagedAgentsTextBlock() { } public ManagedAgentsTextBlock text(@javax.annotation.Nonnull String text) { - + this.text = text; return this; } @@ -67,7 +67,7 @@ public void setText(@javax.annotation.Nonnull String text) { } public ManagedAgentsTextBlock type(@javax.annotation.Nonnull ContentBlockType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public ManagedAgentsTextBlock.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsTextRubricParams.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsTextRubricParams.java index 069bda1..dd0a322 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsTextRubricParams.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsTextRubricParams.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ManagedAgentsTextRubricParams() { } public ManagedAgentsTextRubricParams content(@javax.annotation.Nonnull String content) { - + this.content = content; return this; } @@ -67,7 +67,7 @@ public void setContent(@javax.annotation.Nonnull String content) { } public ManagedAgentsTextRubricParams type(@javax.annotation.Nonnull ManagedAgentsRubricType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public ManagedAgentsTextRubricParams.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsToolResultContentBlock.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsToolResultContentBlock.java index cd78a11..9d5ad53 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsToolResultContentBlock.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsToolResultContentBlock.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -31,4 +31,3 @@ public interface ManagedAgentsToolResultContentBlock { public ContentBlockType getType(); } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsUserCustomToolResultEventParams.java b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsUserCustomToolResultEventParams.java index 82a68fa..0c76464 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsUserCustomToolResultEventParams.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ManagedAgentsUserCustomToolResultEventParams.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -64,7 +64,7 @@ public ManagedAgentsUserCustomToolResultEventParams() { } public ManagedAgentsUserCustomToolResultEventParams customToolUseId(@javax.annotation.Nonnull String customToolUseId) { - + this.customToolUseId = customToolUseId; return this; } @@ -89,7 +89,7 @@ public void setCustomToolUseId(@javax.annotation.Nonnull String customToolUseId) } public ManagedAgentsUserCustomToolResultEventParams content(@javax.annotation.Nullable List content) { - + this.content = content; return this; } @@ -122,7 +122,7 @@ public void setContent(@javax.annotation.Nullable List content) { - + this.content = content; return this; } @@ -82,7 +82,7 @@ public void setContent(@javax.annotation.Nullable List content) { - + this.content = content; return this; } @@ -122,7 +122,7 @@ public void setContent(@javax.annotation.Nullable List events) { - + this.events = events; return this; } @@ -161,4 +161,3 @@ public SendSessionEventsRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/SendSessionEventsResponse.java b/src/main/java/com/volcengine/ark/runtime/models/session/SendSessionEventsResponse.java index f627d2f..093946a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/SendSessionEventsResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/SendSessionEventsResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public SendSessionEventsResponse() { } public SendSessionEventsResponse success(@javax.annotation.Nullable Boolean success) { - + this.success = success; return this; } @@ -151,4 +151,3 @@ public SendSessionEventsResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/Session.java b/src/main/java/com/volcengine/ark/runtime/models/session/Session.java index 07e2014..52911b8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/Session.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/Session.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -135,7 +135,7 @@ public Session() { } public Session id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -160,7 +160,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public Session type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -185,7 +185,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public Session status(@javax.annotation.Nonnull SessionStatus status) { - + this.status = status; return this; } @@ -210,7 +210,7 @@ public void setStatus(@javax.annotation.Nonnull SessionStatus status) { } public Session environmentId(@javax.annotation.Nonnull String environmentId) { - + this.environmentId = environmentId; return this; } @@ -235,7 +235,7 @@ public void setEnvironmentId(@javax.annotation.Nonnull String environmentId) { } public Session agent(@javax.annotation.Nonnull Map agent) { - + this.agent = agent; return this; } @@ -265,7 +265,7 @@ public void setAgent(@javax.annotation.Nonnull Map agent) { } public Session createdAt(@javax.annotation.Nonnull String createdAt) { - + this.createdAt = createdAt; return this; } @@ -290,7 +290,7 @@ public void setCreatedAt(@javax.annotation.Nonnull String createdAt) { } public Session updatedAt(@javax.annotation.Nonnull String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -315,7 +315,7 @@ public void setUpdatedAt(@javax.annotation.Nonnull String updatedAt) { } public Session archivedAt(@javax.annotation.Nullable String archivedAt) { - + this.archivedAt = archivedAt; return this; } @@ -340,7 +340,7 @@ public void setArchivedAt(@javax.annotation.Nullable String archivedAt) { } public Session title(@javax.annotation.Nullable String title) { - + this.title = title; return this; } @@ -365,7 +365,7 @@ public void setTitle(@javax.annotation.Nullable String title) { } public Session resources(@javax.annotation.Nullable List resources) { - + this.resources = resources; return this; } @@ -398,7 +398,7 @@ public void setResources(@javax.annotation.Nullable List resour } public Session vaultIds(@javax.annotation.Nullable List vaultIds) { - + this.vaultIds = vaultIds; return this; } @@ -431,7 +431,7 @@ public void setVaultIds(@javax.annotation.Nullable List vaultIds) { } public Session usage(@javax.annotation.Nullable SessionUsage usage) { - + this.usage = usage; return this; } @@ -456,7 +456,7 @@ public void setUsage(@javax.annotation.Nullable SessionUsage usage) { } public Session tags(@javax.annotation.Nullable List tags) { - + this.tags = tags; return this; } @@ -662,4 +662,3 @@ public Session.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/SessionResource.java b/src/main/java/com/volcengine/ark/runtime/models/session/SessionResource.java index b89c533..4ec80d9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/SessionResource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/SessionResource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -87,7 +87,7 @@ public SessionResource() { } public SessionResource id(@javax.annotation.Nullable String id) { - + this.id = id; return this; } @@ -112,7 +112,7 @@ public void setId(@javax.annotation.Nullable String id) { } public SessionResource type(@javax.annotation.Nonnull SessionResourceType type) { - + this.type = type; return this; } @@ -137,7 +137,7 @@ public void setType(@javax.annotation.Nonnull SessionResourceType type) { } public SessionResource fileId(@javax.annotation.Nullable String fileId) { - + this.fileId = fileId; return this; } @@ -162,7 +162,7 @@ public void setFileId(@javax.annotation.Nullable String fileId) { } public SessionResource memoryStoreId(@javax.annotation.Nullable String memoryStoreId) { - + this.memoryStoreId = memoryStoreId; return this; } @@ -187,7 +187,7 @@ public void setMemoryStoreId(@javax.annotation.Nullable String memoryStoreId) { } public SessionResource access(@javax.annotation.Nullable SessionResourceAccess access) { - + this.access = access; return this; } @@ -212,7 +212,7 @@ public void setAccess(@javax.annotation.Nullable SessionResourceAccess access) { } public SessionResource mountPath(@javax.annotation.Nullable String mountPath) { - + this.mountPath = mountPath; return this; } @@ -237,7 +237,7 @@ public void setMountPath(@javax.annotation.Nullable String mountPath) { } public SessionResource createdAt(@javax.annotation.Nullable String createdAt) { - + this.createdAt = createdAt; return this; } @@ -262,7 +262,7 @@ public void setCreatedAt(@javax.annotation.Nullable String createdAt) { } public SessionResource updatedAt(@javax.annotation.Nullable String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -287,7 +287,7 @@ public void setUpdatedAt(@javax.annotation.Nullable String updatedAt) { } public SessionResource tosBucket(@javax.annotation.Nullable String tosBucket) { - + this.tosBucket = tosBucket; return this; } @@ -312,7 +312,7 @@ public void setTosBucket(@javax.annotation.Nullable String tosBucket) { } public SessionResource tosKey(@javax.annotation.Nullable String tosKey) { - + this.tosKey = tosKey; return this; } @@ -337,7 +337,7 @@ public void setTosKey(@javax.annotation.Nullable String tosKey) { } public SessionResource tosRegion(@javax.annotation.Nullable String tosRegion) { - + this.tosRegion = tosRegion; return this; } @@ -521,4 +521,3 @@ public SessionResource.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/SessionResourceAccess.java b/src/main/java/com/volcengine/ark/runtime/models/session/SessionResourceAccess.java index b8d3ce4..7d06e67 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/SessionResourceAccess.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/SessionResourceAccess.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * MemoryStore 挂载访问权限。 */ public enum SessionResourceAccess { - + READ_ONLY("read_only"), - + READ_WRITE("read_write"); private String value; @@ -55,4 +55,3 @@ public static SessionResourceAccess fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/SessionResourceType.java b/src/main/java/com/volcengine/ark/runtime/models/session/SessionResourceType.java index b26ca7b..e81acda 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/SessionResourceType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/SessionResourceType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * SessionResource 子类型。 */ public enum SessionResourceType { - + FILE("file"), - + MEMORY_STORE("memory_store"), - + TOS("tos"); private String value; @@ -57,4 +57,3 @@ public static SessionResourceType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/SessionStatus.java b/src/main/java/com/volcengine/ark/runtime/models/session/SessionStatus.java index d00a3e5..e886fc7 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/SessionStatus.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/SessionStatus.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * Session runtime 状态。 */ public enum SessionStatus { - + IDLE("idle"), - + RUNNING("running"), - + TERMINATED("terminated"), - + RESCHEDULING("rescheduling"); private String value; @@ -59,4 +59,3 @@ public static SessionStatus fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/SessionThread.java b/src/main/java/com/volcengine/ark/runtime/models/session/SessionThread.java index b9efa55..2d060ea 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/SessionThread.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/SessionThread.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -107,7 +107,7 @@ public SessionThread() { } public SessionThread id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -132,7 +132,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public SessionThread sessionId(@javax.annotation.Nonnull String sessionId) { - + this.sessionId = sessionId; return this; } @@ -157,7 +157,7 @@ public void setSessionId(@javax.annotation.Nonnull String sessionId) { } public SessionThread type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -182,7 +182,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public SessionThread status(@javax.annotation.Nonnull SessionThreadStatus status) { - + this.status = status; return this; } @@ -207,7 +207,7 @@ public void setStatus(@javax.annotation.Nonnull SessionThreadStatus status) { } public SessionThread agentName(@javax.annotation.Nonnull String agentName) { - + this.agentName = agentName; return this; } @@ -232,7 +232,7 @@ public void setAgentName(@javax.annotation.Nonnull String agentName) { } public SessionThread parentThreadId(@javax.annotation.Nullable String parentThreadId) { - + this.parentThreadId = parentThreadId; return this; } @@ -257,7 +257,7 @@ public void setParentThreadId(@javax.annotation.Nullable String parentThreadId) } public SessionThread createdAt(@javax.annotation.Nonnull String createdAt) { - + this.createdAt = createdAt; return this; } @@ -282,7 +282,7 @@ public void setCreatedAt(@javax.annotation.Nonnull String createdAt) { } public SessionThread updatedAt(@javax.annotation.Nonnull String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -445,4 +445,3 @@ public SessionThread.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/SessionThreadStatus.java b/src/main/java/com/volcengine/ark/runtime/models/session/SessionThreadStatus.java index 4ada186..457b8bc 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/SessionThreadStatus.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/SessionThreadStatus.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * SessionThread 运行时状态。视图从 events collection 派生。 */ public enum SessionThreadStatus { - + IDLE("idle"), - + RUNNING("running"), - + TERMINATED("terminated"), - + ARCHIVED("archived"); private String value; @@ -59,4 +59,3 @@ public static SessionThreadStatus fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/SessionUsage.java b/src/main/java/com/volcengine/ark/runtime/models/session/SessionUsage.java index fcf9cf5..119fdae 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/SessionUsage.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/SessionUsage.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public SessionUsage() { } public SessionUsage inputTokens(@javax.annotation.Nonnull Long inputTokens) { - + this.inputTokens = inputTokens; return this; } @@ -77,7 +77,7 @@ public void setInputTokens(@javax.annotation.Nonnull Long inputTokens) { } public SessionUsage outputTokens(@javax.annotation.Nonnull Long outputTokens) { - + this.outputTokens = outputTokens; return this; } @@ -102,7 +102,7 @@ public void setOutputTokens(@javax.annotation.Nonnull Long outputTokens) { } public SessionUsage cacheReadInputTokens(@javax.annotation.Nonnull Long cacheReadInputTokens) { - + this.cacheReadInputTokens = cacheReadInputTokens; return this; } @@ -127,7 +127,7 @@ public void setCacheReadInputTokens(@javax.annotation.Nonnull Long cacheReadInpu } public SessionUsage cacheCreation(@javax.annotation.Nullable CacheCreation cacheCreation) { - + this.cacheCreation = cacheCreation; return this; } @@ -262,4 +262,3 @@ public SessionUsage.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/StreamEventsRequest.java b/src/main/java/com/volcengine/ark/runtime/models/session/StreamEventsRequest.java index 56a019a..ec80ccb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/StreamEventsRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/StreamEventsRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public StreamEventsRequest() { } public StreamEventsRequest sessionId(@javax.annotation.Nonnull String sessionId) { - + this.sessionId = sessionId; return this; } @@ -74,7 +74,7 @@ public void setSessionId(@javax.annotation.Nonnull String sessionId) { } public StreamEventsRequest threadId(@javax.annotation.Nonnull String threadId) { - + this.threadId = threadId; return this; } @@ -99,7 +99,7 @@ public void setThreadId(@javax.annotation.Nonnull String threadId) { } public StreamEventsRequest eventDeltas(@javax.annotation.Nullable List eventDeltas) { - + this.eventDeltas = eventDeltas; return this; } @@ -235,4 +235,3 @@ public StreamEventsRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/StreamSessionEventsRequest.java b/src/main/java/com/volcengine/ark/runtime/models/session/StreamSessionEventsRequest.java index c368f2a..ecea3d3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/StreamSessionEventsRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/StreamSessionEventsRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public StreamSessionEventsRequest() { } public StreamSessionEventsRequest sessionId(@javax.annotation.Nonnull String sessionId) { - + this.sessionId = sessionId; return this; } @@ -69,7 +69,7 @@ public void setSessionId(@javax.annotation.Nonnull String sessionId) { } public StreamSessionEventsRequest eventDeltas(@javax.annotation.Nullable List eventDeltas) { - + this.eventDeltas = eventDeltas; return this; } @@ -198,4 +198,3 @@ public StreamSessionEventsRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/Tag.java b/src/main/java/com/volcengine/ark/runtime/models/session/Tag.java index f83c9f9..73726cb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/Tag.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/Tag.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public Tag() { } public Tag key(@javax.annotation.Nonnull String key) { - + this.key = key; return this; } @@ -67,7 +67,7 @@ public void setKey(@javax.annotation.Nonnull String key) { } public Tag value(@javax.annotation.Nullable String value) { - + this.value = value; return this; } @@ -188,4 +188,3 @@ public Tag.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/ToolConfirmationResult.java b/src/main/java/com/volcengine/ark/runtime/models/session/ToolConfirmationResult.java index 324f977..7ed6fa9 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/ToolConfirmationResult.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/ToolConfirmationResult.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * tool 调用授权结果枚举。 */ public enum ToolConfirmationResult { - + ALLOW("allow"), - + DENY("deny"); private String value; @@ -55,4 +55,3 @@ public static ToolConfirmationResult fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/UpdateSessionRequest.java b/src/main/java/com/volcengine/ark/runtime/models/session/UpdateSessionRequest.java index 7d9f804..daadc57 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/UpdateSessionRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/UpdateSessionRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public UpdateSessionRequest() { } public UpdateSessionRequest tags(@javax.annotation.Nullable List tags) { - + this.tags = tags; return this; } @@ -77,7 +77,7 @@ public void setTags(@javax.annotation.Nullable List tags) { } public UpdateSessionRequest title(@javax.annotation.Nullable String title) { - + this.title = title; return this; } @@ -198,4 +198,3 @@ public UpdateSessionRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/UrlDocumentSource.java b/src/main/java/com/volcengine/ark/runtime/models/session/UrlDocumentSource.java index 1ede0ad..45526ea 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/UrlDocumentSource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/UrlDocumentSource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public UrlDocumentSource() { } public UrlDocumentSource url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -67,7 +67,7 @@ public void setUrl(@javax.annotation.Nonnull String url) { } public UrlDocumentSource type(@javax.annotation.Nonnull DocumentSourceType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public UrlDocumentSource.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/session/UrlImageSource.java b/src/main/java/com/volcengine/ark/runtime/models/session/UrlImageSource.java index 586393d..b6014fa 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/session/UrlImageSource.java +++ b/src/main/java/com/volcengine/ark/runtime/models/session/UrlImageSource.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public UrlImageSource() { } public UrlImageSource url(@javax.annotation.Nonnull String url) { - + this.url = url; return this; } @@ -67,7 +67,7 @@ public void setUrl(@javax.annotation.Nonnull String url) { } public UrlImageSource type(@javax.annotation.Nonnull ImageSourceType type) { - + this.type = type; return this; } @@ -188,4 +188,3 @@ public UrlImageSource.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/skill/CreateSkillRequest.java b/src/main/java/com/volcengine/ark/runtime/models/skill/CreateSkillRequest.java index 39a7269..7c2c75f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/skill/CreateSkillRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/skill/CreateSkillRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -37,7 +37,7 @@ public CreateSkillRequest() { } public CreateSkillRequest displayTitle(@javax.annotation.Nullable String displayTitle) { - + this.displayTitle = displayTitle; return this; } @@ -151,4 +151,3 @@ public CreateSkillRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/skill/Skill.java b/src/main/java/com/volcengine/ark/runtime/models/skill/Skill.java index 6c1d78c..1b9be61 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/skill/Skill.java +++ b/src/main/java/com/volcengine/ark/runtime/models/skill/Skill.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -97,7 +97,7 @@ public Skill() { } public Skill id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -122,7 +122,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public Skill _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -147,7 +147,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public Skill createdAt(@javax.annotation.Nonnull Long createdAt) { - + this.createdAt = createdAt; return this; } @@ -172,7 +172,7 @@ public void setCreatedAt(@javax.annotation.Nonnull Long createdAt) { } public Skill description(@javax.annotation.Nullable String description) { - + this.description = description; return this; } @@ -197,7 +197,7 @@ public void setDescription(@javax.annotation.Nullable String description) { } public Skill latestVersion(@javax.annotation.Nonnull String latestVersion) { - + this.latestVersion = latestVersion; return this; } @@ -222,7 +222,7 @@ public void setLatestVersion(@javax.annotation.Nonnull String latestVersion) { } public Skill name(@javax.annotation.Nonnull String name) { - + this.name = name; return this; } @@ -371,4 +371,3 @@ public Skill.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationInput.java b/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationInput.java index e6f131e..02e6edb 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationInput.java +++ b/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationInput.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech diff --git a/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationItem.java b/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationItem.java index d525055..d448e37 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationItem.java +++ b/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationItem.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -94,7 +94,7 @@ public TokenizationItem() { } public TokenizationItem index(@javax.annotation.Nonnull Integer index) { - + this.index = index; return this; } @@ -119,7 +119,7 @@ public void setIndex(@javax.annotation.Nonnull Integer index) { } public TokenizationItem _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -144,7 +144,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public TokenizationItem totalTokens(@javax.annotation.Nonnull Long totalTokens) { - + this.totalTokens = totalTokens; return this; } @@ -169,7 +169,7 @@ public void setTotalTokens(@javax.annotation.Nonnull Long totalTokens) { } public TokenizationItem tokenIds(@javax.annotation.Nonnull List tokenIds) { - + this.tokenIds = tokenIds; return this; } @@ -202,7 +202,7 @@ public void setTokenIds(@javax.annotation.Nonnull List tokenIds) { } public TokenizationItem offsetMapping(@javax.annotation.Nonnull List> offsetMapping) { - + this.offsetMapping = offsetMapping; return this; } @@ -352,4 +352,3 @@ public TokenizationItem.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationRequest.java b/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationRequest.java index 2de21b8..3356afa 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -47,7 +47,7 @@ public TokenizationRequest() { } public TokenizationRequest model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -72,7 +72,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public TokenizationRequest text(@javax.annotation.Nonnull TokenizationInput text) { - + this.text = text; return this; } @@ -97,7 +97,7 @@ public void setText(@javax.annotation.Nonnull TokenizationInput text) { } public TokenizationRequest user(@javax.annotation.Nullable String user) { - + this.user = user; return this; } @@ -225,4 +225,3 @@ public TokenizationRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationResponse.java b/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationResponse.java index 66cd901..644ab80 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/tokenization/TokenizationResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -94,7 +94,7 @@ public TokenizationResponse() { } public TokenizationResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -119,7 +119,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public TokenizationResponse _object(@javax.annotation.Nonnull ObjectEnum _object) { - + this._object = _object; return this; } @@ -144,7 +144,7 @@ public void setObject(@javax.annotation.Nonnull ObjectEnum _object) { } public TokenizationResponse created(@javax.annotation.Nonnull Long created) { - + this.created = created; return this; } @@ -169,7 +169,7 @@ public void setCreated(@javax.annotation.Nonnull Long created) { } public TokenizationResponse model(@javax.annotation.Nonnull String model) { - + this.model = model; return this; } @@ -194,7 +194,7 @@ public void setModel(@javax.annotation.Nonnull String model) { } public TokenizationResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -344,4 +344,3 @@ public TokenizationResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/CreateCredentialRequest.java b/src/main/java/com/volcengine/ark/runtime/models/vault/CreateCredentialRequest.java index 4dfc9e6..6e0722a 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/CreateCredentialRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/CreateCredentialRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public CreateCredentialRequest() { } public CreateCredentialRequest auth(@javax.annotation.Nonnull CredentialAuth auth) { - + this.auth = auth; return this; } @@ -74,7 +74,7 @@ public void setAuth(@javax.annotation.Nonnull CredentialAuth auth) { } public CreateCredentialRequest displayName(@javax.annotation.Nullable String displayName) { - + this.displayName = displayName; return this; } @@ -99,7 +99,7 @@ public void setDisplayName(@javax.annotation.Nullable String displayName) { } public CreateCredentialRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -235,4 +235,3 @@ public CreateCredentialRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/CreateVaultRequest.java b/src/main/java/com/volcengine/ark/runtime/models/vault/CreateVaultRequest.java index e7e982a..8ba02b2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/CreateVaultRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/CreateVaultRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public CreateVaultRequest() { } public CreateVaultRequest displayName(@javax.annotation.Nonnull String displayName) { - + this.displayName = displayName; return this; } @@ -69,7 +69,7 @@ public void setDisplayName(@javax.annotation.Nonnull String displayName) { } public CreateVaultRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -198,4 +198,3 @@ public CreateVaultRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/Credential.java b/src/main/java/com/volcengine/ark/runtime/models/vault/Credential.java index e889477..b900b31 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/Credential.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/Credential.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -109,7 +109,7 @@ public Credential() { } public Credential id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -134,7 +134,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public Credential type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -159,7 +159,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public Credential vaultId(@javax.annotation.Nonnull String vaultId) { - + this.vaultId = vaultId; return this; } @@ -184,7 +184,7 @@ public void setVaultId(@javax.annotation.Nonnull String vaultId) { } public Credential auth(@javax.annotation.Nonnull CredentialAuth auth) { - + this.auth = auth; return this; } @@ -209,7 +209,7 @@ public void setAuth(@javax.annotation.Nonnull CredentialAuth auth) { } public Credential displayName(@javax.annotation.Nullable String displayName) { - + this.displayName = displayName; return this; } @@ -234,7 +234,7 @@ public void setDisplayName(@javax.annotation.Nullable String displayName) { } public Credential metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -267,7 +267,7 @@ public void setMetadata(@javax.annotation.Nullable Map metadata) } public Credential createdAt(@javax.annotation.Nonnull String createdAt) { - + this.createdAt = createdAt; return this; } @@ -292,7 +292,7 @@ public void setCreatedAt(@javax.annotation.Nonnull String createdAt) { } public Credential updatedAt(@javax.annotation.Nonnull String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -455,4 +455,3 @@ public Credential.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialAuth.java b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialAuth.java index 05870c6..75bc5d2 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialAuth.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialAuth.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public CredentialAuth() { } public CredentialAuth type(@javax.annotation.Nonnull CredentialAuthType type) { - + this.type = type; return this; } @@ -102,7 +102,7 @@ public void setType(@javax.annotation.Nonnull CredentialAuthType type) { } public CredentialAuth mcpServerUrl(@javax.annotation.Nullable String mcpServerUrl) { - + this.mcpServerUrl = mcpServerUrl; return this; } @@ -127,7 +127,7 @@ public void setMcpServerUrl(@javax.annotation.Nullable String mcpServerUrl) { } public CredentialAuth accessToken(@javax.annotation.Nullable String accessToken) { - + this.accessToken = accessToken; return this; } @@ -152,7 +152,7 @@ public void setAccessToken(@javax.annotation.Nullable String accessToken) { } public CredentialAuth expiresAt(@javax.annotation.Nullable String expiresAt) { - + this.expiresAt = expiresAt; return this; } @@ -177,7 +177,7 @@ public void setExpiresAt(@javax.annotation.Nullable String expiresAt) { } public CredentialAuth refresh(@javax.annotation.Nullable MCPOAuthRefresh refresh) { - + this.refresh = refresh; return this; } @@ -202,7 +202,7 @@ public void setRefresh(@javax.annotation.Nullable MCPOAuthRefresh refresh) { } public CredentialAuth token(@javax.annotation.Nullable String token) { - + this.token = token; return this; } @@ -227,7 +227,7 @@ public void setToken(@javax.annotation.Nullable String token) { } public CredentialAuth secretName(@javax.annotation.Nullable String secretName) { - + this.secretName = secretName; return this; } @@ -252,7 +252,7 @@ public void setSecretName(@javax.annotation.Nullable String secretName) { } public CredentialAuth secretValue(@javax.annotation.Nullable String secretValue) { - + this.secretValue = secretValue; return this; } @@ -277,7 +277,7 @@ public void setSecretValue(@javax.annotation.Nullable String secretValue) { } public CredentialAuth networking(@javax.annotation.Nullable CredentialNetworking networking) { - + this.networking = networking; return this; } @@ -447,4 +447,3 @@ public CredentialAuth.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialAuthType.java b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialAuthType.java index 72ffa4f..8b37731 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialAuthType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialAuthType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * 凭证 auth 类型。按值决定 `CredentialAuth` 里哪些字段被使用: - `mcp_oauth`:`mcp_server_url` + `access_token`(w) + 可选 `expires_at` / `refresh` - `static_bearer`:`mcp_server_url` + `token`(w) - `environment_variable`:`secret_name` + `secret_value`(w) + `networking` */ public enum CredentialAuthType { - + MCP_OAUTH("mcp_oauth"), - + STATIC_BEARER("static_bearer"), - + ENVIRONMENT_VARIABLE("environment_variable"); private String value; @@ -57,4 +57,3 @@ public static CredentialAuthType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialNetworking.java b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialNetworking.java index 520c8d0..cf16668 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialNetworking.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialNetworking.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public CredentialNetworking() { } public CredentialNetworking type(@javax.annotation.Nonnull CredentialNetworkingType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull CredentialNetworkingType type) { } public CredentialNetworking limited(@javax.annotation.Nullable LimitedCredentialNetworking limited) { - + this.limited = limited; return this; } @@ -188,4 +188,3 @@ public CredentialNetworking.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialNetworkingType.java b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialNetworkingType.java index 47fcf2f..6df49c3 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialNetworkingType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialNetworkingType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,9 +24,9 @@ * environment_variable 凭证的注入网络策略。 */ public enum CredentialNetworkingType { - + UNRESTRICTED("unrestricted"), - + LIMITED("limited"); private String value; @@ -55,4 +55,3 @@ public static CredentialNetworkingType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialValidation.java b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialValidation.java index 1f8117d..d01980b 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialValidation.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/CredentialValidation.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -107,7 +107,7 @@ public CredentialValidation() { } public CredentialValidation type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -132,7 +132,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public CredentialValidation credentialId(@javax.annotation.Nonnull String credentialId) { - + this.credentialId = credentialId; return this; } @@ -157,7 +157,7 @@ public void setCredentialId(@javax.annotation.Nonnull String credentialId) { } public CredentialValidation vaultId(@javax.annotation.Nonnull String vaultId) { - + this.vaultId = vaultId; return this; } @@ -182,7 +182,7 @@ public void setVaultId(@javax.annotation.Nonnull String vaultId) { } public CredentialValidation validatedAt(@javax.annotation.Nonnull String validatedAt) { - + this.validatedAt = validatedAt; return this; } @@ -207,7 +207,7 @@ public void setValidatedAt(@javax.annotation.Nonnull String validatedAt) { } public CredentialValidation status(@javax.annotation.Nonnull ValidationStatus status) { - + this.status = status; return this; } @@ -232,7 +232,7 @@ public void setStatus(@javax.annotation.Nonnull ValidationStatus status) { } public CredentialValidation hasRefreshToken(@javax.annotation.Nonnull Boolean hasRefreshToken) { - + this.hasRefreshToken = hasRefreshToken; return this; } @@ -257,7 +257,7 @@ public void setHasRefreshToken(@javax.annotation.Nonnull Boolean hasRefreshToken } public CredentialValidation mcpProbe(@javax.annotation.Nonnull MCPProbe mcpProbe) { - + this.mcpProbe = mcpProbe; return this; } @@ -282,7 +282,7 @@ public void setMcpProbe(@javax.annotation.Nonnull MCPProbe mcpProbe) { } public CredentialValidation refresh(@javax.annotation.Nonnull RefreshObject refresh) { - + this.refresh = refresh; return this; } @@ -445,4 +445,3 @@ public CredentialValidation.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/DeleteCredentialResponse.java b/src/main/java/com/volcengine/ark/runtime/models/vault/DeleteCredentialResponse.java index 3a44328..c1b228e 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/DeleteCredentialResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/DeleteCredentialResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public DeleteCredentialResponse() { } public DeleteCredentialResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -102,7 +102,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public DeleteCredentialResponse type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -223,4 +223,3 @@ public DeleteCredentialResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/DeleteVaultResponse.java b/src/main/java/com/volcengine/ark/runtime/models/vault/DeleteVaultResponse.java index 8952593..844ac7f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/DeleteVaultResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/DeleteVaultResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -77,7 +77,7 @@ public DeleteVaultResponse() { } public DeleteVaultResponse id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -102,7 +102,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public DeleteVaultResponse type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -223,4 +223,3 @@ public DeleteVaultResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/LimitedCredentialNetworking.java b/src/main/java/com/volcengine/ark/runtime/models/vault/LimitedCredentialNetworking.java index 02f6431..0cd8639 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/LimitedCredentialNetworking.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/LimitedCredentialNetworking.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -39,7 +39,7 @@ public LimitedCredentialNetworking() { } public LimitedCredentialNetworking allowedHosts(@javax.annotation.Nonnull List allowedHosts) { - + this.allowedHosts = allowedHosts; return this; } @@ -161,4 +161,3 @@ public LimitedCredentialNetworking.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/ListCredentialsResponse.java b/src/main/java/com/volcengine/ark/runtime/models/vault/ListCredentialsResponse.java index 1efeed2..432e68d 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/ListCredentialsResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/ListCredentialsResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public ListCredentialsResponse() { } public ListCredentialsResponse credentials(@javax.annotation.Nonnull List credentials) { - + this.credentials = credentials; return this; } @@ -82,7 +82,7 @@ public void setCredentials(@javax.annotation.Nonnull List credential } public ListCredentialsResponse nextPage(@javax.annotation.Nullable String nextPage) { - + this.nextPage = nextPage; return this; } @@ -107,7 +107,7 @@ public void setNextPage(@javax.annotation.Nullable String nextPage) { } public ListCredentialsResponse total(@javax.annotation.Nullable Long total) { - + this.total = total; return this; } @@ -235,4 +235,3 @@ public ListCredentialsResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/ListRequest.java b/src/main/java/com/volcengine/ark/runtime/models/vault/ListRequest.java index dcc9e56..fccfeec 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/ListRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/ListRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ListRequest() { } public ListRequest limit(@javax.annotation.Nullable Integer limit) { - + this.limit = limit; return this; } @@ -67,7 +67,7 @@ public void setLimit(@javax.annotation.Nullable Integer limit) { } public ListRequest page(@javax.annotation.Nullable String page) { - + this.page = page; return this; } @@ -188,4 +188,3 @@ public ListRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/ListVaultsResponse.java b/src/main/java/com/volcengine/ark/runtime/models/vault/ListVaultsResponse.java index 1f174da..ccc7e28 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/ListVaultsResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/ListVaultsResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public ListVaultsResponse() { } public ListVaultsResponse data(@javax.annotation.Nonnull List data) { - + this.data = data; return this; } @@ -82,7 +82,7 @@ public void setData(@javax.annotation.Nonnull List data) { } public ListVaultsResponse nextPage(@javax.annotation.Nullable String nextPage) { - + this.nextPage = nextPage; return this; } @@ -107,7 +107,7 @@ public void setNextPage(@javax.annotation.Nullable String nextPage) { } public ListVaultsResponse total(@javax.annotation.Nullable Long total) { - + this.total = total; return this; } @@ -235,4 +235,3 @@ public ListVaultsResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/MCPOAuthRefresh.java b/src/main/java/com/volcengine/ark/runtime/models/vault/MCPOAuthRefresh.java index 8b59fc0..5397e0f 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/MCPOAuthRefresh.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/MCPOAuthRefresh.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -62,7 +62,7 @@ public MCPOAuthRefresh() { } public MCPOAuthRefresh clientId(@javax.annotation.Nullable String clientId) { - + this.clientId = clientId; return this; } @@ -87,7 +87,7 @@ public void setClientId(@javax.annotation.Nullable String clientId) { } public MCPOAuthRefresh refreshToken(@javax.annotation.Nullable String refreshToken) { - + this.refreshToken = refreshToken; return this; } @@ -112,7 +112,7 @@ public void setRefreshToken(@javax.annotation.Nullable String refreshToken) { } public MCPOAuthRefresh tokenEndpoint(@javax.annotation.Nullable String tokenEndpoint) { - + this.tokenEndpoint = tokenEndpoint; return this; } @@ -137,7 +137,7 @@ public void setTokenEndpoint(@javax.annotation.Nullable String tokenEndpoint) { } public MCPOAuthRefresh tokenEndpointAuth(@javax.annotation.Nullable TokenEndpointAuth tokenEndpointAuth) { - + this.tokenEndpointAuth = tokenEndpointAuth; return this; } @@ -162,7 +162,7 @@ public void setTokenEndpointAuth(@javax.annotation.Nullable TokenEndpointAuth to } public MCPOAuthRefresh resource(@javax.annotation.Nullable String resource) { - + this.resource = resource; return this; } @@ -187,7 +187,7 @@ public void setResource(@javax.annotation.Nullable String resource) { } public MCPOAuthRefresh scope(@javax.annotation.Nullable String scope) { - + this.scope = scope; return this; } @@ -336,4 +336,3 @@ public MCPOAuthRefresh.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/MCPProbe.java b/src/main/java/com/volcengine/ark/runtime/models/vault/MCPProbe.java index b4d10cb..ab556ac 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/MCPProbe.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/MCPProbe.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public MCPProbe() { } public MCPProbe httpResponse(@javax.annotation.Nonnull RefreshHTTPResponse httpResponse) { - + this.httpResponse = httpResponse; return this; } @@ -67,7 +67,7 @@ public void setHttpResponse(@javax.annotation.Nonnull RefreshHTTPResponse httpRe } public MCPProbe method(@javax.annotation.Nonnull String method) { - + this.method = method; return this; } @@ -188,4 +188,3 @@ public MCPProbe.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshHTTPResponse.java b/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshHTTPResponse.java index 08f8417..c7d470c 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshHTTPResponse.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshHTTPResponse.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -52,7 +52,7 @@ public RefreshHTTPResponse() { } public RefreshHTTPResponse body(@javax.annotation.Nonnull String body) { - + this.body = body; return this; } @@ -77,7 +77,7 @@ public void setBody(@javax.annotation.Nonnull String body) { } public RefreshHTTPResponse bodyTruncated(@javax.annotation.Nonnull Boolean bodyTruncated) { - + this.bodyTruncated = bodyTruncated; return this; } @@ -102,7 +102,7 @@ public void setBodyTruncated(@javax.annotation.Nonnull Boolean bodyTruncated) { } public RefreshHTTPResponse contentType(@javax.annotation.Nonnull String contentType) { - + this.contentType = contentType; return this; } @@ -127,7 +127,7 @@ public void setContentType(@javax.annotation.Nonnull String contentType) { } public RefreshHTTPResponse statusCode(@javax.annotation.Nonnull Integer statusCode) { - + this.statusCode = statusCode; return this; } @@ -262,4 +262,3 @@ public RefreshHTTPResponse.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshObject.java b/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshObject.java index a90db7c..3372ff8 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshObject.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshObject.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public RefreshObject() { } public RefreshObject httpResponse(@javax.annotation.Nonnull RefreshHTTPResponse httpResponse) { - + this.httpResponse = httpResponse; return this; } @@ -67,7 +67,7 @@ public void setHttpResponse(@javax.annotation.Nonnull RefreshHTTPResponse httpRe } public RefreshObject status(@javax.annotation.Nonnull RefreshStatus status) { - + this.status = status; return this; } @@ -188,4 +188,3 @@ public RefreshObject.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshStatus.java b/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshStatus.java index c966882..6596698 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshStatus.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/RefreshStatus.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,13 +24,13 @@ * ValidateCredential 接口的 refresh 结果状态。 */ public enum RefreshStatus { - + SUCCEEDED("succeeded"), - + FAILED("failed"), - + CONNECT_ERROR("connect_error"), - + NO_REFRESH_TOKEN("no_refresh_token"); private String value; @@ -59,4 +59,3 @@ public static RefreshStatus fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/RemoveRequest.java b/src/main/java/com/volcengine/ark/runtime/models/vault/RemoveRequest.java index 58e293c..dbb6bd4 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/RemoveRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/RemoveRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public RemoveRequest() { } public RemoveRequest vaultId(@javax.annotation.Nonnull String vaultId) { - + this.vaultId = vaultId; return this; } @@ -67,7 +67,7 @@ public void setVaultId(@javax.annotation.Nonnull String vaultId) { } public RemoveRequest credentialId(@javax.annotation.Nonnull String credentialId) { - + this.credentialId = credentialId; return this; } @@ -188,4 +188,3 @@ public RemoveRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/RetrieveRequest.java b/src/main/java/com/volcengine/ark/runtime/models/vault/RetrieveRequest.java index d341c5a..f32c329 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/RetrieveRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/RetrieveRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public RetrieveRequest() { } public RetrieveRequest vaultId(@javax.annotation.Nonnull String vaultId) { - + this.vaultId = vaultId; return this; } @@ -67,7 +67,7 @@ public void setVaultId(@javax.annotation.Nonnull String vaultId) { } public RetrieveRequest credentialId(@javax.annotation.Nonnull String credentialId) { - + this.credentialId = credentialId; return this; } @@ -188,4 +188,3 @@ public RetrieveRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/TokenEndpointAuth.java b/src/main/java/com/volcengine/ark/runtime/models/vault/TokenEndpointAuth.java index 5a6db2a..e423cb0 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/TokenEndpointAuth.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/TokenEndpointAuth.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public TokenEndpointAuth() { } public TokenEndpointAuth type(@javax.annotation.Nonnull TokenEndpointAuthType type) { - + this.type = type; return this; } @@ -67,7 +67,7 @@ public void setType(@javax.annotation.Nonnull TokenEndpointAuthType type) { } public TokenEndpointAuth clientSecret(@javax.annotation.Nullable String clientSecret) { - + this.clientSecret = clientSecret; return this; } @@ -188,4 +188,3 @@ public TokenEndpointAuth.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/TokenEndpointAuthType.java b/src/main/java/com/volcengine/ark/runtime/models/vault/TokenEndpointAuthType.java index 318eb9d..1a8a7f7 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/TokenEndpointAuthType.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/TokenEndpointAuthType.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * OAuth token endpoint 客户端鉴权方式。 */ public enum TokenEndpointAuthType { - + NONE("none"), - + CLIENT_SECRET_BASIC("client_secret_basic"), - + CLIENT_SECRET_POST("client_secret_post"); private String value; @@ -57,4 +57,3 @@ public static TokenEndpointAuthType fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/UpdateCredentialRequest.java b/src/main/java/com/volcengine/ark/runtime/models/vault/UpdateCredentialRequest.java index 451def1..c2c7ad1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/UpdateCredentialRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/UpdateCredentialRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -49,7 +49,7 @@ public UpdateCredentialRequest() { } public UpdateCredentialRequest auth(@javax.annotation.Nullable CredentialAuth auth) { - + this.auth = auth; return this; } @@ -74,7 +74,7 @@ public void setAuth(@javax.annotation.Nullable CredentialAuth auth) { } public UpdateCredentialRequest displayName(@javax.annotation.Nullable String displayName) { - + this.displayName = displayName; return this; } @@ -99,7 +99,7 @@ public void setDisplayName(@javax.annotation.Nullable String displayName) { } public UpdateCredentialRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -235,4 +235,3 @@ public UpdateCredentialRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/UpdateVaultRequest.java b/src/main/java/com/volcengine/ark/runtime/models/vault/UpdateVaultRequest.java index 153f3de..ec73ca7 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/UpdateVaultRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/UpdateVaultRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -44,7 +44,7 @@ public UpdateVaultRequest() { } public UpdateVaultRequest displayName(@javax.annotation.Nullable String displayName) { - + this.displayName = displayName; return this; } @@ -69,7 +69,7 @@ public void setDisplayName(@javax.annotation.Nullable String displayName) { } public UpdateVaultRequest metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -198,4 +198,3 @@ public UpdateVaultRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/ValidateRequest.java b/src/main/java/com/volcengine/ark/runtime/models/vault/ValidateRequest.java index f26fcfd..ae8b4a1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/ValidateRequest.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/ValidateRequest.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -42,7 +42,7 @@ public ValidateRequest() { } public ValidateRequest vaultId(@javax.annotation.Nonnull String vaultId) { - + this.vaultId = vaultId; return this; } @@ -67,7 +67,7 @@ public void setVaultId(@javax.annotation.Nonnull String vaultId) { } public ValidateRequest credentialId(@javax.annotation.Nonnull String credentialId) { - + this.credentialId = credentialId; return this; } @@ -188,4 +188,3 @@ public ValidateRequest.Builder toBuilder() { } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/ValidationStatus.java b/src/main/java/com/volcengine/ark/runtime/models/vault/ValidationStatus.java index 84f5951..02a4676 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/ValidationStatus.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/ValidationStatus.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -24,11 +24,11 @@ * ValidateCredential 接口的整体校验状态。 */ public enum ValidationStatus { - + VALID("valid"), - + INVALID("invalid"), - + UNKNOWN("unknown"); private String value; @@ -57,4 +57,3 @@ public static ValidationStatus fromValue(String value) { throw new IllegalArgumentException("Unexpected value '" + value + "'"); } } - diff --git a/src/main/java/com/volcengine/ark/runtime/models/vault/Vault.java b/src/main/java/com/volcengine/ark/runtime/models/vault/Vault.java index 9d25939..852fbf1 100644 --- a/src/main/java/com/volcengine/ark/runtime/models/vault/Vault.java +++ b/src/main/java/com/volcengine/ark/runtime/models/vault/Vault.java @@ -6,7 +6,7 @@ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -99,7 +99,7 @@ public Vault() { } public Vault id(@javax.annotation.Nonnull String id) { - + this.id = id; return this; } @@ -124,7 +124,7 @@ public void setId(@javax.annotation.Nonnull String id) { } public Vault type(@javax.annotation.Nonnull TypeEnum type) { - + this.type = type; return this; } @@ -149,7 +149,7 @@ public void setType(@javax.annotation.Nonnull TypeEnum type) { } public Vault displayName(@javax.annotation.Nonnull String displayName) { - + this.displayName = displayName; return this; } @@ -174,7 +174,7 @@ public void setDisplayName(@javax.annotation.Nonnull String displayName) { } public Vault metadata(@javax.annotation.Nullable Map metadata) { - + this.metadata = metadata; return this; } @@ -207,7 +207,7 @@ public void setMetadata(@javax.annotation.Nullable Map metadata) } public Vault createdAt(@javax.annotation.Nonnull String createdAt) { - + this.createdAt = createdAt; return this; } @@ -232,7 +232,7 @@ public void setCreatedAt(@javax.annotation.Nonnull String createdAt) { } public Vault updatedAt(@javax.annotation.Nonnull String updatedAt) { - + this.updatedAt = updatedAt; return this; } @@ -381,4 +381,3 @@ public Vault.Builder toBuilder() { } -