Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions website/docs/reference/heimdall/plugins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,10 @@ Uniformly selects a candidate at random, ignoring scores entirely.
### `weighted-random-picker`

Weighted random selection using scores as weights.

## Others

### `saturation-gate`

Pre-dispatch admission gate: refuses a request when every endpoint in the role pool it would be scheduled onto is saturated.
Comment on lines +68 to +72

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

admission.rsgate/admission.rs 같은 하위 디렉토리로 옮기면 카테고리가 gate → 라벨 Gates가 됩니다.

{/* AUTO-GENERATED:aigateway-plugins END */}
7 changes: 0 additions & 7 deletions website/docs/reference/odin/api-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ An `InferenceService` describes a model deployment — the inference engine, the
| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `framework` | string | no | Framework specifies the inference engine (e.g. vllm, sglang). |
| `inferencePoolRefs` | [array](#inferenceservice-inferencepoolrefs) | no | InferencePoolRefs is a list of references to InferencePools. |
| `model` | [object](#inferenceservice-model) | no | Model identifies the model to serve. |
| `parallelism` | [object](#inferenceservice-parallelism) | no | Parallelism defines the parallelism parameters for distributed inference. |
| `replicas` | integer | no | Number of replicas for Deployments or LeaderWorkerSets. |
Expand All @@ -29,12 +28,6 @@ An `InferenceService` describes a model deployment — the inference engine, the
| `templateRefs` | [array](#inferenceservice-templaterefs) | no | TemplateRefs is a list of references to InferenceServiceTemplates. |
| `workerTemplate` | [object](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.32/#podtemplatespec-v1-core) | no | WorkerTemplate describes the pod template for LeaderWorkerSet workers. |

### `inferencePoolRefs` {#inferenceservice-inferencepoolrefs}

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `name` | string | no | Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |

### `model` {#inferenceservice-model}

| Field | Type | Required | Description |
Expand Down
Loading