Indicated support of message history in ChatBase.py

pull/1149/head
Luneye 8 months ago committed by GitHub
parent 7a2c8e4cd3
commit e93887aff8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,6 +9,7 @@ from .base_provider import AsyncGeneratorProvider
class ChatBase(AsyncGeneratorProvider):
url = "https://www.chatbase.co"
supports_gpt_35_turbo = True
supports_message_history = True
working = True
@classmethod
@ -53,4 +54,4 @@ class ChatBase(AsyncGeneratorProvider):
("stream", "bool"),
]
param = ", ".join([": ".join(p) for p in params])
return f"g4f.provider.{cls.__name__} supports: ({param})"
return f"g4f.provider.{cls.__name__} supports: ({param})"

Loading…
Cancel
Save