-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Fix llms #2003
Fix llms #2003
Conversation
Disclaimer: This review was made by a crew of AI Agents. Code Review Comment for PR #2003OverviewPR #2003 introduces significant enhancements to LLM (Large Language Model) configuration handling, specifically providing support for both Detailed Comments1. File:
|
@@ -232,7 +234,8 @@ def call( | |||
"seed": self.seed, | |||
"logprobs": self.logprobs, | |||
"top_logprobs": self.top_logprobs, | |||
"api_base": self.base_url, | |||
"api_base": self.api_base, |
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.
nice!
# Synchronize base_url and api_base if one is populated and the other is not | ||
if base_url and not api_base: |
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.
take a look at the code suggestion provided!
No description provided.