Skip to content
ai-supply.store
ExplorarCategoriasClassificaçõesComunidadeAgent APIFAQ
EntrarCadastre-se grátis
catalog / DevOps & Infra / SGLang
⇄ConnectorDevOps & InfraFree

SGLang

Fast LLM serving framework with RadixAttention KV cache reuse and structured output (JSON/regex) natively.

@ai-supply
Instalações226k
⟳ upstream v0.5.17 · updated 12d ago
↗ Repositório fonte
← More DevOps & InfraDevOps & Infra leaderboard →How we grade security →Source ↗
✓ Grade A · 100/100 · SafeSecurity assessment
✓No compromise signals85capabilities surfaced5of 20 OWASP controls clear
Broad capability surfacePotentially unbounded loopBroad capability surfacePrompt-injection phrasing
scanned 11d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

SGLang

SGLang (Structured Generation Language) is a fast serving framework for large language and vision-language models. Its core innovation is RadixAttention — a prefix tree-based KV cache that enables automatic reuse across requests — dramatically cutting latency for workloads with shared prefixes (system prompts, few-shot examples, RAG contexts).

Key Features

  • RadixAttention: automatic KV cache reuse via radix tree, 5× throughput on shared-prefix workloads
  • Native structured output: JSON schema, regex, EBNF grammar — zero overhead
  • Multi-modal: vision-language models (LLaVA, InternVL, Qwen-VL)
  • Speculative decoding and tensor parallelism
  • OpenAI-compatible API with streaming
  • Supports Llama, Mistral, Qwen, DeepSeek, Gemma, and more

Quick Start

pip install sglang[all]

# Launch server
python -m sglang.launch_server \
  --model-path meta-llama/Llama-3.1-8B-Instruct \
  --port 30000

# Query with structured output
import sglang as sgl

@sgl.function
def classify(s, text):
    s += sgl.user(f"Classify: {text}")
    s += sgl.assistant(sgl.gen("label", choices=["positive", "negative"]))

Install via ai-supply

npx ai-supply add sglang-structured-generation

Curated mirror of the open-source SGLang (Apache-2.0). Get it from the source.

Rating rank
#1
of 23 in DevOps & Infra
Install rank
#6
of 23 in DevOps & Infra
Security score
100/100 · A
safe
Security rank
#1
of 23 in DevOps & Infra
Installs
226k
cat avg 212k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the DevOps & Infra leaderboard →
✓ Security: Safe · 100100/100 · grade Ascanned 11d ago
✓ no compromise signals85 risk-surface · 10/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

