You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Atlas live catalog returned qwen/qwen3.5-flash and deepseek-ai/deepseek-v4-pro
README: no README changes; no sponsor/logo/credits/partner promotion.
PR Type
Enhancement, Tests
Description
Add Atlas Cloud LLM provider preset
Add localization labels for Atlas Cloud across multiple languages
Add backend endpoint and frontend mapping for Atlas Cloud
Add regression test for Atlas Cloud preset configuration
Diagram Walkthrough
flowchart LR
A["ProvidersSection.tsx"] --> B["LLM_PRESETS add atlascloud"]
A --> C["ProvidersSection.test.ts"]
B --> D["i18n localization files"]
B --> E["Overview.tsx mapping"]
E --> F["credentials.rs endpoint"]
The test credentials_status_requires_api_key_for_atlascloud sets ark_endpoint and ark_model_id fields on the CredentialsSnapshot (lines 572-573) but then calls llm_configured_for_provider("atlascloud", &keyless). This appears to use the wrong credential fields for the 'atlascloud' provider, likely relying on ark-specific fields instead of atlascloud-specific fields. Unless the codebase intentionally reuses ark fields for atlascloud (unlikely and confusing), this test will not correctly validate atlascloud provider configuration. The test should set atlascloud-specific fields (e.g., atlascloud_endpoint, atlascloud_api_key) for the provider to be properly tested.
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
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.
User description
Summary
Validation
npx tsx src/pages/settings/ProvidersSection.test.tsnpm run buildgit diff --checkqwen/qwen3.5-flashanddeepseek-ai/deepseek-v4-proREADME: no README changes; no sponsor/logo/credits/partner promotion.
PR Type
Enhancement, Tests
Description
Add Atlas Cloud LLM provider preset
Add localization labels for Atlas Cloud across multiple languages
Add backend endpoint and frontend mapping for Atlas Cloud
Add regression test for Atlas Cloud preset configuration
Diagram Walkthrough
File Walkthrough
3 files
Add Atlas Cloud endpointAdd atlascloud mapping to LLM name keyAdd Atlas Cloud preset configuration and export2 files
Add test for Atlas Cloud API key requirementAdd regression test for Atlas Cloud preset5 files
Add English label for Atlas CloudAdd Japanese label for Atlas CloudAdd Korean label for Atlas CloudAdd Chinese (Simplified) label for Atlas CloudAdd Chinese (Traditional) label for Atlas Cloud