fix: extract primary key when multiple API keys are configured#374
Open
zhangyapu1 wants to merge 1 commit into
Open
fix: extract primary key when multiple API keys are configured#374zhangyapu1 wants to merge 1 commit into
zhangyapu1 wants to merge 1 commit into
Conversation
When multiple API keys are stored as comma-separated string (e.g., "key1,key2"), the model fetcher and aionrs agent now extract the first valid key instead of passing the entire string as a single API key. - Add primary_key() helper in fetchers.rs to extract first valid key - Use primary_key in fetch_for_platform for all platform fetchers - Extract first valid key in aionrs agent initialization
c8d3f5b to
7974d2b
Compare
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.
fix: extract primary key when multiple API keys are configured
When multiple API keys are stored as comma-separated string (e.g., "key1,key2"),
the model fetcher and aionrs agent now extract the first valid key instead of
passing the entire string as a single API key.
Changes
crates/aionui-system/src/model_fetcher/fetchers.rs: Addprimary_key()helper function to extract first valid key from comma/newline-separated string. Use it infetch_for_platformfor all platform fetchers.crates/aionui-ai-agent/src/manager/aionrs/agent.rs: Extract first valid key when initializing the aionrs engine.Related
This is the backend fix for the multi-key rotation issue. The frontend fix is in AionUi#3139.