diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-16 18:37:07 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-16 18:37:07 +0200 |
commit | d7ea4f90a8fa1be0fbbaa715426caf1c819d12a8 (patch) | |
tree | 3b82965a45238cb5b876db27ee659fb8c35f2010 /ora/__init__.py | |
parent | quora (poe) [gpt-4/3.5] api unpatch (diff) | |
download | gpt4free-d7ea4f90a8fa1be0fbbaa715426caf1c819d12a8.tar gpt4free-d7ea4f90a8fa1be0fbbaa715426caf1c819d12a8.tar.gz gpt4free-d7ea4f90a8fa1be0fbbaa715426caf1c819d12a8.tar.bz2 gpt4free-d7ea4f90a8fa1be0fbbaa715426caf1c819d12a8.tar.lz gpt4free-d7ea4f90a8fa1be0fbbaa715426caf1c819d12a8.tar.xz gpt4free-d7ea4f90a8fa1be0fbbaa715426caf1c819d12a8.tar.zst gpt4free-d7ea4f90a8fa1be0fbbaa715426caf1c819d12a8.zip |
Diffstat (limited to 'ora/__init__.py')
-rw-r--r-- | ora/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ora/__init__.py b/ora/__init__.py index 928f4af3..b6389f64 100644 --- a/ora/__init__.py +++ b/ora/__init__.py @@ -26,10 +26,10 @@ class Completion: 'chatbotId': model.id, 'input' : prompt, 'userId' : model.createdBy, - 'model' : 'gpt-3.5-turbo', + 'model' : model.modelName, 'provider' : 'OPEN_AI', 'includeHistory': includeHistory}).json() - + return OraResponse({ 'id' : response['conversationId'], 'object' : 'text_completion', |