summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/Aichat.py
diff options
context:
space:
mode:
authorTekky <98614666+xtekky@users.noreply.github.com>2023-08-22 16:36:10 +0200
committerGitHub <noreply@github.com>2023-08-22 16:36:10 +0200
commit704408202b83f763f0b25c57989027b10d7ebf71 (patch)
tree4535edae946f9cf4f2d82519054e0e64199c3968 /g4f/Provider/Aichat.py
parent ~ | Merge pull request #830 (diff)
parentfix Equing response error with no stream (diff)
downloadgpt4free-704408202b83f763f0b25c57989027b10d7ebf71.tar
gpt4free-704408202b83f763f0b25c57989027b10d7ebf71.tar.gz
gpt4free-704408202b83f763f0b25c57989027b10d7ebf71.tar.bz2
gpt4free-704408202b83f763f0b25c57989027b10d7ebf71.tar.lz
gpt4free-704408202b83f763f0b25c57989027b10d7ebf71.tar.xz
gpt4free-704408202b83f763f0b25c57989027b10d7ebf71.tar.zst
gpt4free-704408202b83f763f0b25c57989027b10d7ebf71.zip
Diffstat (limited to 'g4f/Provider/Aichat.py')
-rw-r--r--g4f/Provider/Aichat.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/g4f/Provider/Aichat.py b/g4f/Provider/Aichat.py
index 6992d071..a1d90db7 100644
--- a/g4f/Provider/Aichat.py
+++ b/g4f/Provider/Aichat.py
@@ -40,9 +40,9 @@ class Aichat(BaseProvider):
json_data = {
"message": base,
- "temperature": 1,
+ "temperature": kwargs.get('temperature', 0.5),
"presence_penalty": 0,
- "top_p": 1,
+ "top_p": kwargs.get('top_p', 1),
"frequency_penalty": 0,
}
@@ -52,4 +52,6 @@ class Aichat(BaseProvider):
json=json_data,
)
response.raise_for_status()
+ if not response.json()['response']:
+ raise Exception("Error Response: " + response.json())
yield response.json()["message"]