Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thebendu
/
aibot
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
aibot
/
scripts
/
io
/
__init__.py
thebendu
OpenAI chatbot
16cc10f
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
192 Bytes
from
abc
import
ABC, abstractmethod
class
InputOutput
(
ABC
):
@abstractmethod
def
input
(
self
) ->
str
:
...
@abstractmethod
def
output
(
self, message:
str
):
...