Skip to content

Commit 2598f5f

Browse files
anishasthanagithub-actions[bot]
authored andcommitted
Changes in docs for release: vv0.5.4
1 parent 52b94c4 commit 2598f5f

13 files changed

+722
-18
lines changed

docs/cluster/auth.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,4 +483,4 @@ <h4><code><a title="codeflare_sdk.cluster.auth.TokenAuthentication" href="#codef
483483
<p>Generated by <a href="https://pdoc3.github.io/pdoc" title="pdoc: Python API documentation generator"><cite>pdoc</cite> 0.10.0</a>.</p>
484484
</footer>
485485
</body>
486-
</html>
486+
</html>

docs/cluster/awload.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,4 +352,4 @@ <h4><code><a title="codeflare_sdk.cluster.awload.AWManager" href="#codeflare_sdk
352352
<p>Generated by <a href="https://pdoc3.github.io/pdoc" title="pdoc: Python API documentation generator"><cite>pdoc</cite> 0.10.0</a>.</p>
353353
</footer>
354354
</body>
355-
</html>
355+
</html>

docs/cluster/cluster.html

+13-1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.cluster</code></h1>
116116
instascale = self.config.instascale
117117
instance_types = self.config.machine_types
118118
env = self.config.envs
119+
local_interactive = self.config.local_interactive
120+
image_pull_secrets = self.config.image_pull_secrets
119121
return generate_appwrapper(
120122
name=name,
121123
namespace=namespace,
@@ -130,6 +132,8 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.cluster</code></h1>
130132
instascale=instascale,
131133
instance_types=instance_types,
132134
env=env,
135+
local_interactive=local_interactive,
136+
image_pull_secrets=image_pull_secrets,
133137
)
134138

135139
# creates a new cluster with the provided or default spec
@@ -635,6 +639,8 @@ <h2 class="section-title" id="header-classes">Classes</h2>
635639
instascale = self.config.instascale
636640
instance_types = self.config.machine_types
637641
env = self.config.envs
642+
local_interactive = self.config.local_interactive
643+
image_pull_secrets = self.config.image_pull_secrets
638644
return generate_appwrapper(
639645
name=name,
640646
namespace=namespace,
@@ -649,6 +655,8 @@ <h2 class="section-title" id="header-classes">Classes</h2>
649655
instascale=instascale,
650656
instance_types=instance_types,
651657
env=env,
658+
local_interactive=local_interactive,
659+
image_pull_secrets=image_pull_secrets,
652660
)
653661

654662
# creates a new cluster with the provided or default spec
@@ -930,6 +938,8 @@ <h3>Methods</h3>
930938
instascale = self.config.instascale
931939
instance_types = self.config.machine_types
932940
env = self.config.envs
941+
local_interactive = self.config.local_interactive
942+
image_pull_secrets = self.config.image_pull_secrets
933943
return generate_appwrapper(
934944
name=name,
935945
namespace=namespace,
@@ -944,6 +954,8 @@ <h3>Methods</h3>
944954
instascale=instascale,
945955
instance_types=instance_types,
946956
env=env,
957+
local_interactive=local_interactive,
958+
image_pull_secrets=image_pull_secrets,
947959
)</code></pre>
948960
</details>
949961
</dd>
@@ -1261,4 +1273,4 @@ <h4><code><a title="codeflare_sdk.cluster.cluster.Cluster" href="#codeflare_sdk.
12611273
<p>Generated by <a href="https://pdoc3.github.io/pdoc" title="pdoc: Python API documentation generator"><cite>pdoc</cite> 0.10.0</a>.</p>
12621274
</footer>
12631275
</body>
1264-
</html>
1276+
</html>

docs/cluster/config.html

