🎉 feat(config.py): add ChatConfig class with streaming attribute set to True

The ChatConfig class is added to the project with a single attribute, streaming, set to True. This attribute is used to determine whether the chatbot should use streaming or request-response communication with the client.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-27 10:11:39 -03:00
commit c86f72e7a6

View file

@ -0,0 +1,2 @@
class ChatConfig:
streaming: bool = True