Skip to content

Commit 71e8974

Browse files
chore: update api schema dump
Co-authored-by: octodog <mu001@lablup.com>
1 parent 3066c3e commit 71e8974

2 files changed

Lines changed: 16 additions & 8 deletions

File tree

docs/manager/graphql-reference/supergraph.graphql

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9786,8 +9786,10 @@ type ModelServiceConfig
97869786
"""
97879787
preStartActions: [PreStartAction!]!
97889788

9789-
"""Command to start the model service."""
9790-
startCommand: [String!]
9789+
"""
9790+
Command to start the model service. A list is exec'ed directly as argv; a string is wrapped as ``[shell, '-c', str]`` by the kernel runner so shell semantics (line continuations, ``$VAR`` expansion, pipes) apply.
9791+
"""
9792+
startCommand: JSON
97919793

97929794
"""Shell configured for the model service."""
97939795
shell: String!
@@ -9810,8 +9812,10 @@ input ModelServiceConfigInput
98109812
"""
98119813
preStartActions: [PreStartActionInput!] = null
98129814

9813-
"""Command to start the model service."""
9814-
startCommand: [String!] = null
9815+
"""
9816+
Command to start the model service. A JSON array (``list[str]``) is exec'ed directly as argv; a JSON string is wrapped as ``[shell, '-c', str]`` by the kernel runner so shell semantics (line continuations, ``$VAR`` expansion, pipes) apply.
9817+
"""
9818+
startCommand: JSON = null
98159819

98169820
"""Shell configured for the model service."""
98179821
shell: String = null

docs/manager/graphql-reference/v2-schema.graphql

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6539,8 +6539,10 @@ type ModelServiceConfig {
65396539
"""
65406540
preStartActions: [PreStartAction!]!
65416541

6542-
"""Command to start the model service."""
6543-
startCommand: [String!]
6542+
"""
6543+
Command to start the model service. A list is exec'ed directly as argv; a string is wrapped as ``[shell, '-c', str]`` by the kernel runner so shell semantics (line continuations, ``$VAR`` expansion, pipes) apply.
6544+
"""
6545+
startCommand: JSON
65446546

65456547
"""Shell configured for the model service."""
65466548
shell: String!
@@ -6561,8 +6563,10 @@ input ModelServiceConfigInput {
65616563
"""
65626564
preStartActions: [PreStartActionInput!] = null
65636565

6564-
"""Command to start the model service."""
6565-
startCommand: [String!] = null
6566+
"""
6567+
Command to start the model service. A JSON array (``list[str]``) is exec'ed directly as argv; a JSON string is wrapped as ``[shell, '-c', str]`` by the kernel runner so shell semantics (line continuations, ``$VAR`` expansion, pipes) apply.
6568+
"""
6569+
startCommand: JSON = null
65666570

65676571
"""Shell configured for the model service."""
65686572
shell: String = null

0 commit comments

Comments
 (0)