+18-4
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.config</code></h1>
7979
template: str = f&#34;{dir}/templates/base-template.yaml&#34;
8080
instascale: bool = False
8181
envs: dict = field(default_factory=dict)
82-
image: str = &#34;ghcr.io/foundation-model-stack/base:ray2.1.0-py38-gpu-pytorch1.12.0cu116-20221213-193103&#34;</code></pre>
82+
image: str = &#34;ghcr.io/foundation-model-stack/base:ray2.1.0-py38-gpu-pytorch1.12.0cu116-20221213-193103&#34;
83+
local_interactive: bool = False
84+
image_pull_secrets: list = field(default_factory=list)</code></pre>
8385
</details>
8486
</section>
8587
<section>
@@ -93,7 +95,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
9395
<dl>
9496
<dt id="codeflare_sdk.cluster.config.ClusterConfiguration"><code class="flex name class">
9597
<span>class <span class="ident">ClusterConfiguration</span></span>
96-
<span>(</span><span>name: str, namespace: str = None, head_info: list = &lt;factory&gt;, machine_types: list = &lt;factory&gt;, min_cpus: int = 1, max_cpus: int = 1, min_worker: int = 1, max_worker: int = 1, min_memory: int = 2, max_memory: int = 2, gpu: int = 0, template: str = '/home/meyceoz/Documents/codeflare-sdk/src/codeflare_sdk/templates/base-template.yaml', instascale: bool = False, envs: dict = &lt;factory&gt;, image: str = 'ghcr.io/foundation-model-stack/base:ray2.1.0-py38-gpu-pytorch1.12.0cu116-20221213-193103')</span>
98+
<span>(</span><span>name: str, namespace: str = None, head_info: list = &lt;factory&gt;, machine_types: list = &lt;factory&gt;, min_cpus: int = 1, max_cpus: int = 1, min_worker: int = 1, max_worker: int = 1, min_memory: int = 2, max_memory: int = 2, gpu: int = 0, template: str = '/home/runner/work/codeflare-sdk/codeflare-sdk/src/codeflare_sdk/templates/base-template.yaml', instascale: bool = False, envs: dict = &lt;factory&gt;, image: str = 'ghcr.io/foundation-model-stack/base:ray2.1.0-py38-gpu-pytorch1.12.0cu116-20221213-193103', local_interactive: bool = False, image_pull_secrets: list = &lt;factory&gt;)</span>
9799
</code></dt>
98100
<dd>
99101
<div class="desc"><p>This dataclass is used to specify resource requirements and other details, and
@@ -122,7 +124,9 @@ <h2 class="section-title" id="header-classes">Classes</h2>
122124
template: str = f&#34;{dir}/templates/base-template.yaml&#34;
123125
instascale: bool = False
124126
envs: dict = field(default_factory=dict)
125-
image: str = &#34;ghcr.io/foundation-model-stack/base:ray2.1.0-py38-gpu-pytorch1.12.0cu116-20221213-193103&#34;</code></pre>
127+
image: str = &#34;ghcr.io/foundation-model-stack/base:ray2.1.0-py38-gpu-pytorch1.12.0cu116-20221213-193103&#34;
128+
local_interactive: bool = False
129+
image_pull_secrets: list = field(default_factory=list)</code></pre>
126130
</details>
127131
<h3>Class variables</h3>
128132
<dl>
@@ -142,10 +146,18 @@ <h3>Class variables</h3>
142146
<dd>
143147
<div class="desc"></div>
144148
</dd>
149+
<dt id="codeflare_sdk.cluster.config.ClusterConfiguration.image_pull_secrets"><code class="name">var <span class="ident">image_pull_secrets</span> : list</code></dt>
150+
<dd>
151+
<div class="desc"></div>
152+
</dd>
145153
<dt id="codeflare_sdk.cluster.config.ClusterConfiguration.instascale"><code class="name">var <span class="ident">instascale</span> : bool</code></dt>
146154
<dd>
147155
<div class="desc"></div>
148156
</dd>
157+
<dt id="codeflare_sdk.cluster.config.ClusterConfiguration.local_interactive"><code class="name">var <span class="ident">local_interactive</span> : bool</code></dt>
158+
<dd>
159+
<div class="desc"></div>
160+
</dd>
149161
<dt id="codeflare_sdk.cluster.config.ClusterConfiguration.machine_types"><code class="name">var <span class="ident">machine_types</span> : list</code></dt>
150162
<dd>
151163
<div class="desc"></div>
@@ -211,7 +223,9 @@ <h4><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration" href="#co
211223
<li><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration.gpu" href="#codeflare_sdk.cluster.config.ClusterConfiguration.gpu">gpu</a></code></li>
212224
<li><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration.head_info" href="#codeflare_sdk.cluster.config.ClusterConfiguration.head_info">head_info</a></code></li>
213225
<li><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration.image" href="#codeflare_sdk.cluster.config.ClusterConfiguration.image">image</a></code></li>
226+
<li><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration.image_pull_secrets" href="#codeflare_sdk.cluster.config.ClusterConfiguration.image_pull_secrets">image_pull_secrets</a></code></li>
214227
<li><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration.instascale" href="#codeflare_sdk.cluster.config.ClusterConfiguration.instascale">instascale</a></code></li>
228+
<li><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration.local_interactive" href="#codeflare_sdk.cluster.config.ClusterConfiguration.local_interactive">local_interactive</a></code></li>
215229
<li><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration.machine_types" href="#codeflare_sdk.cluster.config.ClusterConfiguration.machine_types">machine_types</a></code></li>
216230
<li><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration.max_cpus" href="#codeflare_sdk.cluster.config.ClusterConfiguration.max_cpus">max_cpus</a></code></li>
217231
<li><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration.max_memory" href="#codeflare_sdk.cluster.config.ClusterConfiguration.max_memory">max_memory</a></code></li>
@@ -233,4 +247,4 @@ <h4><code><a title="codeflare_sdk.cluster.config.ClusterConfiguration" href="#co
233247
<p>Generated by <a href="https://pdoc3.github.io/pdoc" title="pdoc: Python API documentation generator"><cite>pdoc</cite> 0.10.0</a>.</p>
234248
</footer>
235249
</body>
236-
</html>
250+
</html>

