Indicated support of message history in ChatBase.py

This commit is contained in:
Luneye 2023-10-24 23:43:08 +02:00 committed by GitHub
parent 7a2c8e4cd3
commit e93887aff8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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