-
Notifications
You must be signed in to change notification settings - Fork 170
client: standardize LiteLLM model alias variable naming #766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Co-authored-by: Matthew Wang <matt8p@Matthews-MacBook-Pro.local>
Co-authored-by: Matthew Wang <matt8p@Matthews-MacBook-Pro.local>
Co-authored-by: Matthew Wang <matt8p@Matthews-MacBook-Pro.local>
Co-authored-by: Matthew Wang <matt8p@Matthews-MacBook-Pro.local>
Co-authored-by: Matthew Wang <matt8p@Matthews-MacBook-Pro.local>
Co-authored-by: Matthew Wang <matt8p@Matthews-MacBook-Pro.local>
Co-authored-by: Matthew Wang <matt8p@Matthews-MacBook-Pro.local>
Co-authored-by: Matthew Wang <matt8p@Matthews-MacBook-Pro.local>
🔍 Existing Issues For ReviewYour pull request is modifying functions with the following pre-existing issues: 📄 File: client/src/components/SettingsTab.tsx
|
WalkthroughThe change renames an internal state variable in SettingsTab from 📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
🧰 Additional context used📓 Path-based instructions (6)**/*.{ts,tsx}📄 CodeRabbit inference engine (CLAUDE.md)
Files:
client/src/**/*.tsx📄 CodeRabbit inference engine (CLAUDE.md)
Files:
client/src/{app,components}/**/*.tsx📄 CodeRabbit inference engine (client/CLAUDE.md)
Files:
client/src/**/*.{ts,tsx}📄 CodeRabbit inference engine (client/CLAUDE.md)
Files:
client/src/{app,components,hooks}/**/*.{ts,tsx}📄 CodeRabbit inference engine (client/CLAUDE.md)
Files:
client/src/components/**/*.tsx📄 CodeRabbit inference engine (client/CLAUDE.md)
Files:
🔇 Additional comments (5)
Comment |
matteo8p
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merge
|
Hey there! Can you resolve the merge conflicts on this PR so we can merge it? |
Fix inconsistent capitalization in LiteLLM model alias variable names to prevent naming collisions and improve code clarity.
Fix: #717
Before
litellmModelAlias(lowercase 'llm')setLiteLLMModelAlias(uppercase 'LLM')After
liteLLMModelAliasInput(uppercase 'LLM' + 'Input' suffix)setLiteLLMModelAlias(uppercase 'LLM')