docs/cluster/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ <h1>Index</h1>
8888
<p>Generated by <a href="https://pdoc3.github.io/pdoc" title="pdoc: Python API documentation generator"><cite>pdoc</cite> 0.10.0</a>.</p>
8989
</footer>
9090
</body>
91-
</html>
91+
</html>

docs/cluster/model.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,4 +468,4 @@ <h4><code><a title="codeflare_sdk.cluster.model.RayClusterStatus" href="#codefla
468468
<p>Generated by <a href="https://pdoc3.github.io/pdoc" title="pdoc: Python API documentation generator"><cite>pdoc</cite> 0.10.0</a>.</p>
469469
</footer>
470470
</body>
471-
</html>
471+
</html>

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ <h1>Index</h1>
6767
<p>Generated by <a href="https://pdoc3.github.io/pdoc" title="pdoc: Python API documentation generator"><cite>pdoc</cite> 0.10.0</a>.</p>
6868
</footer>
6969
</body>
70-
</html>
70+
</html>

docs/job/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ <h1>Index</h1>
6262
<p>Generated by <a href="https://pdoc3.github.io/pdoc" title="pdoc: Python API documentation generator"><cite>pdoc</cite> 0.10.0</a>.</p>
6363
</footer>
6464
</body>
65-
</html>
65+
</html>

docs/job/jobs.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ <h3>Methods</h3>
305305
</dd>
306306
<dt id="codeflare_sdk.job.jobs.DDPJobDefinition"><code class="flex name class">
307307
<span>class <span class="ident">DDPJobDefinition</span></span>
308-
<span>(</span><span>script: Optional[str] = None, m: Optional[str] = None, script_args: Optional[List[str]] = None, name: Optional[str] = None, cpu: Optional[int] = None, gpu: Optional[int] = None, memMB: Optional[int] = None, h: Optional[str] = None, j: Optional[str] = None, env: Optional[Dict[str, str]] = None, max_retries: int = 0, mounts: Optional[List[str]] = None, rdzv_port: int = 29500, rdzv_backend: str = None, scheduler_args: Optional[Dict[str, str]] = None, image: Optional[str] = None, workspace: Optional[str] = 'file:///home/meyceoz/Documents/codeflare-sdk')</span>
308+
<span>(</span><span>script: Optional[str] = None, m: Optional[str] = None, script_args: Optional[List[str]] = None, name: Optional[str] = None, cpu: Optional[int] = None, gpu: Optional[int] = None, memMB: Optional[int] = None, h: Optional[str] = None, j: Optional[str] = None, env: Optional[Dict[str, str]] = None, max_retries: int = 0, mounts: Optional[List[str]] = None, rdzv_port: int = 29500, rdzv_backend: str = None, scheduler_args: Optional[Dict[str, str]] = None, image: Optional[str] = None, workspace: Optional[str] = 'file:///home/runner/work/codeflare-sdk/codeflare-sdk')</span>
309309
</code></dt>
310310
<dd>
311311
<div class="desc"></div>
@@ -593,4 +593,4 @@ <h4><code><a title="codeflare_sdk.job.jobs.JobDefinition" href="#codeflare_sdk.j
593593
<p>Generated by <a href="https://pdoc3.github.io/pdoc" title="pdoc: Python API documentation generator"><cite>pdoc</cite> 0.10.0</a>.</p>
594594
</footer>
595595
</body>
596-
</html>
596+
</html>

0 commit comments

Comments
 (0)