Skip to main content

llm-integration

Add or modify integration-api LLM providers with caller factory wiring, unified provider routing, streaming behavior, and metric/audit compatibility.

跳到安装

来源信息

仓库
rapidaai/voice-ai
最近来源活动
2026年8月23日 07:23
检测到的 SKILL.md 语言
英语
星标
729
分支
120

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
6 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
llm-integration
description
Add or modify integration-api LLM providers with caller factory wiring, unified provider routing, streaming behavior, and metric/audit compatibility.
# LLM Integration Skill ## Mission Add provider callers for chat/stream/verify (plus optional embedding/reranking) with consistent metrics and routing. ## Inputs expected from user 1. Required capabilities: chat, stream, verify, embedding, reranking. 2. Auth and endpoint model. 3. Model parameter/tool-calling constraints. If missing: - Implement chat + stream + verify first. - Add embedding/reranking only if provider supports them. ## Hard boundaries In scope: - `api/integration-api/internal/caller/<provider>/...` - `api/integration-api/internal/caller/caller.go` - `api/integration-api/internal/type/callers.go` if interfaces change - `api/integration-api/api/unified_provider.go` - `pkg/clients/integration/integration_client.go` if routing updates are needed - provider model metadata in `ui/src/providers/<provider>/...` Out of scope: - assistant-api telephony/STT/TTS/EOS/VAD internals ## Implementation workflow 1. Build provider caller package (`llm`, `verify-credential`, optional embedding/reranking). 2. Register in caller factory switches. 3. Ensure unified provider endpoint behavior is consistent. 4. Keep MetricBuilder lifecycle consistent (`TIME_TAKEN`, `STATUS`). 5. Add tests for success/failure and stream completion. 6. Update provider model metadata where required. ## Governed lifecycle - Classify work as Fast, Standard, or Governed using `DEVELOPMENT_PROCESS.md`; use the full gated lifecycle only for Governed work. - This skill operates only in its assigned phase and path ownership; it may not approve its own plan or code review. - Governed implementation starts only from a coordinator-attested approved plan; Fast and Standard work follows its lighter documented lifecycle. - Return changed-file and verification evidence to the coordinator, then route the complete verified diff to the read-only `code-reviewer`. ## Validation commands - `go test ./api/integration-api/internal/caller/...` - `go test ./api/integration-api/api/...` - `go test ./pkg/clients/integration/...` - `./skills/llm-integration/scripts/validate.sh --check-diff --provider <provider>` ## References - `references/checklist.md` - `references/llm-checklist.md` - `examples/sample.md`
在 GitHub 查看