Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
kakuguo
/
ai-test-chatGPT01
like
0
Paused
App
Files
Files
Community
1
a634309
ai-test-chatGPT01
/
bot
/
bot.py
kakuguo
提交
cd9a59b
about 1 year ago
raw
Copy download link
history
blame
Safe
266 Bytes
"""
Auto-replay chat robot abstract class
"""
class
Bot
(
object
):
def
reply
(
self, query, context=
None
):
"""
bot auto-reply content
:param req: received message
:return: reply content
"""
raise
NotImplementedError