Skip to content

Commit

Permalink
hotfix azure (#6806)
Browse files Browse the repository at this point in the history
  • Loading branch information
enyst authored Feb 19, 2025
1 parent 003ebc0 commit b95840d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions openhands/core/config/llm_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,9 @@ def model_post_init(self, __context: Any):
os.environ['OR_SITE_URL'] = self.openrouter_site_url
if self.openrouter_app_name:
os.environ['OR_APP_NAME'] = self.openrouter_app_name

# Assign an API version for Azure models
# While it doesn't seem required, the format supported by the API without version seems old and will likely break.
# Azure issue: https://github.com/All-Hands-AI/OpenHands/issues/6777
if self.model.startswith('azure') and self.api_version is None:
self.api_version = '2024-08-01-preview'

0 comments on commit b95840d

Please sign in to comment.