What this capability can do · med confidence (static)
⚑ filesystem⚑ shell⚑ network⚑ secrets
egress → ui.perfetto.dev, gist.github.com, {args.host}, astral.sh, sh.rustup.rs, docs.sglang.io, slack.sglang.io, api.github.com +15
auth: bearerui.perfetto.devgithub.comgist.github.comdocs.sglang.ioslack.sglang.ioapi.github.comhub.docker.comhf-mirror.comscope: name:scope: scopes_by_thread.getscope: timeline.appendscope: active_scopes.removescope: choose_best_scopescope: stats.scope_counterscope: source.best_scopescope: sglang.launch_server

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM01Prompt Injectionhigh
Adversarial instructions embedded in an artifact that hijack a downstream LLM.
•Prompt-injection phrasing — instruction-subversion language detected · sgl-project-sglang-1ebd6fa/docker/compose.yaml (CWE-77)risk surface
⚠LLM05Improper Output Handlinghigh
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — dynamic code execution · sgl-project-sglang-1ebd6fa/.claude/skills/cookbook-add-model/references/authoring-reference.md (CWE-95)expected
•Suspicious code patterns — OS command execution · sgl-project-sglang-1ebd6fa/.claude/skills/env-var-conventions/SKILL.md (CWE-78)expected
•Suspicious code patterns — OS command execution; dynamic code execution · sgl-project-sglang-1ebd6fa/.claude/skills/mechanical-refactor-verify/scripts/mechanical_refactor_reproduction_utils.py (CWE-78)expected
•Suspicious code patterns — destructive rm -rf / · sgl-project-sglang-1ebd6fa/.claude/skills/mechanical-refactor-verify/scripts/tests/reproduction_utils/test_infra_helpers.py (CWE-78)expected
•Suspicious code patterns — pickle deserialization · sgl-project-sglang-1ebd6fa/.claude/skills/sglang-prod-incident-triage/scripts/incident_artifact_tool.py (CWE-502)expected
•Suspicious code patterns — destructive rm -rf /; pipe-to-shell install · sgl-project-sglang-1ebd6fa/.devcontainer/Dockerfile (CWE-78)expected
•Suspicious code patterns — dynamic code execution; pickle deserialization · sgl-project-sglang-1ebd6fa/benchmark/hicache/data_processing.py (CWE-95)expected
•Suspicious code patterns — pipe-to-shell install · sgl-project-sglang-1ebd6fa/docker/arm64.Dockerfile (CWE-494)expected
•Suspicious code patterns — world-writable chmod 777 · sgl-project-sglang-1ebd6fa/docker/sagemaker.Dockerfile (CWE-732)expected
⚠LLM06Excessive Agencyhigh
Over-broad tool/permission surface or unrestricted egress.
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · sgl-project-sglang-1ebd6fa/.claude/skills/clean-startup-log/SKILL.md (CWE-272)risk surface
•Egress to a private/loopback host — 127.0.0.1 · sgl-project-sglang-1ebd6fa/.claude/skills/clean-startup-log/SKILL.md (CWE-918)expected
•External endpoints declared — 1 distinct host(s) · sgl-project-sglang-1ebd6fa/.claude/skills/clean-startup-log/SKILL.mdexpected
•External endpoints declared — 2 distinct host(s) · sgl-project-sglang-1ebd6fa/.claude/skills/cookbook-add-model/templates/page.mdx.tmplexpected
•External endpoints declared — 3 distinct host(s) · sgl-project-sglang-1ebd6fa/.devcontainer/Dockerfileexpected
•Egress to a private/loopback host — 0.0.0.127, 0.0.0.0 · sgl-project-sglang-1ebd6fa/.github/linters/lychee-ci.toml (CWE-918)expected
•External endpoints declared — 9 distinct host(s) · sgl-project-sglang-1ebd6fa/.github/linters/lychee-ci.tomlexpected
•External endpoints declared — 4 distinct host(s) · sgl-project-sglang-1ebd6fa/.github/workflows/_npu-pr-test-stage.ymlexpected
•External endpoints declared — 5 distinct host(s) · sgl-project-sglang-1ebd6fa/.github/workflows/_npu-single-node-test-stage.ymlexpected
•Broad capability surface — 4 high-impact capability categories referenced — verify least-privilege · sgl-project-sglang-1ebd6fa/.github/workflows/diffusion-ci-gt-gen.yml (CWE-272)risk surface
•External endpoints declared — 16 distinct host(s) · sgl-project-sglang-1ebd6fa/README.mdexpected
•Egress to a private/loopback host — 127.0.0.1, 10.0.0.1 · sgl-project-sglang-1ebd6fa/benchmark/deepseek_v3/README.md (CWE-918)expected
•External endpoints declared — 8 distinct host(s) · sgl-project-sglang-1ebd6fa/benchmark/deepseek_v3/README.mdexpected
•External endpoints declared — 10 distinct host(s) · sgl-project-sglang-1ebd6fa/docker/Dockerfileexpected
•External endpoints declared — 11 distinct host(s) · sgl-project-sglang-1ebd6fa/docker/rocm.Dockerfileexpected
•External endpoints declared — 6 distinct host(s) · sgl-project-sglang-1ebd6fa/docs/README.mdexpected
•External endpoints declared — 7 distinct host(s) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/GLM/GLM-4.5V.mdxexpected
•Egress to a private/loopback host — 0.0.0.0 · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/Llama/Llama3.1.mdx (CWE-918)expected
•External endpoints declared — 13 distinct host(s) · sgl-project-sglang-1ebd6fa/docs/docs/advanced_features/sgl_model_gateway.mdxexpected
•Egress to a private/loopback host — 10.0.0.1, 10.0.0.2 · sgl-project-sglang-1ebd6fa/experimental/sgl-router/README.md (CWE-918)expected
•Egress to a private/loopback host — 10.0.0.1 · sgl-project-sglang-1ebd6fa/experimental/sgl-router/src/config/mod.rs (CWE-918)expected
•Egress to a private/loopback host — 10.0.0.1, [::1], 127.0.0.1 · sgl-project-sglang-1ebd6fa/experimental/sgl-router/src/policies/kv_events/subscriber.rs (CWE-918)expected
•Egress to a private/loopback host — 10.0.0.42 · sgl-project-sglang-1ebd6fa/experimental/sgl-router/src/server/error.rs (CWE-918)expected
⚠LLM07System Prompt Leakagemedium
Secrets, internal hosts or proprietary logic exposed in shipped prompts.
•Internal host / private infrastructure reference — shipped content references a private IP range or internal-only host · sgl-project-sglang-1ebd6fa/.github/workflows/_npu-pr-test-stage.yml (CWE-200)expected
•Low-confidence secret match — 1 possible: generic-api-key · sgl-project-sglang-1ebd6fa/python/sglang/kernels/ops/attention/dsv4/metadata_kernel.py (CWE-798)risk surface
•Low-confidence secret match — 1 possible: generic-api-key · sgl-project-sglang-1ebd6fa/python/sglang/kernels/ops/moe/ep_moe_kernels.py (CWE-798)risk surface
⚠LLM10Unbounded Consumptionmedium
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
•Potentially unbounded loop — an infinite loop (while True / while(1) / for(;;)) may cause runaway consumption · sgl-project-sglang-1ebd6fa/.claude/skills/mechanical-refactor-verify/scripts/mechanical_refactor_reproduction_utils.py (CWE-835)risk surface
⚠LLM02Sensitive Information Disclosurelow
Secrets, credentials or PII shipped inside the artifact.
•Low-confidence secret match — 1 possible: generic-api-key · sgl-project-sglang-1ebd6fa/python/sglang/kernels/ops/attention/dsv4/metadata_kernel.py (CWE-798)risk surface
•Low-confidence secret match — 1 possible: generic-api-key · sgl-project-sglang-1ebd6fa/python/sglang/kernels/ops/moe/ep_moe_kernels.py (CWE-798)risk surface
⚠LLM03Supply Chainlow
Vulnerable/compromised dependencies, models or archives in the artifact.
•Dependency manifest — 2 pip requirements declared · sgl-project-sglang-1ebd6fa/experimental/sgl-router/tests/e2e/k8s_integration/requirements.txtrisk surface
•Dependency manifest — 3 pip requirements declared · sgl-project-sglang-1ebd6fa/experimental/sgl-router/tests/e2e/requirements.txtrisk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM08Vector and Embedding WeaknessesPassed
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
OWASP Machine Learning Security Top 10
⚠ML02Data Poisoninghigh
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
•Prompt-injection phrasing — instruction-subversion language detected · sgl-project-sglang-1ebd6fa/docker/compose.yaml (CWE-77)risk surface
⚠ML09Output Integrityhigh
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — dynamic code execution · sgl-project-sglang-1ebd6fa/.claude/skills/cookbook-add-model/references/authoring-reference.md (CWE-95)expected
•Suspicious code patterns — OS command execution · sgl-project-sglang-1ebd6fa/.claude/skills/env-var-conventions/SKILL.md (CWE-78)expected
•Suspicious code patterns — OS command execution; dynamic code execution · sgl-project-sglang-1ebd6fa/.claude/skills/mechanical-refactor-verify/scripts/mechanical_refactor_reproduction_utils.py (CWE-78)expected
•Suspicious code patterns — destructive rm -rf / · sgl-project-sglang-1ebd6fa/.claude/skills/mechanical-refactor-verify/scripts/tests/reproduction_utils/test_infra_helpers.py (CWE-78)expected
•Suspicious code patterns — pickle deserialization · sgl-project-sglang-1ebd6fa/.claude/skills/sglang-prod-incident-triage/scripts/incident_artifact_tool.py (CWE-502)expected
•Suspicious code patterns — destructive rm -rf /; pipe-to-shell install · sgl-project-sglang-1ebd6fa/.devcontainer/Dockerfile (CWE-78)expected
•Suspicious code patterns — dynamic code execution; pickle deserialization · sgl-project-sglang-1ebd6fa/benchmark/hicache/data_processing.py (CWE-95)expected
•Suspicious code patterns — pipe-to-shell install · sgl-project-sglang-1ebd6fa/docker/arm64.Dockerfile (CWE-494)expected
•Suspicious code patterns — world-writable chmod 777 · sgl-project-sglang-1ebd6fa/docker/sagemaker.Dockerfile (CWE-732)expected
⚠ML06AI Supply Chainlow
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Dependency manifest — 2 pip requirements declared · sgl-project-sglang-1ebd6fa/experimental/sgl-router/tests/e2e/k8s_integration/requirements.txtrisk surface
•Dependency manifest — 3 pip requirements declared · sgl-project-sglang-1ebd6fa/experimental/sgl-router/tests/e2e/requirements.txtrisk surface
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (84) · hygiene / uncategorized
•Suspicious network references — raw IP URL (1 URLs) · sgl-project-sglang-1ebd6fa/.claude/skills/clean-startup-log/SKILL.mdexpected
•Unrecognized file type — '.tmpl' is not on the allowlist · sgl-project-sglang-1ebd6fa/.claude/skills/cookbook-add-model/templates/benchmarks.jsx.tmplrisk surface
•Suspicious network references — raw IP URL (3 URLs) · sgl-project-sglang-1ebd6fa/.claude/skills/generate-profile/SKILL.mdexpected
•Suspicious network references — raw IP URL (10 URLs) · sgl-project-sglang-1ebd6fa/.claude/skills/llm-torch-profiler-analysis/SKILL.mdexpected
•Suspicious network references — raw IP URL (4 URLs) · sgl-project-sglang-1ebd6fa/.claude/skills/llm-torch-profiler-analysis/scripts/run_sglang_torch_profile_host.shexpected
•Unrecognized file type — '.codespellrc' is not on the allowlist · sgl-project-sglang-1ebd6fa/.codespellrcrisk surface
•Unrecognized file type — '.coveragerc' is not on the allowlist · sgl-project-sglang-1ebd6fa/.coveragercrisk surface
•Unrecognized file type — '.?' is not on the allowlist · sgl-project-sglang-1ebd6fa/.devcontainer/Dockerfilerisk surface
•Unrecognized file type — '.dockerignore' is not on the allowlist · sgl-project-sglang-1ebd6fa/.dockerignorerisk surface
•Suspicious network references — suspicious TLD (7 URLs) · sgl-project-sglang-1ebd6fa/.github/workflows/_npu-pr-test-stage.ymlexpected
•Suspicious network references — suspicious TLD (9 URLs) · sgl-project-sglang-1ebd6fa/.github/workflows/_npu-single-node-test-stage.ymlexpected
•Suspicious network references — suspicious TLD (14 URLs) · sgl-project-sglang-1ebd6fa/.github/workflows/diffusion-ci-gt-gen-npu.ymlexpected
•Suspicious network references — suspicious TLD (28 URLs) · sgl-project-sglang-1ebd6fa/.github/workflows/full-test-npu.ymlexpected
•Suspicious network references — suspicious TLD (1 URLs) · sgl-project-sglang-1ebd6fa/.github/workflows/nightly-release-gateway.ymlexpected
•Suspicious network references — suspicious TLD (4 URLs) · sgl-project-sglang-1ebd6fa/.github/workflows/nightly-test-npu-e2e-multi-node.ymlexpected
•Unrecognized file type — '.gitignore' is not on the allowlist · sgl-project-sglang-1ebd6fa/.gitignorerisk surface
•Unrecognized file type — '.cfg' is not on the allowlist · sgl-project-sglang-1ebd6fa/.isort.cfgrisk surface
•Unrecognized file type — '.patch' is not on the allowlist · sgl-project-sglang-1ebd6fa/3rdparty/amd/profiling/rpd.patchrisk surface
•Suspicious network references — raw IP URL (29 URLs) · sgl-project-sglang-1ebd6fa/benchmark/deepseek_v3/README.mdexpected
•Suspicious network references — raw IP URL (5 URLs) · sgl-project-sglang-1ebd6fa/benchmark/dspy/bench_dspy_intro.pyexpected
•Suspicious network references — suspicious TLD (6 URLs) · sgl-project-sglang-1ebd6fa/benchmark/hicache/download.shexpected
•Unrecognized file type — '.jsonl' is not on the allowlist · sgl-project-sglang-1ebd6fa/benchmark/llava_bench/questions.jsonlrisk surface
•Suspicious network references — raw IP URL (2 URLs) · sgl-project-sglang-1ebd6fa/benchmark/mmmu/bench_sglang.pyexpected
•Suspicious network references — suspicious TLD (34 URLs) · sgl-project-sglang-1ebd6fa/docker/Dockerfileexpected
•Unrecognized file type — '.dockerfile' is not on the allowlist · sgl-project-sglang-1ebd6fa/docker/arm64.Dockerfilerisk surface
•Unrecognized file type — '.zshrc' is not on the allowlist · sgl-project-sglang-1ebd6fa/docker/configs/.zshrcrisk surface
•Unrecognized file type — '.gitconfig' is not on the allowlist · sgl-project-sglang-1ebd6fa/docker/configs/opt/.gitconfigrisk surface
•Unrecognized file type — '.conf' is not on the allowlist · sgl-project-sglang-1ebd6fa/docker/configs/opt/.tmux.confrisk surface
•Unrecognized file type — '.vimrc' is not on the allowlist · sgl-project-sglang-1ebd6fa/docker/configs/opt/.vimrcrisk surface
•Suspicious network references — suspicious TLD (5 URLs) · sgl-project-sglang-1ebd6fa/docker/kimi_k3/kimi_k3_cu13.Dockerfileexpected
•Unrecognized file type — '.mintignore' is not on the allowlist · sgl-project-sglang-1ebd6fa/docs/.mintignorerisk surface
•Unrecognized file type — '.mdx' is not on the allowlist · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/Baidu/Unlimited-OCR.mdxrisk surface
•Suspicious network references — raw IP URL (13 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/DeepSeek/DeepSeek-R1.mdxexpected
•Suspicious network references — raw IP URL (20 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/DeepSeek/DeepSeek-V3.mdxexpected
•Suspicious network references — suspicious TLD (17 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/DeepSeek/DeepSeek-V4.mdxexpected
•Suspicious network references — raw IP URL (7 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/GLM/GLM-4.5.mdxexpected
•Suspicious network references — raw IP URL (11 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/GLM/GLM-4.5V.mdxexpected
•Suspicious network references — raw IP URL (9 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/GLM/GLM-4.7.mdxexpected
•Suspicious network references — raw IP URL (6 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/Llama/Llama3.1.mdxexpected
•Suspicious network references — suspicious TLD (8 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/Moonshotai/Kimi-K3.mdxexpected
•Suspicious network references — raw IP URL (14 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/Qwen/Qwen3-VL.mdxexpected
•Suspicious network references — raw IP URL (17 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/autoregressive/Xiaomi/MiMo-V2.5.mdxexpected
•Suspicious network references — raw IP URL (8 URLs) · sgl-project-sglang-1ebd6fa/docs/cookbook/diffusion/SANA-WM/SANA-WM.mdxexpected
•Suspicious network references — raw IP URL (12 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/advanced_features/epd_disaggregation.mdxexpected
•Suspicious network references — raw IP URL (16 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/advanced_features/lora.mdxexpected
•Suspicious network references — suspicious TLD (41 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/advanced_features/quantization.mdxexpected
•Suspicious network references — raw IP URL (49 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/advanced_features/sgl_model_gateway.mdxexpected
•Suspicious network references — raw IP URL (23 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/advanced_features/speculative_decoding.mdxexpected
•Suspicious network references — raw IP URL (19 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/advanced_features/structured_outputs.mdxexpected
•Suspicious network references — raw IP URL (27 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/basic_usage/native_api.mdxexpected
•Suspicious network references — raw IP URL (18 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/basic_usage/sampling_params.mdxexpected
•Suspicious network references — raw IP URL (28 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/developer_guide/benchmark_and_profiling.mdxexpected
•Suspicious network references — suspicious TLD (27 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/ascend-npus/development/contribution_guide.mdxexpected
•Suspicious network references — suspicious TLD (19 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/ascend-npus/evaluation/accuracy_evaluation.mdxexpected
•Suspicious network references — raw IP URL, suspicious TLD (32 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/ascend-npus/evaluation/performance_testing.mdxexpected
•Suspicious network references — raw IP URL, suspicious TLD (27 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/ascend-npus/getting-started/installation.mdxexpected
•Suspicious network references — raw IP URL, suspicious TLD (5 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/ascend-npus/getting-started/quick_start.mdxexpected
•Suspicious network references — suspicious TLD (3 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/ascend-npus/mindspore_backend.mdxexpected
•Suspicious network references — suspicious TLD (2 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/ascend-npus/model-deployment/tutorials/deepseek_v3_2.mdxexpected
•Suspicious network references — suspicious TLD (23 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/ascend-npus/optimization/quantization.mdxexpected
•Suspicious network references — raw IP URL (35 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/tpu.mdxexpected
•Suspicious network references — raw IP URL (21 URLs) · sgl-project-sglang-1ebd6fa/docs/docs/hardware-platforms/xpu.mdxexpected
•Unrecognized file type — '.mjs' is not on the allowlist · sgl-project-sglang-1ebd6fa/docs/scripts/check_cookbook_configs.mjsrisk surface
•Unrecognized file type — '.jinja' is not on the allowlist · sgl-project-sglang-1ebd6fa/examples/chat_template/qwen3_reranker.jinjarisk surface
•Unrecognized file type — '.pbtxt' is not on the allowlist · sgl-project-sglang-1ebd6fa/examples/frontend_language/usage/triton/models/character_generation/config.pbtxtrisk surface
•Suspicious network references — raw IP URL (31 URLs) · sgl-project-sglang-1ebd6fa/experimental/sgl-router/src/config/cli.rsexpected
•Suspicious network references — raw IP URL (34 URLs) · sgl-project-sglang-1ebd6fa/experimental/sgl-router/src/policies/kv_events/subscriber.rsexpected
•Unrecognized file type — '.fake_worker' is not on the allowlist · sgl-project-sglang-1ebd6fa/experimental/sgl-router/tests/e2e/k8s_integration/Dockerfile.fake_workerrisk surface
•Unrecognized file type — '.router' is not on the allowlist · sgl-project-sglang-1ebd6fa/experimental/sgl-router/tests/e2e/k8s_integration/Dockerfile.routerrisk surface
•Unrecognized file type — '.proto' is not on the allowlist · sgl-project-sglang-1ebd6fa/proto/sglang/runtime/v1/sglang.protorisk surface
•Unrecognized file type — '.in' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/MANIFEST.inrisk surface
•Unrecognized file type — '.clang-format' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/.clang-formatrisk surface
•Unrecognized file type — '.cmake' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/cmake/flashmla.cmakerisk surface
•Unrecognized file type — '.cu' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/allreduce/custom_all_reduce.curisk surface
•Unrecognized file type — '.cuh' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/allreduce/custom_all_reduce.cuhrisk surface
•Unrecognized file type — '.hip' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/allreduce/custom_all_reduce.hiprisk surface
•Unrecognized file type — '.h' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/allreduce/quick_all_reduce.hrisk surface
•Unrecognized file type — '.hpp' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/attention/cutlass_sm100_mla/device/sm100_mla.hpprisk surface
•Unrecognized file type — '.cc' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/common_extension.ccrisk surface
•Unrecognized file type — '.cpp' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/cpu/aarch64/gemm_int8.cpprisk surface
•Unrecognized file type — '.inl' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_mixed_input.inlrisk surface
•Unrecognized file type — '.mu' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/elementwise/fused_add_rms_norm_kernel.murisk surface
•Unrecognized file type — '.metal' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/metal/rope_pool_fused.metalrisk surface
•Unrecognized file type — '.muh' is not on the allowlist · sgl-project-sglang-1ebd6fa/python/sglang/kernels/aot/csrc/musa/common.muhrisk surface
✔ verified source · pinned sgl-project-sglang-1ebd6fa · changed since last scan · +egress docs.astral.sh
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/sglang-structured-generation/check). Click a policy:

Consume SGLang programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/sglang-structured-generation

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/sglang-structured-generation/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add sglang-structured-generation

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/sglang-structured-generation/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "sglang-structured-generation" })
OpenAPI spec →
vlatest
✓ Security: Safe · 1002mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

Recursos de IA gratuitos e com segurança verificada — skills, MCPs, plugins, agents, datasets e muito mais, cada um com nota e acompanhamento de atualização, feitos tanto para pessoas quanto para agents.

api · v3.1status · all green
Contato
support@ai-supply.storesecurity@ai-supply.store
Catálogo
  • Explorar
  • Categorias
  • Classificações
  • Benchmarks
  • Segurança
  • Scan a repo
Comunidade
  • Comunidade
  • FAQ
Para agentes
  • Início rápido (60s)
  • Autorizar um agente
  • Agent API
  • Especificação OpenAPI
Para desenvolvedores
  • Publicar
  • Painel
Conta
  • Criar conta
  • Entrar
  • Configurações
Legal
  • Termos
  • Acordo de editor
  • Uso aceitável
  • Privacidade