Skip to content

Commit e7c0d9b

Browse files
chore: update api schema dump
Co-authored-by: octodog <mu001@lablup.com>
1 parent 9eb3b55 commit e7c0d9b

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
@@ -9829,8 +9829,10 @@ type ModelServiceConfig
98299829
"""
98309830
preStartActions: [PreStartAction!]!
98319831

9832-
"""Command to start the model service."""
9833-
startCommand: [String!]
9832+
"""
9833+
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.
9834+
"""
9835+
startCommand: JSON
98349836

98359837
"""Shell configured for the model service."""
98369838
shell: String!
@@ -9853,8 +9855,10 @@ input ModelServiceConfigInput
98539855
"""
98549856
preStartActions: [PreStartActionInput!] = null
98559857

9856-
"""Command to start the model service."""
9857-
startCommand: [String!] = null
9858+
"""
9859+
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.
9860+
"""
9861+
startCommand: JSON = null
98589862

98599863
"""Shell configured for the model service."""
98609864
shell: String = null

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6582,8 +6582,10 @@ type ModelServiceConfig {
65826582
"""
65836583
preStartActions: [PreStartAction!]!
65846584

6585-
"""Command to start the model service."""
6586-
startCommand: [String!]
6585+
"""
6586+
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.
6587+
"""
6588+
startCommand: JSON
65876589

65886590
"""Shell configured for the model service."""
65896591
shell: String!
@@ -6604,8 +6606,10 @@ input ModelServiceConfigInput {
66046606
"""
66056607
preStartActions: [PreStartActionInput!] = null
66066608

6607-
"""Command to start the model service."""
6608-
startCommand: [String!] = null
6609+
"""
6610+
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.
6611+
"""
6612+
startCommand: JSON = null
66096613

66106614
"""Shell configured for the model service."""
66116615
shell: String = null

0 commit comments

Comments
 (0)