-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllmstxt-state.json
More file actions
1662 lines (1662 loc) · 151 KB
/
Copy pathllmstxt-state.json
File metadata and controls
1662 lines (1662 loc) · 151 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": 1,
"generator_version": 3,
"project_name": "Alauda AI / Machine Learning Documentation",
"summary": "Documentation for Alauda's AI and machine learning platform, including Kubeflow, KServe, KubeRay, LWS, Kueue, Envoy AI Gateway, Dify, Feast, Llama Stack, Label Studio, TrustyAI, LLM Compressor, model inference, infrastructure management, and related installation, upgrade, monitoring, and learning guides.",
"generated_at": "2026-08-04T00:00:00Z",
"include_patterns": [
"docs/en/**/*.md",
"docs/en/**/*.mdx"
],
"exclude_patterns": [
"**/node_modules/**",
"**/.git/**",
"**/.yarn/**",
"docs/public/**",
"docs/shared/**",
"**/CHANGELOG.md",
"**/CONTRIBUTING.md",
"**/README.md",
".llmstxt-cache/**",
"**/.llmstxt-cache/**",
"llms.txt",
"**/llms.txt",
"llmstxt-state.json",
"**/llmstxt-state.json"
],
"grouping_base_path": "docs/en",
"description_max_words": 150,
"files": {
"docs/en/administer/hardware_profile/cpu_and_gpu_profiles.mdx": {
"sha256": "353beeb0c6c7d54a1b42b5093d07db7ae6cbe30e3d68d32a3b10064983bbbdfb",
"size": 3575,
"description": "How-to that contrasts a CPU-only HardwareProfile (cpu and memory identifiers only, generic worker nodeSelector) with a GPU-accelerated profile that adds an nvidia.com/gpu Accelerator identifier, an accelerator=nvidia-t4 nodeSelector, and an nvidia.com/gpu:NoSchedule toleration. Provides full infrastructure.opendatahub.io/v1alpha1 HardwareProfile YAML for both standard-cpu-profile and gpu-t4-profile so administrators can isolate scikit-learn/XGBoost-style CPU inference from LLM workloads that need physical GPU acceleration.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/administer/hardware_profile/create_hardware_profile_cli.mdx": {
"sha256": "886a19f4b7fa854d9f503c16fd11b06f0c97e5a0030fb751b40290478e3131b7",
"size": 2420,
"description": "Walks through creating a HardwareProfile from the command line by applying a sample gpu-high-performance-profile YAML (apiVersion infrastructure.opendatahub.io/v1alpha1) into the kube-public namespace with kubectl apply, then verifying with kubectl get hardwareprofile. The sample profile defines nvidia.com/gpu, cpu, and memory identifiers with min/max/default counts plus an accelerator=nvidia-a100 nodeSelector and an nvidia.com/gpu:NoSchedule toleration so data scientists can pick \"GPU High Performance\" in the Inference Service UI.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/administer/hardware_profile/hardware_profile.mdx": {
"sha256": "e71ae6f674cd8fcdf85eda3ac3d129ff932f7092eff91a49508aad60313eb43b",
"size": 10144,
"description": "Step-by-step administrator guide for managing HardwareProfile resources through the Alauda AI UI, covering creation, update, and deletion as well as how data scientists consume a profile when deploying InferenceService or LLMInferenceService workloads from the Service Manage page. Walks through configuring built-in and custom resource identifiers (cpu, memory, nvidia.com/gpu, custom accelerator/Other types) with default/min/max bounds, plus node selectors and tolerations, and explains the Hardware Profile vs. Custom Config Type choice and View Detail / Custom Configuration controls in the deployment form.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/administer/hardware_profile/index.mdx": {
"sha256": "fcae1fac8a99523796a3b5c470e4719f1e067f37ffc5e6d94e54ed1b771411f0",
"size": 53,
"description": "Top-level Hardware Profile section landing page that renders an Overview component aggregating the Introduction, admin function guides, and how-to articles (CLI creation, CPU vs GPU profiles, scheduling to specific GPU nodes) for governing Alauda AI inference resource allocation.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/administer/hardware_profile/intro.mdx": {
"sha256": "8a71105358fd65676ddc93f6c7bccb369e7e57cff628e2d663d082e2f7c53c3c",
"size": 4503,
"description": "Conceptual introduction explaining why Alauda AI ships HardwareProfile as an abstraction over raw Kubernetes scheduling for InferenceService and LLMInferenceService workloads. Covers the four pillars of the design: topology and accelerator abstraction via embedded node selectors and tolerations, dynamic bounded customization with Minimum/Default/Maximum resource limits, a dedicated Mutating Webhook that injects constraints and auto-corrects request/limit mismatches, and native interoperability with custom serving engines so the profile reaches the active predictor container.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/administer/hardware_profile/schedule_to_specific_gpu_nodes.mdx": {
"sha256": "c3002e112c525d0ec123a2bebcc6a91e1eb83de8e1bd5fce789568e035e4499f",
"size": 2457,
"description": "Explains how to pin AI inference workloads to dedicated GPU hardware by combining Node Selectors (for example accelerator=nvidia-a100 or nvidia.com/gpu.present=true) with Tolerations that match taints like nvidia.com/gpu:NoSchedule inside a Hardware Profile. Demonstrates the recommended Key/Operator/Effect (Exists, NoSchedule) configuration so that selecting the profile from the UI transparently targets A100/H100-class nodes without data scientists hand-editing pod specs.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/administer/index.mdx": {
"sha256": "58f6473f5e155f1eb4fe3afa0f3862e7686f02207d59a49aee452a5265d35ab5",
"size": 638,
"description": "Chapter landing page for platform administrators, covering hardware configuration, namespace and multi-tenant management, and cross-component administration such as MLflow workspace permissions and the Kagenti secure profile. Points to MLflow under Develop and Kagenti under Build AI Applications, and to Train for training quota governance.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/administer/multi_tenant/index.mdx": {
"sha256": "3a526097ae848db6afbbaae649fbace2b9cee34e9d132a15d8657a90dd8e2b11",
"size": 49,
"description": "Landing page for the Connections how-to guides, rendering an overview component that links to task-based tutorials for creating, updating, and consuming Connection resources for external model and data sources in Alauda AI projects.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/administer/multi_tenant/mlflow_workspaces.mdx": {
"sha256": "e05557d936f5192144b6e2e706ac0ffd0c31703bc5da92c892a1a507553470a5",
"size": 3588,
"description": "Guide to MLflow multi-tenancy on Alauda AI, where each workspace is a Kubernetes namespace and access to experiments, runs, datasets, and registered models is authorized by Kubernetes RBAC. Covers exposing a namespace as a workspace, granting user access, selecting a workspace from a client, and troubleshooting.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/administer/multi_tenant/namespace-manage.mdx": {
"sha256": "fc265a0956e5645a3ecc94d9dbebd2a2588c0442eaee5f0e702e2f988764a73d",
"size": 1812,
"description": "Procedure for onboarding a Kubernetes namespace as an Alauda AI tenant: creating the namespace under a project in the Web Console with Pod Security Policies set to privileged (otherwise AI Inference workloads will refuse to run), assigning Alauda AI Editor/Owner/Viewer roles to users through User Role Management, and finally registering it under Admin > Namespace Manage > Management Namespace.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/administer/secure_profile/enable_secure_profile.mdx": {
"sha256": "cb2000290fe798537ee75582250d0f54bde08dbe928d55b4a1fb0469da4434f5",
"size": 6386,
"description": "Procedure for turning on the Kagenti Operator secure profile, which adds SPIRE-based zero-trust workload identity, Keycloak OAuth2/JWT authentication, and an Istio ambient mesh enforced by an injected AuthBridge sidecar. Covers enabling it on the operand, opting namespaces in, deploying a secured agent, and verifying sidecar injection, SVID delivery, and Keycloak client registration.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/administer/secure_profile/index.mdx": {
"sha256": "19e3b3f29684b18dee498de1d86ed525cb2337d2a63dad654c5f4a48cbd6952b",
"size": 129,
"description": "Section index for the Kagenti secure profile, linking the dependency installation guide and the procedure that enables the profile on a cluster.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/administer/secure_profile/install_secure_dependencies.mdx": {
"sha256": "30e4c895c6de15f0259c0cdf8f4edd6651cb63ff827df9efbb001665d935f721",
"size": 8488,
"description": "Installs the cluster components the Kagenti secure profile depends on: cert-manager, SPIRE, Keycloak, and Istio in ambient mode. Describes the common platform package installation pattern, the SPIRE server, agent, CSI driver, and trust bundle, Keycloak operator and instance deployment with realm import, and Istio ambient setup.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/dify/features.mdx": {
"sha256": "bb29a775e0d64a1c4cb9f079891bead65e4c92a9f72db5cbba37c93f5a104c05",
"size": 2225,
"description": "Concise catalog of Dify capabilities organized into LLM application development (Assistant, Text Generator, Agent, Workflow/Chatflow; multi-provider LLM integration; visual prompt management), RAG (knowledge base ingestion, pgvector backing in the Helm chart, hybrid search and re-ranking, parent-child context, dataset versioning), Workflow & Agent (visual node-based editor, tool use, error handling, observability), and API & Integration (REST Service API, per-app API keys, Web App publish/embed, SDKs).",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/ai_applications/components/dify/index.mdx": {
"sha256": "c34545908dec7d7753f2ae71f69f58195ac5a795d2dd70091543feae81a3157f",
"size": 94,
"description": "Component landing page for Dify in the Build AI Applications chapter, linking its introduction, installation guide, and feature reference.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/dify/install.mdx": {
"sha256": "be9cc70f8758e82465b8c696533ca65b80d5c63ad483c7451404299879a1ce9f",
"size": 15125,
"description": "Step-by-step installation of Dify on Alauda Container Platform using the helm-based Dify OLM Operator. Covers publishing the operator package, installing the operator, preparing external PostgreSQL, Redis, optional pgvector, and RWX or S3 storage, choosing an access method and gateway, providing plugin-install proxies for restricted networks, and creating the Dify instance and connection secrets.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/dify/intro.mdx": {
"sha256": "002b67387d739a14bae320838e517737299dd208bc3a376c5b0448e44d9690d9",
"size": 2044,
"description": "Introduction to Dify, an open-source LLM application development platform offering a visual interface for AI workflows, RAG pipelines, agent capabilities, and model management. Describes core concepts and use cases from simple chatbots and text generators to multi-step agent workflows, and links the official documentation.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/index.mdx": {
"sha256": "a6a3b934882b35c61b1ee81054fd700fec3d2c2b7dea4c4b69029a7cf33f39d4",
"size": 196,
"description": "Section index for the components the Build AI Applications chapter relies on, gathering the introduction and installation guides for Dify, Llama Stack, Kagenti, and the MCP Lifecycle Operator.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/kagenti/index.mdx": {
"sha256": "7a4db3815e90b382f15766da3c5bfa3c653c8affea9b90d2ea369e36f3c1c7e6",
"size": 115,
"description": "Component landing page for the Kagenti Operator, linking its introduction, installation guide, and security architecture reference.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/kagenti/install.mdx": {
"sha256": "71a37fe8717dfc2b47142627297590eed51a4ebaece2997597b3b6eddd1f8937",
"size": 3974,
"description": "Installs the Kagenti Operator as an OLM operator from the platform OperatorHub. Lists prerequisites including ACP v4.0 or later, amd64 or arm64 clusters, OLM, and cert-manager for the admission webhook certificate; covers uploading and installing the operator, creating the Kagenti operand, verifying the CSV, controllers, and agent CRDs, and contrasts the core and secure profiles.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/kagenti/intro.mdx": {
"sha256": "20d24fe7e9c8058b3b6511d43d0a13a683d9391e3a518bdce8a2f9774eb8ac55",
"size": 3708,
"description": "Introduction to the Kagenti Operator, a Kubernetes-native operator that enrolls, discovers, and secures AI agents and MCP tools running as ordinary workloads. Describes the `agent.kagenti.dev` CRDs, key features, the default core profile with agent-to-agent discovery, and typical use cases for turning a plain Deployment into a managed agent.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/kagenti/security_architecture.mdx": {
"sha256": "a3458d96ca5602cac0bcb58308bb11eb3605870c8c96648c44914f1890cbb108",
"size": 11509,
"description": "Reference for the Kagenti Operator zero-trust security stack: SPIFFE/SPIRE workload identity, Istio ambient mesh transport security, and OPA plus AuthBridge plus Keycloak authorization with an example global Rego policy. Documents the AuthBridge sidecar, the AgentRuntime security fields, and how to enable the opt-in secure profile.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/llama_stack/features.mdx": {
"sha256": "a899ccb8a3ff9352341452241b9e24eafda9c70638f237ef595480ddb940ed4e",
"size": 1675,
"description": "Enumerates Llama Stack's main capabilities: a centralized server hosting inference/agents/safety/tool runtime/vector I/O/files, remote and inline providers (meta-reference, sqlite-vec, localfs), Kubernetes deployment via `LlamaStackDistribution`, `@client_tool` decorator-based agent creation with streaming sessions, YAML stack configuration with `${env.VAR:~default}` fallbacks, multiple distributions (starter, postgres-demo, meta-reference-gpu), and the `llama-stack-client` Python 3.12+ SDK including PGVector-backed vector store APIs.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/ai_applications/components/llama_stack/index.mdx": {
"sha256": "7e65c38bf496656612ea1a729935713f5a5bbe9fa8dda56d8b4644ab6355603c",
"size": 138,
"description": "Component landing page for Alauda Build of Llama Stack, linking its introduction, installation guide, feature reference, and quickstart.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/llama_stack/install.mdx": {
"sha256": "83277f97ed576ea8b3bd820a9dcd047a9a2051e066f38646a9696b52dec514dc",
"size": 11415,
"description": "Procedure for installing the Llama Stack Operator via Operator Hub and deploying a Llama Stack Server through a `LlamaStackDistribution` custom resource (apiVersion `llamastack.io/v1alpha1`), covering required `VLLM_URL` configuration pointing at a vLLM OpenAI-compatible endpoint, optional `VLLM_API_TOKEN` Secret, PGVector-backed vector stores via ACP PostgreSQL, Hugging Face mirror/offline embedding-model caching (`HF_ENDPOINT`, `HF_HUB_OFFLINE`), and vLLM predictor tool-calling flags (`--enable-auto-tool-choice`, `--tool-call-parser hermes`) needed for agent flows that use client-side or MCP tools.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/ai_applications/components/llama_stack/intro.mdx": {
"sha256": "4104f72294878ca9dec9a990539dbb105eb30b89010b2001a00ea6908d3929cd",
"size": 1887,
"description": "Introduces Llama Stack as a framework for building AI agents with tools, explaining its core building blocks: the Llama Stack Server deployed via Operator on Kubernetes, the `llama-stack-client` Python SDK, agents and `@client_tool`-decorated tools, YAML configuration registering providers (inference, agents, safety, vector_io, files) and models such as DeepSeek over OpenAI-compatible APIs, and links to upstream documentation at llamastack.github.io.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/ai_applications/components/llama_stack/quickstart.mdx": {
"sha256": "ee36200234ea2858a196a4176ac6214ac131cc815d041f9ba6b5697f0c49239b",
"size": 5047,
"description": "Walks through running the `llama-stack_quickstart.ipynb` notebook against a deployed Llama Stack Server, demonstrating both `@client_tool` client-side tools and FastMCP-based MCP tools registered with `toolgroups.register`, plus an optional PGVector flow that uploads a file via `client.files.create`, creates a `provider_id=\"pgvector\"` vector store, and runs hybrid search with `search_mode=\"hybrid\"`; also includes an FAQ for installing a Python 3.12 ipykernel from `python-build-standalone` so notebooks can use `llama-stack-client==0.6.0`.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/ai_applications/components/mcp_lifecycle_operator/index.mdx": {
"sha256": "4fd2f00f4fc2ab0929888c1847b049301356fa18b502a7238c6a2763de4bf5dc",
"size": 182,
"description": "Component landing page for Alauda Build of MCP Lifecycle Operator, linking its introduction, installation guide, and quickstart.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/mcp_lifecycle_operator/install.mdx": {
"sha256": "78b9f44c59ec7f101b8a19364692d01a6f3bb45cb062c62368fe4b96023c665d",
"size": 2418,
"description": "Installs Alauda Build of MCP Lifecycle Operator as an OLM operator from the platform OperatorHub. Covers publishing the package with the violet command-line tool, installing the operator, verifying that the CSV reports Succeeded, the controller pod is Running, and the MCPServer CRD is registered, and upgrading the operator.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/mcp_lifecycle_operator/intro.mdx": {
"sha256": "b8bf53812b3514bbcba1083fa42c8172c5c407371af7d760ac99490d7175bfa3",
"size": 4359,
"description": "Introduction to Alauda Build of MCP Lifecycle Operator, based on the Kubernetes SIG Apps MCP Lifecycle Operator. Describes the `MCPServer` custom resource in `mcp.x-k8s.io/v1alpha1` that declares an MCP server image, port, endpoint path, environment, configuration mounts, resources, and security settings, plus key features, how it works, and use cases.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/components/mcp_lifecycle_operator/quickstart.mdx": {
"sha256": "77b16574a8cbaba66e66a999995326fbebaec4f36477d1299640934476d62548",
"size": 5232,
"description": "Quickstart that creates an `MCPServer` resource and verifies that the operator produces the backing Deployment and Service. Covers prerequisites, creating and verifying the resource, testing the MCP endpoint, updating the port or path, common configuration options, and cleanup.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/demo_advanced_secure_profile.mdx": {
"sha256": "aae8d35b5dbd456669a27263015d0d9235b451116f5c2fcbb7d851b053dc3025",
"size": 26724,
"description": "Advanced variant of the weather agent demo in which AuthBridge is injected on both the agent and the tool, and every agent-to-tool call performs an OAuth 2.0 RFC 8693 token exchange so the tool receives an audience-scoped token. Covers the ConfigMaps involved, the Keycloak client-id convention, deploying the tool with a sidecar, configuring token exchange, preparing outbound routes, and deploying the secured agent.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/demo_with_secure_profile.mdx": {
"sha256": "1353c2b88b835ee046c274cd6a226aaf88ee886fb39b2c12f150720457894982",
"size": 22012,
"description": "Runs the weather agent scenario under the Kagenti secure profile: the AuthBridge sidecar is injected into the agent, the operator registers a per-workload Keycloak client, SPIRE issues a workload SVID, and every request must carry a valid Bearer token. Covers deploying the MCP tool server, deploying the secured agent, and verifying sidecar injection, SVID delivery, and token enforcement.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/deploy_agent_with_agentruntime.mdx": {
"sha256": "4ca189aaab33ba2b0d98a2b9fa6d454bd96f41352f3f2de49794e43542e1c7d9",
"size": 14403,
"description": "Smallest end-to-end deployment on the Kagenti Operator core profile, with agent enrollment and dynamic discovery but no identity sidecars, Keycloak, or mesh mTLS. Builds a weather agent that calls a weather MCP tool, covering how to find the model endpoint and name, deploying the tool server and the agent, and checking `AgentRuntime` status.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/envoy_ai_gateway_mcp.mdx": {
"sha256": "2171fdeda903b92e873e471dd266572fa0ed3a30ddfd51fa648afa4eb67a5ec7",
"size": 6969,
"description": "Example that deploys the Rosso weather and restaurant-reservation MCP servers, aggregates them behind a single Envoy Gateway data plane, and connects a Kagenti generic agent to one unified `/mcp` endpoint. Covers validated versions, the topology and HTTPRoute count, source manifests and images, testing the unified endpoint, and cleanup.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/ai_applications/index.mdx": {
"sha256": "2b04e72fb31b0c694111ee3fbcf93c03da04221b64119e4c57369b13f865423b",
"size": 447,
"description": "Chapter landing page for building AI applications, covering agent runtimes, MCP servers, and RAG applications, with the components the chapter relies on listed under Components. Notes that enabling the secure profile and installing its dependencies are administrator tasks covered in the Administer chapter.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/apis/index.mdx": {
"sha256": "0833ba10bfa12ad3c7f7bbe4304db494a19773eb255b6d17454cab4cb0524abd",
"size": 225,
"description": "Top-level landing page for the Alauda AI API Reference section, rendering an overview component that links to the platform's Kubernetes APIs and ACP-style API listings. Acts as the entry point under the API Reference weight slot in the docs navigation.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/intro.mdx": {
"sha256": "392573e1a7424315cb7349b32722f34411e3910b34033a12dbcb5ba1eca390a2",
"size": 132,
"description": "Introduction page for the Alauda AI API surface, embedding the `<AcpApisOverview />` component that auto-generates a catalog of the ACP REST APIs exposed by the platform. Serves as the first stop for readers exploring HTTP-style API endpoints rather than CRDs.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/index.mdx": {
"sha256": "2f706fcf5757a2a54ae44f489f27faee3a8e57ac5c8c9064f2f94d95f2e06527",
"size": 211,
"description": "Landing page for the Kubernetes APIs section, listing the Custom Resource groups Alauda AI exposes (Workbench/Kubeflow workspaces, manage.aml.dev namespaces, amlclusters.aml.dev operator resources, and KServe serving). Renders an overview component that aggregates child CRD reference pages.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/kubeflow.org/index.mdx": {
"sha256": "147789e1f5b4b4fd6178bc3a85d85edc6050d1a0eea677fec8ed72e262a5b174",
"size": 72,
"description": "Section index for the Kubeflow-derived Workbench APIs, grouping the `kubeflow.org/v1beta1` Workspace and WorkspaceKind CRDs that back Alauda AI's notebook/IDE workbench feature. Provides the entry point for readers configuring Jupyter-style developer workspaces.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/kubeflow.org/workspacekinds.mdx": {
"sha256": "243f71311eddbbee1e40e3552cc2913add4d79044cc73f56e6e6f3311e4837d0",
"size": 108,
"description": "Generated CRD reference for `WorkspaceKind` in `kubeflow.org/v1beta1`, rendered via the `<K8sCrd>` component. Documents the cluster-scoped template that defines image options, pod overrides, and lifecycle settings shared by individual user Workspaces in the Kubeflow Notebooks 2.0 / Workbench experience.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/kubeflow.org/workspaces.mdx": {
"sha256": "923806bc685b12891deb6088cb42172f60a0e2546e67ea72bcd3184ffc284d4e",
"size": 99,
"description": "Generated CRD reference for the `Workspace` resource in `kubeflow.org/v1beta1`, rendered via `<K8sCrd>`. Documents the per-user notebook workspace instance that references a WorkspaceKind and drives the running IDE pod, PVCs, and connection bindings inside Alauda AI's Workbench.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/manage/amlnamespaces.mdx": {
"sha256": "65b8e8436160f785e40782f3946ae3b7c31cc3977629c766bedcca201c604c57",
"size": 109,
"description": "Generated CRD reference for `AmlNamespace` in `manage.aml.dev/v1alpha1`, the Alauda AI-managed namespace resource that projects use to declare project-level configuration, quotas, and platform metadata layered on top of a Kubernetes namespace.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/manage/index.mdx": {
"sha256": "10d3ba496064fb2c35aa74f9c36e53318f8a396ad0368d9be977e85816f203e7",
"size": 69,
"description": "Section index for the `manage.aml.dev` API group, anchoring CRDs such as `AmlNamespace` that the management plane uses for project/namespace lifecycle. Renders an overview component listing the manage-group resources documented in this site.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/operator/amlclusters.mdx": {
"sha256": "ecaaf4251da2ea58cc95a8be297b859c36673a70fd66ff8fc9785b5e47948e8e",
"size": 115,
"description": "Generated CRD reference for `AmlCluster` in `amlclusters.aml.dev/v1alpha1`, the top-level operator resource that installs and reconciles an Alauda AI deployment on a Kubernetes cluster, including its component versions and runtime configuration.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/operator/index.mdx": {
"sha256": "607685a5e1fc407c0209b15d8b4b4118d1e8d2f3ed178d397aa90ffc34d046cb",
"size": 71,
"description": "Section index for the Alauda AI Operator APIs, gathering the `amlclusters.aml.dev` CRDs (notably `AmlCluster`) that the operator uses to install and manage the platform. Entry point for cluster administrators authoring operator-level resources.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/serving.kserve.io/clusterservingruntimes.mdx": {
"sha256": "b048e6949c93f4ac29e06e0eb86da788d286f809f7735abe05a4cdaf3cbf2ecc",
"size": 210,
"description": "Generated CRD reference for KServe's `ClusterServingRuntime` in `serving.kserve.io/v1alpha1`, rendered via `<K8sCrd>`. Documents the cluster-scoped runtime template (container image, supported model formats, predictor protocol) that `InferenceService` resources select when serving a model.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/serving.kserve.io/index.mdx": {
"sha256": "aa84e258f78df38d8af9d4ee6b905bad1acc875eda8a100b00cc1ba47c649c63",
"size": 80,
"description": "Section index for the KServe Inference Service APIs in the `serving.kserve.io` group, covering both `InferenceService` (v1beta1) and `ClusterServingRuntime` (v1alpha1) CRDs that drive model deployment and serving in Alauda AI.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/apis/kubernetes_apis/serving.kserve.io/inferenceservices.mdx": {
"sha256": "8ca2d3b31cde2b3003fd401e49a2bbee8ec36ab69bfbce0114d9b19ddd65f82a",
"size": 199,
"description": "Generated CRD reference for KServe's `InferenceService` in `serving.kserve.io/v1beta1`, rendered via `<K8sCrd>`. Describes the primary resource used to deploy a model in Alauda AI - including predictor/transformer/explainer specs, storage URI, runtime selection, and autoscaling - which the platform's model-deployment UI ultimately produces.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/components/envoy_ai_gateway/index.mdx": {
"sha256": "bfc34682672d2d29b977cbb6588d69b696e75bd894f60178d6504c0fe5639452",
"size": 158,
"description": "Component landing page for Alauda Build of Envoy AI Gateway, linking its introduction and installation guide.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/components/envoy_ai_gateway/install.mdx": {
"sha256": "035ce2c76d5d54a4272911e4aa413fabacb66b1235db710e89cba80ff82047d9",
"size": 1892,
"description": "Procedure for deploying the Alauda Build of Envoy AI Gateway cluster plugin: obtain the package from the Customer Portal, upload it to ACP per the CLI tools guide, then install via Administrator -> Marketplace -> Cluster Plugin against the target cluster. Verifies success with kubectl get pods -n envoy-gateway-system | grep ai-gateway and describes upgrades through Clusters -> Functional Components -> Upgrade.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/components/envoy_ai_gateway/intro.mdx": {
"sha256": "78b66465e208885e5161d2847fbfea266b6dcc6ae06be37412da13fa58c5a5d7",
"size": 4407,
"description": "Introduction to Alauda Build of Envoy AI Gateway, a Kubernetes-native AI gateway layer built on Envoy Gateway that provides AI-aware routing by model name and backend availability, an OpenAI-compatible API, and policy enforcement for inference workloads. Links the gateway guides and upstream documentation.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/components/index.mdx": {
"sha256": "da21f20caeed27ffa65146b6f42025c7f5e574a1c3e0d29f0fe2d225c9542338",
"size": 196,
"description": "Section index for the components the Deploy chapter relies on, gathering the introduction and installation guides for KServe, Envoy AI Gateway, LeaderWorkerSet, and InferNex Bridge.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/components/infernex_bridge/index.mdx": {
"sha256": "9c126639c9e9296f2030b62bc4c709ff3f6230cca332d3aaae830b6a8685c260",
"size": 154,
"description": "Component landing page for Alauda Build of InferNex Bridge, linking its introduction and installation guide.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/components/infernex_bridge/install.mdx": {
"sha256": "a7ae03c18ab0cc7e8c64e436a523f95f76f10212892f721077fbfb192ada8972",
"size": 19919,
"description": "Installs Alauda Build of InferNex Bridge v26.6.0 from the OLM alpha channel on arm64 clusters. Covers required platform and inference dependencies, the CRDs the operator installs, runtime templates and images, optional dependencies including EagleEye observability, uploading and installing the operator, verification, community examples, and the upgrade and rollback procedures.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/components/infernex_bridge/intro.mdx": {
"sha256": "f619047c216e8d5fd3a6738b1f96398f56ba7b10d7eb5a2f08ddfdcba2389d17",
"size": 6024,
"description": "Introduction to Alauda Build of InferNex Bridge, based on the openFuyao InferNex project. Connects KServe `LLMInferenceService` workloads with the InferNex inference acceleration stack and provides native `InferNexService` APIs for clusters that do not use KServe. Describes both deployment modes, supported inference engine topologies, and capabilities.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/components/kserve/index.mdx": {
"sha256": "ac54eb4ab17f5a5c586f0edbee4222c59345bad6926b5f293089580714f6bdd7",
"size": 118,
"description": "Component landing page for Alauda Build of KServe, linking its introduction and installation guide.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/components/kserve/install.mdx": {
"sha256": "694fe98ef45af988de1d019eed1c98b6692206474fe7314b828e966e38ce4872",
"size": 8765,
"description": "End-to-end install of **Alauda Build of KServe** on ACP: lists required dependencies (Envoy Gateway Operator, Envoy AI Gateway, LeaderWorkerSet cluster plugins, and bundled GIE), uploads the `kserve-operator.ALL.xxxx.tgz` via `violet push`, installs through OperatorHub, then creates a `KServe` CR (`components.aml.dev/v1alpha1`) named `default-kserve` configured with `clusterName`, `deployFlavor`, `platformAddress`, registry address, ingress `domain`, and `kserve.controller.deploymentMode` (`Knative` for scale-to-zero or `Standard`). Documents preset configuration tables for `envoy_gateway`, `envoy_ai_gateway`, `kserve_gateway`, and `GIE` (with `gie.builtIn` to disable bundled GIE), plus verification via `kubectl get kserve default-kserve -n kserve-operator` showing `DEPLOYED: True`, and the upgrade path.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/components/kserve/intro.mdx": {
"sha256": "1446dbec2393bf6e0bee00ba8d0bcbed37308c594a73139b84adc7ef763b6dfd",
"size": 4316,
"description": "Introduces **Alauda Build of KServe** as Alauda's distribution of upstream KServe, splitting coverage into Generative AI features (llm-d distributed inference with KV-cache-aware scheduling and Leader/Worker multi-node parallelism, vLLM runtime with PagedAttention, OpenAI-compatible `/chat/completions` streaming, autoscaling including scale-to-zero, and Envoy Gateway + GIE integration) and Predictive AI features (the `InferenceService` CRD with canary rollouts, pre-integrated runtimes like TensorFlow Serving, TorchServe, Triton, SKLearn, XGBoost, `ClusterServingRuntime`/`ServingRuntime` for custom runtimes, and `InferenceGraph` for pipeline composition). Includes upstream documentation links for KServe, llm-d, LeaderWorkerSet, Envoy Gateway, Envoy AI Gateway, and Gateway API Inference Extension.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/components/lws/index.mdx": {
"sha256": "b13c1dc5bd91e2f6af310549dc8ec5f23a30cd19bd2a45e1f7158c7e37d7b782",
"size": 154,
"description": "Component landing page for Alauda Build of LeaderWorkerSet, linking its introduction and installation guide.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/components/lws/install.mdx": {
"sha256": "c83d92deb6331b3c6129a5b5ddddd8e36d508ad32c5f1c3ae9933d47aca86b12",
"size": 1318,
"description": "Installation procedure for the Alauda Build of LeaderWorkerSet cluster plugin obtained from the Customer Portal: upload through the ACP cluster plugin tooling, deploy from `Administrator > Marketplace > Cluster Plugin`, verify with `kubectl get pods -n cpaas-system | grep lws`, and upgrade via the cluster's Functional Components page.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/components/lws/intro.mdx": {
"sha256": "06088f4de3d3405f689fc8c16a16cb87287eb51250c85429ccc7b23d2127cb81",
"size": 2671,
"description": "Introduces Alauda Build of LeaderWorkerSet, a packaging of the upstream Kubernetes SIG `lws` project that provides a `LeaderWorkerSet` CRD for deploying groups of one leader and N worker pods as a unit; highlights co-scheduling with topology spread constraints for NVLink/InfiniBand interconnects, multi-node LLM inference for models like Llama 3.1 405B using tensor/pipeline parallelism (required by Alauda Build of KServe), distributed training with PyTorch DDP/DeepSpeed/Megatron-LM, group-level rolling updates and failure recovery, and leader-first startup sequencing.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/gateway/cost_management_chargeback.mdx": {
"sha256": "97aae98a70685f195a15f50c9bcc2e9c65711603c29ca989945532969e6f137d",
"size": 12002,
"description": "How-to guide that defines a custom cost model for AI Gateway token usage and turns it into per-namespace bills through Alauda Cost Management. Adds a collection configuration on the agent cluster, a display and storage configuration on the server cluster, and a price in the cost model, consuming the OpenTelemetry GenAI token metric keyed on the `user_namespace` label.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/gateway/external_provider_routing.mdx": {
"sha256": "e2a13c2aa5307bce34a4c44f63287565c31fb4ddb49f74b35bfc6e366c73c18a",
"size": 10558,
"description": "How-to guide for fronting external LLM providers such as OpenAI, AWS Bedrock, Azure OpenAI, GCP Vertex AI, and Anthropic behind one OpenAI-compatible endpoint. Injects upstream credentials with a `BackendSecurityPolicy`, routes by model name, and fails over between providers so consumers never hold provider keys and the gateway becomes the controlled egress point.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/gateway/identity_authentication.mdx": {
"sha256": "07d5eb3e46264ace5dc24f00e12756ee980fbd9a2fc5d5ce694ba82e2f906b41",
"size": 11458,
"description": "How-to guide for authenticating inference requests at the Envoy AI Gateway edge with an Envoy Gateway `SecurityPolicy` attached to the `HTTPRoute` generated by an `AIGatewayRoute`. Copies selected claims into request headers that token quotas and usage metering consume as the per-tenant key, turning an SSO token or API key into an identity for multi-tenant policy.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/gateway/index.mdx": {
"sha256": "7fdb958e2c2883c004bbcbb8d53405e93db65fc70be46869a2d57c144f5b2d1a",
"size": 141,
"description": "Section index for the inference gateway how-to guides covering consumer authentication, token quotas, usage metering, external provider routing, and token chargeback.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/gateway/token_rate_limiting.mdx": {
"sha256": "de5f2505c3cb9d3ece4d28c12cac8c115ba40f3407408e516850698ce9795a33",
"size": 12879,
"description": "How-to guide for rate limiting by token usage rather than request count, with a separate budget per caller identity. Uses `AIGatewayRoute.llmRequestCosts` to extract token counts into Envoy dynamic metadata and a Redis global rate limit backend to accumulate cost, enabling per-user, per-department, and per-tier token quotas on one gateway.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/gateway/usage_metering.mdx": {
"sha256": "cdf324abd5ec1beb126fa7f9e95f0afe365e83cc824b1ee158d57a5f60676266",
"size": 16613,
"description": "How-to guide for collecting Envoy AI Gateway token metrics that follow OpenTelemetry GenAI semantic conventions, labelled with caller identity, into the platform monitoring stack. Covers the pipeline from gateway metric emission through identity labelling, `PodMonitor` collection, and `MonitorDashboard` presentation, feeding chargeback in Alauda Cost Management.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/index.mdx": {
"sha256": "05171392507536c6ad01c4446553d096dd6614983d18a762091d6701819c486c",
"size": 372,
"description": "Chapter landing page for deployment and inference, covering creating and scaling inference services, model management and storage, Model as a Service, quota and metering at the inference gateway, and model compression, with the chapter's components listed under Components.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/inference_service/guides/accurately_schedule.mdx": {
"sha256": "1abaec5dd467156bab27de1d5f7630d0c552efe615a5191165c72f1d81b52d49",
"size": 3418,
"description": "Guide to scheduling KServe `InferenceService` pods onto GPU nodes with compatible CUDA driver versions, solving runtime-vs-driver mismatches that the default Kubernetes scheduler ignores. Operators tag each GPU node with `nvidia.com/cuda.runtime.major` / `.minor` labels (manually via `nvidia-smi` + `kubectl label`, or automatically via the Node Feature Discovery plugin's GFD extension), then attach a `preferredDuringSchedulingIgnoredDuringExecution` `nodeAffinity` block matching the `cpaas.io/cuda-version` on the chosen `ClusterServingRuntime`. Notes that Alauda AI 1.5+ performs this scheduling automatically.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/guides/autoscale_settings.mdx": {
"sha256": "507961a5e97b80c5f5ea0cefe5ac6f5062037cf06454cd4f5dd12c6485e5baec",
"size": 10669,
"description": "Configures Knative Pod Autoscaler (KPA) — the default for KServe `InferenceService` predictors — covering scale-down (per-service `spec.predictor.minReplicas: 0/1`, cluster-wide `enable-scale-to-zero` in the `config-autoscaler` ConfigMap, `scale-to-zero-pod-retention-period`, `scale-to-zero-grace-period`) and scale-up (soft-limit `scaleTarget` with `scaleMetric: concurrency`, hard-limit `containerConcurrency`, `target-utilization-percentage`, and switching the metric to `rps` via `requests-per-second-target-default`). Stresses keeping the `helm.sh/resource-policy: keep` annotation on the global ConfigMap so customizations survive upgrades.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/guides/create_inference_service_cli.mdx": {
"sha256": "bd299df5e88a1dc16f1f989dccaa99e81a53797936a8915cd62f44c7c3bf289c",
"size": 7339,
"description": "Walkthrough for authoring an `InferenceService` YAML by hand and applying it with `kubectl`, using a Qwen2.5-0.5B-Instruct + `aml-vllm-0.9.2-cuda-12.6` runtime as the worked example. Shows the required AML annotations and labels (`aml-model-repo`, `aml-model-group`, `aml.cpaas.io/runtime-type: vllm`, `service.subdomain`), a GPU-aware bash command that auto-detects GPUs, handles GGUF model files, and launches `vllm.entrypoints.openai.api_server` with `--tensor-parallel-size`, CUDA-version `nodeAffinity`, NVIDIA fractional-GPU resource keys (`nvidia.com/gpualloc`, `nvidia.com/gpucores`, `nvidia.com/gpumem`), and a curl test against the OpenAI-compatible `/v1/chat/completions` endpoint.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/guides/custom_inference_runtime.mdx": {
"sha256": "5961ed2cb58fd198ed1fafa8f23fca4643cfd6be35e628bbaf479967da43a20d",
"size": 45890,
"description": "Guide to adding custom inference runtimes for serving LLMs and other models beyond the built-in vLLM engine. Walks the standard workflow using Xinference to create runtime resources and select them when publishing an inference service, then gives specific examples for MLServer, Triton Inference Server, vLLM-ascend, and MindIE on Ascend NPU, with a comparison of runtime configurations.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/inference_service/guides/external_access_inference_service.mdx": {
"sha256": "86c3e5c8a5a8a7534c6237f80df7c9b2798a5a3d7672795228d29cbbfd20e083",
"size": 4846,
"description": "Steps to expose an in-cluster inference service to outside callers: locate the URL on the service detail page or `status.url`, create a matching Domain (Network > Domains) scoped to the cluster and project, provision a shared Load Balancer (Network > Load Balancers), then add HTTP/HTTPS listeners and a forwarding rule that targets the `knative-ingressgateway` Service in the `istio-system` namespace (using `knative-serving-cert` as the default certificate for HTTPS). Ends with a `curl --resolve` recipe against `/v1/models` for verifying that the load balancer routes inference traffic correctly.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/guides/index.mdx": {
"sha256": "c1baf3a39357ed81ffdac12951b006628e218cffbdc05ae0ec61a9819b844b17",
"size": 87,
"description": "Index page for the Hardware Profile Guides section that renders an Overview component linking to the underlying admin task pages such as the HardwareProfile create/update/delete walkthrough used by Alauda AI inference deployments.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/guides/keda_autoscaling.mdx": {
"sha256": "fccc93513b5a702106ace47d4a7047a8fbdc161c0d6d1b120c821af56de4624f",
"size": 8860,
"description": "Replaces the default KServe HPA with KEDA-based autoscaling driven by vLLM-specific Prometheus metrics (`vllm:num_requests_running`, `vllm:num_requests_waiting`, `vllm:gpu_cache_usage_perc`, latency histograms). Procedure covers granting `kserve-controller-manager` access to KEDA CRDs (`ClusterRole`/`ClusterRoleBinding`), stopping the service with `serving.kserve.io/stop=true`, copying credentials from the `kube-prometheus-alertmanager-basic-auth` secret in `cpaas-system` into the workload namespace, creating a `TriggerAuthentication`, and adding `serving.kserve.io/autoscalerClass: keda` plus an `autoScaling.metrics` block with a PromQL query and per-replica target so KEDA computes `ceil(metricValue / value)` replicas.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/guides/kubeflow_kserve_endpoints.mdx": {
"sha256": "57cb15b980566e2c5f64a52a76702f4e88b61a590e13ddd4a8d864b7ad05ff1e",
"size": 2304,
"description": "Guide to deploying and managing inference services from the KServe Endpoints page in the Kubeflow central dashboard. Creates the same `serving.kserve.io/v1beta1` `InferenceService` object as the CLI and the Alauda AI console, so services are visible in all three; covers accessing the Endpoints UI, deploying a model, and verification.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/inference_service/guides/kueue_scheduling.mdx": {
"sha256": "fe840ac5a7a1ebbe9520a2fa204599d15f1dc9d85ba1f776cdfa1ad57abfae0b",
"size": 4098,
"description": "Worked example of using Alauda Build of Kueue to gate KServe InferenceService deployments in Alauda AI, including creating ClusterQueue, ResourceFlavor, and LocalQueue resources that cover CPU, memory, pods, ephemeral-storage, and Alauda Build of Hami vGPU resources (nvidia.com/gpualloc, total-gpucores, total-gpumem). Demonstrates labeling the InferenceService with kueue.x-k8s.io/queue-name, observing predictor pods stuck in SchedulingGated when quotas are insufficient, and unblocking them by raising the nominalQuota for nvidia.com/total-gpucores.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/guides/using_modelcar.mdx": {
"sha256": "a230245b845bde35cfab38ade9312d7fe9a898e3af355ba3fbd6677786cdb922",
"size": 7410,
"description": "Packages model artifacts as OCI container images (KServe Modelcar) and references them with `storageUri: oci://...` to gain faster cold starts, lower disk churn, and offline distribution via Harbor/Quay. Provides two Containerfile templates (busybox and Red Hat `ubi-micro`), Podman/nerdctl build-and-push commands, advice on splitting large `.safetensors` files across layers to respect Harbor's per-layer size limit, and a sample `InferenceService` that consumes the image with the vLLM runtime; troubleshooting tips cover `kubectl describe`, predictor logs, and `crictl pull` for verifying registry access from a node.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/guides/vllm_expert_parallel.mdx": {
"sha256": "758f2d09f51845355534f1ef74981a51a027b0e06eab2621b7844bb3de23fd91",
"size": 9818,
"description": "Single-node YAML pattern for turning on vLLM Expert Parallel (EP) for Mixture-of-Experts models by adding `--enable-expert-parallel`, `--tensor-parallel-size 1`, and `--data-parallel-size \"${GPU_COUNT}\"` to the predictor command, with EP size derived as `TP_SIZE x DP_SIZE`. Explains the layer-level consequences (expert layers sharded across all EP ranks, attention layers replicated when `TP_SIZE=1` or sharded otherwise), shows a full `InferenceService` example for DeepSeek-V3-0324, and explicitly defers performance tuning and multi-node deployments to upstream vLLM documentation.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/guides/vllm_speculative_decoding.mdx": {
"sha256": "828841690355ecd4bdb98adee6eafdb290986e53463747a70e79c949561b6646",
"size": 38362,
"description": "Practitioner's guide to enabling vLLM speculative decoding on an `InferenceService` via the single `--speculative-config` JSON argument, focused on N-gram and EAGLE-3 methods with starting `num_speculative_tokens` recommendations. Documents three ways to deliver the target + draft artifacts (KServe `storageUris` plural for 0.16+, single OCI Modelcar bundle, or pre-staged PVC), how to verify acceptance from the `SpecDecoding metrics` log lines and `/metrics` Prometheus counters, a benchmark template, and a rollback path. Includes internal A30 + Qwen3-8B and Llama-3.1-8B + EAGLE3 lab snapshots showing ~1.84x speedup on code-refactor but break-even or regression on chat, plus troubleshooting for OOM, NotReady due to slow cold start, and silently ignored `min_p`/`logit_bias` parameters.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/index.mdx": {
"sha256": "ea3cd5033545fbb05ce124c7512dd130e626d4b0d2ccb7c65e005626d3bc202e",
"size": 54,
"description": "Top-level Inference Service section landing page rendering the `<Overview />` index for the Introduction, Functions, How-To, and Troubleshooting subsections.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/inference_service.mdx": {
"sha256": "9cc6b2b5c48faad2709e3394649292198c98a7600f28f5eec3ab31119f0ea6ff",
"size": 27304,
"description": "Reference for AML's Inference Service feature, which deploys trained models via KServe `InferenceService` CRD using runtimes such as vLLM, Seldon MLServer, and `llm-d`. Walks through publishing flows (Custom Publish and Template Publish, from Model Repository or PVC), template lifecycle, rolling updates, the visual Inference Experience for text generation, text/image classification, and text-to-image tasks, plus HTTP API/gRPC invocation. Includes a full parameter table for publishing (Hardware Profile vs. Custom resources, GPU allocation, autoscaling, env vars, startup command) and inference-time generation parameters (`max_new_tokens`, `temperature`, `top_k`/`top_p`, beam search, contrastive search, diffusion `num_inference_steps`, `guidance_scale`).",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/intro.mdx": {
"sha256": "6932cb6099f6c3019f3e6392afdecdef1f6bc27fac01a0f7a50a16b8cb90f97d",
"size": 581,
"description": "One-page introduction framing the Inference Service as Alauda AI's core LLM-serving capability, exposing models over HTTP API and gRPC for building stable, high-performance LLM applications. Carries a warning that the built-in runtime container requires root privileges and should only be used in trusted environments under existing security policies.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/troubleshooting/index.mdx": {
"sha256": "9ad17b9ef6868fdc28e2a45fe960ed7cd7d87776e76c818028db534860a1c8fd",
"size": 91,
"description": "Section landing page that renders an `<Overview />` index of inference-service troubleshooting topics (currently MLServer timeout diagnostics).",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/troubleshooting/infer_timeout.mdx": {
"sha256": "3d24f7cd3ed387e6cd6fcf387c6f2d86e5c77eacfaac4d74a463d20ed1d40d08",
"size": 2632,
"description": "Diagnoses inference-experience `502 Bad Gateway` timeouts on the Seldon MLServer runtime, attributing them to insufficient compute, overly long generated outputs, or MLServer's non-streaming response behavior that blocks until the full inference completes. Recommends upgrading CPU/GPU/memory, capping `max_new_tokens` at request time, and reducing model size/input complexity via quantization, pruning, or input preprocessing to bring response times back under the gateway's timeout window.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/inference_service/troubleshooting/pod_security_admission_violation.mdx": {
"sha256": "b9acced874d9081d2a4e14b98977b7ebda655ff4a244edd8943f146c4cde61a7",
"size": 2419,
"description": "Troubleshoots inference services stuck out of Running state on Alauda Container Platform when the Deployment exists but no Pod is created and FailedCreate events cite Pod Security Admission baseline violations such as hostIPC=true. Walks through inspecting the runtime for privileged requirements like host namespaces, removing them when possible, or otherwise raising the namespace's Enforce/Audit/Warn Pod Security Standard to Privileged via the Project view's Update Pod Security Admission action.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/maas.mdx": {
"sha256": "1f85e9e8e40a0fc0a7db10151bc17e6ee051bfd0c6d1b46c3a6193fd114079f4",
"size": 2034,
"description": "Describes Model as a Service, the managed model-serving gateway for Alauda AI built on Alauda Build of Envoy Gateway and Envoy AI Gateway with Authorino for authentication. Covers model sources, the administrator experience of publishing models, managing access, configuring token quotas, and monitoring usage, and the developer experience of calling subscribed models with API keys.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/model_compression/compressor_by_workbench.mdx": {
"sha256": "e10aaef21991de58fed08964347958e4979ed96e24fb8e22e35526ce69a7c615",
"size": 9394,
"description": "Guide to running LLM Compressor model compression workflows on Alauda AI from a workbench. Covers the data-free and calibration-dataset example notebooks, creating a workbench and model repository, uploading models and optional datasets including from S3-compatible object storage, cloning them in JupyterLab, running the compression notebooks, uploading the compressed model, and deploying it for inference.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/model_compression/index.mdx": {
"sha256": "66ec77f7bba95e67b58338c62cef0a25e400f91f55a6a10515b6f62383ab0cd0",
"size": 51,
"description": "Top-level landing page for the LLM Compressor section, embedding `<Overview />` to surface the introduction and how-to subsections.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/model_compression/intro.mdx": {
"sha256": "0fd9aced20955407b786939a64041900c78a32390189fb411a9a31defb1fa8ba",
"size": 2692,
"description": "Introduces LLM Compressor as the vLLM project's open-source model-compression library that supports quantization (int8, W4A16 weight-only, W8A8 weight+activation), sparsity, and file-size compression with native Hugging Face and vLLM integration; lists supported algorithms AWQ, GPTQ, FP8 dynamic per-token, SparseGPT, and SmoothQuant, and explains how computed scales/zero-points (per-tensor, channel, group, or token) produce compressed models suitable for resource-limited deployment.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/model_management/index.mdx": {
"sha256": "2281881f66adace09c16f26bbab671882b93c199a6456c3138bbb7164db8ff2b",
"size": 53,
"description": "Section landing page for the Dify overview, embedding the Overview component to list the Introduction and Main Features sub-pages.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/model_management/intro.mdx": {
"sha256": "526e8b02bb4b2a43710c447b81f5b66127df2d8d6a7a6a8ee9414eafab4cebce",
"size": 508,
"description": "Brief introduction positioning the Model Repository as a Git LFS-based versioned storage hub for LLMs on the Alauda AI platform, covering inference deployment, fine-tuning, and evaluation phases with version, sharing, and lifecycle management capabilities.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/model_management/model_repository.mdx": {
"sha256": "8991a152592fcce8cfa363f4698323a44923e1ff4bf2efc768c514c700e56f67",
"size": 2618,
"description": "Reference for the Git-backed Model Repository: creating and deleting repos with name/description/visibility metadata, pushing large files via Git LFS using `.gitattributes` patterns like `*.bin filter=lfs`, branching/tagging for parallel versions, auto-syncing README.md metadata, and cross-tenant Shared/`public` namespace publishing. Also covers integrations including one-click inference service launch from tagged versions and pulling models into AML Notebooks via `git clone`.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/model_management/model_storage.mdx": {
"sha256": "0c3a5efa44f73ea96409896155002229948941ce6df9be1e9389953afad412a2",
"size": 8839,
"description": "Reference for the model storage types Alauda AI supports before a model can be deployed: S3-compatible object storage downloaded by a storage initializer init container, Persistent Volume Claims mounted before the main container starts, and OCI containers (KServe modelcars) that achieve fast loading through container runtime layer caching. Covers authentication configuration and inference service deployment for each.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/deploy/model_management/share_models.mdx": {
"sha256": "9d27e83daaa3fd245561da7d67f46e25e0a509963b6d41f600b524a1b4913b6d",
"size": 4241,
"description": "Manual workflow for sharing an LLM that lacks a UI publishing flow: add model card metadata (`pipeline_tag`, `library_name`) either through the File Management Edit Metadata dialog or by writing a YAML frontmatter block into the model's README.md, then change the backing GitLab project's visibility from Private to Public. When using README-based metadata, GitLab admin must also add project topics like `text-classification` and `aml_framework_transformers` so the platform recognizes the model as inference-ready; metadata cannot be edited once shared.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/deploy/model_management/upload_models_using_notebook.mdx": {
"sha256": "08584cd78d9796b65a1852360403da8bc1181d56d60519d50e010f8c98370517",
"size": 8934,
"description": "End-to-end procedure for uploading an LLM into the Alauda AI model repository from a Workbench/Notebook, including downloading from huggingface.co, hf-mirror.com, or modelscope.cn with `huggingface-cli`, initializing a Git repo, writing a `.gitattributes` file that LFS-tracks formats like `*.safetensors`, `*.bin`, `*.pt`, and `*.ckpt`, and pushing with `git -c lfs.activitytimeout=36000 push -u origin main`. Also covers editing Task Type/Framework metadata (e.g., text-generation + Transformers) and using `git lfs migrate import --above 100MB` to retroactively LFS-track large files.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/agentic_mlops/coding-agents-with-inference-service.mdx": {
"sha256": "e58d9a999152fece8eb37b3faad1403e04a8dd05bcfa39232c052259ce5ca29d",
"size": 33482,
"description": "Guide to pointing terminal coding agents such as opencode, Codex CLI, and Claude Code at a model served on Alauda AI so source code, prompts, and infrastructure configuration never leave the cluster. Covers deploying and smoke-testing the endpoint, enabling tool calling on the runtime, configuring reasoning models and reasoning effort, and connecting each agent.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/agentic_mlops/index.mdx": {
"sha256": "fba031954c22e9b411efe9766f540714441a10baa0d6fc54b75747ef1c28d409",
"size": 130,
"description": "Section index for Agentic MLOps, linking the guides that connect coding agents to on-premise inference services and use them to drive day-to-day MLOps on the platform.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/agentic_mlops/mlops-with-coding-agents.mdx": {
"sha256": "1603b2c9667ddc28b9d516764ac88b4d6378e195cea21c1cb90087350dc6f32a",
"size": 20903,
"description": "Guide to using a coding agent wired to a self-hosted model for day-to-day MLOps on Alauda AI. Covers setting up the agent's working environment, managing InferenceServices and LLMInferenceServices, managing gateway authentication and rate limits, tuning service performance against service-level objectives with reproducible benchmarks, and planning fine-tuning with a reusable template.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/data_science_pipelines/index.mdx": {
"sha256": "74a71b9bcabad59fdcc8bd5c870ced1293364224756a17d88d05e7d2598ec3b5",
"size": 175,
"description": "Component landing page for the Data Science Pipelines Operator, linking its introduction and installation guide.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/data_science_pipelines/install.mdx": {
"sha256": "b3e03108e335e57eb64c768a6c963e67679a6b4836f9685c654d4c2fcad6f358",
"size": 4798,
"description": "Installs the Data Science Pipelines Operator as an OLM operator from the platform OperatorHub. Lists prerequisites including ACP v4.0 or later, amd64 or arm64 clusters, OLM, mutual exclusion with the shared `kfp-operator` install, and the Argo Workflow CRDs; covers uploading and installing the operator, the optional external endpoint provider, and verifying the CSV, controller pod, and CRDs.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/data_science_pipelines/intro.mdx": {
"sha256": "43f1d0583fa71d4f33b69a3a6d4f0a155f3fdaaef8db3acf322d27f9f0a7545b",
"size": 3021,
"description": "Introduction to the Data Science Pipelines Operator, a Kubernetes-native operator built on the OpenDataHub project that deploys and manages Kubeflow Pipelines v2 stacks. Each data-science project runs its own isolated pipeline runtime declared through a `DataSciencePipelinesApplication` custom resource. Covers what it deploys, key concepts, mutual exclusion with the shared Kubeflow Pipelines install, and when to use it.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/feast/index.mdx": {
"sha256": "256eb31f3ab8f11599ff5ad3d40e853ab193076ee9a235d31a6e8aae4eddd6fe",
"size": 114,
"description": "Component landing page for Alauda Build of Feast, linking its introduction, installation guide, and quickstart.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/feast/install.mdx": {
"sha256": "c896ec87bd887d56829633ba657f3e54fab71542831b80eb30b1a09c2362352b",
"size": 1453,
"description": "Walks through installing the Feast Operator on Alauda Container Platform: upload the feast-operator.ALL.xxxx.tgz package with violet push, install Alauda Build of Feast from Marketplace -> Operator Hub against the target cluster, then verify the controller pod in feast-operator-system and the featurestores.feast.dev CRD with kubectl. Notes that installation only provisions the controller and CRDs, and that Feast services come up after a FeatureStore custom resource is applied per the Quickstart.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/feast/intro.mdx": {
"sha256": "cc2de0e8b58e9e0869fd8b20fb43f122102c6c61d68afa88715f58a406798bd5",
"size": 5069,
"description": "Introduces Feast as an open-source feature store deployed on Kubernetes through the Feast Operator, where a FeatureStore CR manages the offline store, online store, registry, UI, and a generated client feature_store.yaml ConfigMap. Defines core concepts (Project via spec.feastProject, Entity, Data Source, Feature View, Feature Service, Registry, Materialization, Push Source, Permission), outlines the typical workflow from feast apply through materialization to client reads, and describes Operator responsibilities such as PVC provisioning, Git-based feature repo init, and Kubernetes Role creation for RoleBasedPolicy authorization.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/feast/quickstart.mdx": {
"sha256": "0b4599d688268264c5db3420b1009d96a2e8da7e1671e0780fbb024d67f83ae1",
"size": 21171,
"description": "End-to-end guide for configuring and deploying a FeatureStore custom resource after the Feast Operator is installed, covering the main spec fields (feastProject, feastProjectDir, services.offlineStore/onlineStore/registry/ui, authz, replicas) and runnable YAML for persistence patterns: PVC-backed DuckDB plus local file registry, Redis online store with SQL registry on PostgreSQL 16, PostgreSQL-only online plus registry, and registry files in S3/GCS. Also documents Secret layout per backend type (redis, postgres, sql keys), feature repository initialization via feast init/init template/Git, deploying with kubectl apply and watching status.phase, the feast-<name>-online/offline/registry/ui Service names and clientConfigMap, using the Feast CLI/Python SDK with feast apply, and Kubernetes-based authorization combining feast-reader/feast-writer roles, Feast Permission objects with RoleBasedPolicy, RoleBindings, ServiceAccount tokens, and SDK token configuration via authz_config.user_token or LOCAL_K8S_TOKEN.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/index.mdx": {
"sha256": "c7f7a5e7678b65e92a7c19acb77b91f0f1b24506af5e62f2b1f0f00b4a83df67",
"size": 196,
"description": "Section index for the components the Develop chapter relies on, gathering the introduction and installation guides for Kubeflow, Data Science Pipelines, MLflow, KubeRay, Spark Operator, Label Studio, and Feast.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/kubeflow/faq.mdx": {
"sha256": "5ee6c2a5aa2100f84c19d63fedd361e884ba5d162dd498c8fe905b6431970244",
"size": 7839,
"description": "Troubleshooting FAQ for Kubeflow on Alauda AI covering four scenarios: relabeling namespaces from PSA `restricted` to `baseline` to unblock notebooks and pipeline runs; overriding the `oidcAuthURL` in the `kfbase` `ModuleInfo` resource and restarting `oauth2-proxy` when login must use an alternative platform address; creating a `kfp-launcher` ConfigMap to point Kubeflow Pipelines runs at external S3/MinIO instead of the in-cluster `minio-service.kubeflow:9000`; adding custom GPU vendors (e.g. `your-custom.com/gpu`, Ascend) to `jupyter-web-app-config`; and fixing `CrashLoopBackOff`/probe timeouts on kube-ovn CNI by adding an `allow-kubelet-probes` NetworkPolicy that permits ingress from the kube-ovn join subnet CIDR (typically `100.64.0.0/16`).",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/kubeflow/index.mdx": {
"sha256": "e873a8ab1e9c470cebbbb8ae093d27c1ea3e2cebb57164d8c850908c44d92b01",
"size": 129,
"description": "Component landing page for Alauda support for Kubeflow, linking its introduction, installation guide, upgrade guide, and FAQ.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/kubeflow/install.mdx": {
"sha256": "71c4d999ae7a3a5fcaf0d299582562034147f652c407eaf7a6a064bbf07560e2",
"size": 14039,
"description": "Step-by-step deployment guide for the kfbase, model-registry-operator, kfp, kftraining (deprecated), and kubeflow-trainer cluster plugins on Alauda AI 2.0, including prerequisites like ASM v2, LWS, and Alauda Build of KServe. Covers configuring Dex redirection via Platform Access URLs, wiring oauth2-proxy through ASM extensionProviders (envoyExtAuthzHttp) for both ASM v1 and v2, uploading packages with violet, creating Kubeflow Profile resources to bind users to namespaces such as kubeflow-admin-cpaas-io, and installing the Model Registry operator with MySQL storage settings.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/kubeflow/intro.mdx": {
"sha256": "f77528840d487a30446c8ec7a47659d7a4612c39d17061a5ac7bf3f173c216ac",
"size": 1247,
"description": "Brief introduction positioning Alauda's Kubeflow integration as a Kubernetes-native ML platform combining Kubeflow Pipelines for workflow orchestration, Kubeflow Training for jobs, and Model Registry for versioning, and notes that namespaces must have Pod Security Admission set to privileged for Kubeflow components to function.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/kubeflow/upgrade.mdx": {
"sha256": "3887681a1981ca1c257b6a26de5074e08776dc1cbaa0e7c700e3fdc4ca95f663",
"size": 4501,
"description": "Captures manual post-upgrade actions for the kfbase plugin, including the switch from NodePort to gateway-based dashboard access for upgrades from v1.10.13 or earlier (requiring DNS or hosts updates pointing kubeflowDomain to the kubeflow-external-gateway IP), instructions for re-enabling NodePort by editing the kubeflow-istio-ingressgateway service, and the v1.10.10 requirement to set a default StorageClass for the pgStorageClass parameter when upgrading from v1.10.9 or earlier.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/kuberay/index.mdx": {
"sha256": "001545e34c0ea3f01479ef1f1b3c8fb466611e707c1c42b1a552f6068b2741f4",
"size": 131,
"description": "Component landing page for Alauda Build of KubeRay Operator, linking its introduction and installation guide.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/kuberay/install.mdx": {
"sha256": "9bd5a29202212d8674860b36793744dab8328b86d436860bb875b567f901e25b",
"size": 835,
"description": "Installation guide for the Alauda Build of KubeRay Operator cluster plugin on ACP v4.0 or later, covering downloading the package from the Customer Portal, uploading it with the violet CLI tool, deploying it from Administrator > Marketplace > Cluster Plugin to the target cluster, and verifying with kubectl get pods -n cpaas-system | grep kuberay-operator.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/kuberay/intro.mdx": {
"sha256": "f3597c64c4c18de3c5289789cdf7294b595bee46712fd4f3acab251b422c9a61",
"size": 2119,
"description": "Introduces the Alauda Build of KubeRay Operator as a Kubernetes-native operator built on the open-source KubeRay project for running Ray on Kubernetes. Describes the three core CRDs (RayCluster for lifecycle and autoscaling, RayJob for auto-provisioned job execution with cleanup, RayService for zero-downtime Ray Serve deployments), key features like heterogeneous compute, fault tolerance, and ecosystem integration with Kueue/Volcano/Prometheus, and use cases spanning distributed training, batch inference, hyperparameter tuning with Ray Tune, and LLM serving.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/label_studio/features.mdx": {
"sha256": "342fbbe1847a636fa29ae4b7a72b7f0592402ed008502d5896e7439079c48b9c",
"size": 1800,
"description": "Lists Label Studio's main feature areas: multi-user annotation with user management, collaborative labeling, task assignment, and quality control; multi-type data support spanning image (classification, object detection, semantic segmentation), text, audio, video, time-series, and multi-modal data; XML-based annotation configuration with template library and built-in tools; JSON/CSV data import/export with batch operations; and machine learning integration via ML backend, pre-annotation, REST API, and Python SDK.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/label_studio/index.mdx": {
"sha256": "e205dfebd9c73b25b0a78610086b5e03819ff5eb4a7f93bbc09ce3e87ad2ba62",
"size": 126,
"description": "Component landing page for Label Studio, linking its introduction, installation guide, feature reference, and quickstart.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/label_studio/install.mdx": {
"sha256": "f9540a0b9903dd1d7849b5bc35c1936add49d74b7f12769beaadea276fbc2b7e",
"size": 8925,
"description": "Step-by-step guide for deploying Label Studio to a Kubernetes cluster: push the `label-studio.ALL.xxxx.tgz` package with `violet push`, prepare a CSI/`PersistentVolume`-backed StorageClass and a PostgreSQL 13+ cluster (and optional standalone-mode Redis from Data Services), then install the `3rdparty/chart-label-studio` Catalog application. Covers custom values for persistence sizing, `pgConfig`/`redisConfig` with SSL secrets, Service type and Ingress with `LABEL_STUDIO_HOST`, OAuth2 Proxy with ACP Dex as OIDC provider (via an `OAuth2Client` CR), and disabling open registration with `LABEL_STUDIO_DISABLE_SIGNUP_WITHOUT_LINK`.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/label_studio/intro.mdx": {
"sha256": "0435addac0c74927f739b26a41ed3b71d2c7792e3af0ea4a68f04dcec2b8243d",
"size": 4482,
"description": "Introduces Label Studio as an open-source multi-type data labeling tool with a Django/Python REST backend, React frontend, PostgreSQL 13+ storage, and optional Redis cache. Explains the core concepts (Project, Labeling Interface, Data Manager, Annotations, Machine Learning Integration), supported data types (image, audio, text, time series, video), cloud storage import from AWS S3 and Google Cloud Storage, and capabilities like pre-annotation, online/active learning, and model comparison.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/label_studio/quickstart.mdx": {
"sha256": "838cc8b6d976dd9b98a48ade6263688bc3d09d9f10684a0fd67a67c912b2f881",
"size": 4616,
"description": "Walks users through integrating Label Studio with S3-compatible object storage (Amazon S3, Ceph RGW) for data import and annotation export. Covers configuring Source/Target Cloud Storage under `Settings > Cloud Storage`, fields like Bucket Name, S3 Endpoint, Access Key ID/Secret, Bucket Prefix, File Filter Regex, pre-signed URL expiration, and SSE KMS Key ID; syncing buckets, exporting JSON annotations, and using the Label Studio SDK converter to transform them into COCO, Pascal VOC, YOLO, or CSV for downstream model training pipelines.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/components/mlflow/index.mdx": {
"sha256": "bb9fa7fa6495975d28e81a475cde3bc55d2bc201e576b435fd4293d88ba7e8b4",
"size": 102,
"description": "Component landing page for MLflow, linking its introduction and installation guide.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/mlflow/install.mdx": {
"sha256": "928177e78964f3df372a83605fbb95292e4ca4befc31171bba1b2d25904baddf",
"size": 10108,
"description": "Installs MLflow as an OLM operator from the platform OperatorHub and then creates one `MLflow` custom resource that reconciles the tracking-server stack. Lists prerequisites including Alauda AI, OLM, and a PostgreSQL 12 or later database; covers both the kubectl and Alauda Console UI methods, verification of the operand, Deployment, and pod, and high availability and storage options.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/mlflow/intro.mdx": {
"sha256": "7179ff9d2640d637d9d837a8bb3f58281f019bbafb6a0ab68097939f55229e74",
"size": 3717,
"description": "Introduction to the MLflow Operator, which deploys and manages a multi-tenant MLflow Tracking Server integrated with platform single sign-on and Kubernetes RBAC so each team sees only its own runs, experiments, and registered models. Covers what it deploys, key concepts, the multi-tenancy model, and when to use it.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/spark_operator/index.mdx": {
"sha256": "77906f3276b9a728419bf6f1b3f01b8faee0857ca3155d3ce5ec1d13666db2de",
"size": 150,
"description": "Component landing page for Alauda Build of Spark Operator, linking its introduction and installation guide.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/spark_operator/install.mdx": {
"sha256": "8f256a4f15242432ccc310ff4b4bc98fe33617d4b737c25cb37b2dd2f1477edd",
"size": 2571,
"description": "Installs Alauda Build of Spark Operator as an OLM operator from the platform OperatorHub. Lists prerequisites including ACP v4.0 or later, amd64 or arm64 clusters, and OLM; covers uploading and installing the operator and verifying that the CSV reports Succeeded, the controller and webhook pods are Running, and the CRDs are registered.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/components/spark_operator/intro.mdx": {
"sha256": "d25ae008055fdba6de91d6b957dc7744c2d4ecaddd0d5030048ce3bf8e652536",
"size": 2290,
"description": "Introduction to Alauda Build of Spark Operator, a Kubernetes-native operator built on the Kubeflow Spark Operator that submits, schedules, monitors, and cleans up Apache Spark workloads declaratively through `sparkoperator.k8s.io` CRDs, without a spark-submit client or a standalone Spark cluster. Covers key features and use cases.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/connections/index.mdx": {
"sha256": "9384ddad43946a0556aa4db6551e7c8368cec81e827b6c9f7a02da604b414f38",
"size": 48,
"description": "Top-level landing page for the Connections section in the Alauda AI documentation, rendered via the Overview component to surface its child pages.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/connections/intro.mdx": {
"sha256": "3f9bc6cceb8ecdfa88ccb687cfa5bef073b011db2221b81e49f97de309511d46",
"size": 1622,
"description": "Introduces Alauda AI Connections, project-scoped reusable access settings for external model sources and data services that are stored as Kubernetes Secrets in the project namespace, while Connection Types (ConfigMaps in kube-public) define the form fields users see. Covers the three supported kinds (URI, OCI-compliant registry, S3-compatible object storage) and how each is consumed by the model deployment form (URI passthrough, image pull secret plus repository:tag path, or bucket plus object path).",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/connections/using_connections.mdx": {
"sha256": "2545cd59c0187a07b6cb951469416e72b799ac645a52a2b0d48e693d9583b27f",
"size": 6926,
"description": "Task guide for the Connections feature: how to create, edit, and delete project-level connections (URI, OCI registry, S3-compatible storage) under a project's **Connections** tab, manage cluster-scoped connection types in the `kube-public` namespace, and reference a connection during InferenceService creation via the `aml-model-source-connection` annotation. Includes built-in field-set details (`AWS_ACCESS_KEY_ID`, `OCI_HOST`, `.dockerconfigjson` upload), runtime behavior (imagePullSecret for OCI, ServiceAccount for S3), and YAML examples for connection secrets and `ct-*` ConfigMap templates.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/distributed_workloads/codeflare-sdk-tutorial.mdx": {
"sha256": "bc8df755aa00467b22035ae19f0ae097c02a168420f3601524c6572abf8979cc",
"size": 2769,
"description": "End-to-end tutorial for using the CodeFlare SDK inside a Standard Data Science workbench in Alauda AI to spin up a RayCluster via ClusterConfiguration, verify it with cluster.status(), submit a RayJob with parameters such as job_name, cluster_name, and entrypoint, monitor it with rayjob.status(), and tear down with cluster.down(). References a downloadable demo Jupyter notebook and reminds users to update the image parameter for their hardware and registry.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-05-16T10:39:46Z"
},
"docs/en/develop/distributed_workloads/index.mdx": {
"sha256": "d7e96db09e4526c47a0d9a2b01317c3980bb9d819c73ca8d70a6afb366709a2f",
"size": 133,
"description": "Section index for distributed workloads, linking the guides that run distributed Ray and Spark workloads from a workbench or from the command line.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/distributed_workloads/run_spark_application.mdx": {
"sha256": "2e207dde1840cd4c1953eb7033bbd5e9e560617013fd2fbce1e48b69ad707eee",
"size": 7305,
"description": "Guide to submitting an Apache Spark job with a `SparkApplication` custom resource using the built-in Spark Pi example. Covers creating a namespace and Spark RBAC, submitting the application, monitoring high-level status and driver and executor pods, verifying the result, cleanup, scheduling a recurring job, and common `SparkApplication` fields.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/experiment_tracking/agent-tracing.mdx": {
"sha256": "cac925d39e92c49f8372bed9f12f7c55e360098c9f5e5d2ec088536f3e853344",
"size": 8265,
"description": "Guide to recording AI agent traces with MLflow Tracing, capturing model requests and responses, chain and tool calls, retrieval steps, latency, token usage, and errors under the same workspace authentication and Kubernetes RBAC as runs and models. Covers tracing LangChain agents and OGX applications, exporting OGX OpenTelemetry traces, viewing traces, and troubleshooting.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/experiment_tracking/index.mdx": {
"sha256": "72f614607150ce4dcccd102bd32d856261f2d4700e192f65e51247f75c77858d",
"size": 147,
"description": "Section index for experiment tracking, linking the MLflow Python SDK authentication guide, Kubeflow Pipelines integration, and AI agent tracing.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/experiment_tracking/mlflow-python-sdk.mdx": {
"sha256": "ece2cffc9edf90d6eac9dfeecc5354369867922c561bbb452c767d1181dcad8d",
"size": 16025,
"description": "Guide to driving the stock MLflow Python SDK through the platform OAuth proxy browser-free, using the OAuth2 authorization code flow with PKCE scripted against the platform login. Covers how authentication works, verifying the token method as an administrator, obtaining a token from the command line with a Python helper or curl and openssl, connecting the SDK, selecting a workspace, registering models, and a session-cookie alternative.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/experiment_tracking/pipelines-mlflow-integration.mdx": {
"sha256": "8ebb32ce06b04971fbed7e8e5dbce34a591ac9515d44cc485e85b68d6e5d1b0d",
"size": 9883,
"description": "Guide to logging parameters, metrics, and models from Kubeflow Pipelines components to MLflow on Alauda AI with the MLflow Python client, authenticating each component with a user identity token so runs are recorded under that user. Covers a complete training pipeline example, uploading and running it from the KFP UI or SDK, using MLflow in Trainer v2 pipelines, and best practices.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/index.mdx": {
"sha256": "7fbb7116742b0dc9032dcf4ca143859513f72221a314b5a4f484f63ebfd9b02a",
"size": 689,
"description": "Chapter landing page for data scientists and application developers, covering workbenches and Kubeflow notebooks, connections, pipeline orchestration, the model registry, experiment tracking, and distributed computing, with the chapter's components listed under Components.",
"generation_method": "ai_agent_reading",
"updated_at": "2026-08-04T00:00:00Z"
},
"docs/en/develop/kubeflow_notebooks/index.mdx": {
"sha256": "ae5fe0a9f4056a83a0b7bbee38d4cdafe9c820394f711de191811e659d11e65a",
"size": 484,
"description": "Section index for Kubeflow Notebooks, covering notebook servers, volumes, and TensorBoards from the Kubeflow central dashboard. Positions Kubeflow Notebooks as an alternative to Workbench for the lightweight upstream setup, and notes that these pages require the Kubeflow operators.",
"generation_method": "ai_agent_reading",