feat(ai-chutes): integrate Chutes adapter - #870
Open
khipu-agent wants to merge 1 commit into
Open
Conversation
Replace the BYOK stub with a real OpenAI-compatible chat completions integration against the Chutes LLM endpoint (https://llm.chutes.ai), matching the conventions of the integrated adapters: dry-run short-circuit, usage token mapping, clean base URL validation, and redacted error excerpts. Models list reflects the live /v1/models catalog. Fixes the malformed tokenSetup secretKey.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces the Chutes BYOK stub with a working OpenAI-compatible integration, following the same pattern as the Tier 1 adapters merged in #67-#71 (see #63).
generate()posts to the Chutes LLM endpoint athttps://llm.chutes.ai/v1/chat/completionsdeepseek-ai/DeepSeek-V3.2-TEE; models list:deepseek-ai/DeepSeek-V3.2-TEE,moonshotai/Kimi-K2.5-TEE,zai-org/GLM-5.2-TEE,Qwen/Qwen3-32B-TEE(from the livehttps://llm.chutes.ai/v1/modelscatalog)ctx.dryRunshort-circuits before the network callinputTokens/outputTokenspopulated fromdata.usagetokenSetup(secretKey was a URL instead ofCHUTES_API_KEY)Validation:
pnpm exec vitest run packages/ai/chutes/src/index.test.ts— 11 passedpnpm --filter @profullstack/sh1pt-ai-chutes typecheck— cleangit diff --check— clean