summaryrefslogtreecommitdiffstats
path: root/openai_rev/quora/__init__.py
diff options
context:
space:
mode:
authorRaju Komati <komatiraju032@gmail.com>2023-04-27 22:57:06 +0200
committerRaju Komati <komatiraju032@gmail.com>2023-04-27 22:57:06 +0200
commitb206a1eb6364e519741ceb89e3f3b63910b4e1ef (patch)
treea5b02f50f60f4e307fa719f053b88f5df478b4e3 /openai_rev/quora/__init__.py
parentadded main module for accessing all services (diff)
downloadgpt4free-b206a1eb6364e519741ceb89e3f3b63910b4e1ef.tar
gpt4free-b206a1eb6364e519741ceb89e3f3b63910b4e1ef.tar.gz
gpt4free-b206a1eb6364e519741ceb89e3f3b63910b4e1ef.tar.bz2
gpt4free-b206a1eb6364e519741ceb89e3f3b63910b4e1ef.tar.lz
gpt4free-b206a1eb6364e519741ceb89e3f3b63910b4e1ef.tar.xz
gpt4free-b206a1eb6364e519741ceb89e3f3b63910b4e1ef.tar.zst
gpt4free-b206a1eb6364e519741ceb89e3f3b63910b4e1ef.zip
Diffstat (limited to 'openai_rev/quora/__init__.py')
-rw-r--r--openai_rev/quora/__init__.py19
1 files changed, 3 insertions, 16 deletions
diff --git a/openai_rev/quora/__init__.py b/openai_rev/quora/__init__.py
index f5d9e96e..5303f206 100644
--- a/openai_rev/quora/__init__.py
+++ b/openai_rev/quora/__init__.py
@@ -108,11 +108,6 @@ class Model:
description: str = 'gpt-3.5 language model from openai, skidded by poe.com',
handle: str = None,
) -> ModelResponse:
- models = {
- 'gpt-3.5-turbo': 'chinchilla',
- 'claude-instant-v1.0': 'a2',
- 'gpt-4': 'beaver',
- }
if not handle:
handle = f'gptx{randint(1111111, 9999999)}'
@@ -148,7 +143,7 @@ class Model:
obj={
'queryName': 'CreateBotMain_poeBotCreate_Mutation',
'variables': {
- 'model': models[model],
+ 'model': MODELS[model],
'handle': handle,
'prompt': system_prompt,
'isPromptPublic': True,
@@ -337,15 +332,7 @@ class Completion:
prompt: str = 'hello world',
token: str = '',
) -> PoeResponse:
- models = {
- 'sage': 'capybara',
- 'gpt-4': 'beaver',
- 'claude-v1.2': 'a2_2',
- 'claude-instant-v1.0': 'a2',
- 'gpt-3.5-turbo': 'chinchilla',
- }
-
- _model = models[model] if not custom_model else custom_model
+ _model = MODELS[model] if not custom_model else custom_model
client = PoeClient(token)
@@ -359,7 +346,7 @@ class Completion:
'object': 'text_completion',
'created': chunk['creationTime'],
'model': _model,
- 'text': chunk['text_new'],
+ 'text': chunk['text'],
'choices': [
{
'text': chunk['text'],