Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dl4ds
/
tutor_dev
like
0
Configuration error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d95aad5
tutor_dev
/
code
/
modules
/
chat_processor
/
base.py
XThomasBU
added raptor and literalai
f2daaee
7 months ago
raw
Copy download link
history
blame
187 Bytes
class
ChatProcessorBase
:
def
__init__
(
self, config
):
self.config = config
def
process
(
self, message
):
raise
NotImplementedError(
"process method not implemented"
)