Skip to content

Commit 8a339f5

Browse files
chore: update api schema dump
Co-authored-by: octodog <mu001@lablup.com>
1 parent 3c0053b commit 8a339f5

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
@@ -9839,8 +9839,10 @@ type ModelServiceConfig
98399839
"""
98409840
preStartActions: [PreStartAction!]!
98419841

9842-
"""Command to start the model service."""
9843-
startCommand: [String!]
9842+
"""
9843+
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.
9844+
"""
9845+
startCommand: JSON
98449846

98459847
"""Shell configured for the model service."""
98469848
shell: String!
@@ -9863,8 +9865,10 @@ input ModelServiceConfigInput
98639865
"""
98649866
preStartActions: [PreStartActionInput!] = null
98659867

9866-
"""Command to start the model service."""
9867-
startCommand: [String!] = null
9868+
"""
9869+
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.
9870+
"""
9871+
startCommand: JSON = null
98689872

98699873
"""Shell configured for the model service."""
98709874
shell: String = null

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6592,8 +6592,10 @@ type ModelServiceConfig {
65926592
"""
65936593
preStartActions: [PreStartAction!]!
65946594

6595-
"""Command to start the model service."""
6596-
startCommand: [String!]
6595+
"""
6596+
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.
6597+
"""
6598+
startCommand: JSON
65976599

65986600
"""Shell configured for the model service."""
65996601
shell: String!
@@ -6614,8 +6616,10 @@ input ModelServiceConfigInput {
66146616
"""
66156617
preStartActions: [PreStartActionInput!] = null
66166618

6617-
"""Command to start the model service."""
6618-
startCommand: [String!] = null
6619+
"""
6620+
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.
6621+
"""
6622+
startCommand: JSON = null
66196623

66206624
"""Shell configured for the model service."""
66216625
shell: String = null

0 commit comments

Comments
 (0)