diff options
author | omidima <47784584+omidima@users.noreply.github.com> | 2023-08-11 13:03:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-11 13:03:50 +0200 |
commit | 17d6a31523de93a4f8e40f3474682bf30cba2655 (patch) | |
tree | 45734a9f66a0a3dc2e55648fa94c0b2dd1840ee6 /g4f/Provider/Providers/EasyChat.py | |
parent | Update EasyChat.py (diff) | |
download | gpt4free-17d6a31523de93a4f8e40f3474682bf30cba2655.tar gpt4free-17d6a31523de93a4f8e40f3474682bf30cba2655.tar.gz gpt4free-17d6a31523de93a4f8e40f3474682bf30cba2655.tar.bz2 gpt4free-17d6a31523de93a4f8e40f3474682bf30cba2655.tar.lz gpt4free-17d6a31523de93a4f8e40f3474682bf30cba2655.tar.xz gpt4free-17d6a31523de93a4f8e40f3474682bf30cba2655.tar.zst gpt4free-17d6a31523de93a4f8e40f3474682bf30cba2655.zip |
Diffstat (limited to 'g4f/Provider/Providers/EasyChat.py')
-rw-r--r-- | g4f/Provider/Providers/EasyChat.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/g4f/Provider/Providers/EasyChat.py b/g4f/Provider/Providers/EasyChat.py index b89c183e..83e27ed9 100644 --- a/g4f/Provider/Providers/EasyChat.py +++ b/g4f/Provider/Providers/EasyChat.py @@ -7,7 +7,14 @@ model = ['gpt-3.5-turbo'] supports_stream = True needs_auth = False working = True - +active_servers = [ + "https://chat10.fastgpt.me", + "https://chat9.fastgpt.me", + "https://chat1.fastgpt.me", + "https://chat2.fastgpt.me", + "https://chat3.fastgpt.me", + "https://chat4.fastgpt.me" +] def _create_completion(model: str, messages: list, stream: bool, **kwargs): req = requests.Session() |