fix 01.ai url error (#1977)

### What problem does this PR solve?

#1976  fix 01.ai url error

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

---------

Co-authored-by: Zhedong Cen <cenzhedong2@126.com>
This commit is contained in:
黄腾 2024-08-16 16:35:40 +08:00 committed by GitHub
parent e5caa702f5
commit 9729ca2aed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1033,7 +1033,7 @@ class SILICONFLOWChat(Base):
class YiChat(Base):
def __init__(self, key, model_name, base_url="https://api.lingyiwanwu.com/v1"):
def __init__(self, key, model_name, base_url="https://api.01.ai/v1"):
if not base_url:
base_url = "https://api.lingyiwanwu.com/v1"
base_url = "https://api.01.ai/v1"
super().__init__(key, model_name, base_url)