Spaces:
Runtime error
Runtime error
# Static knowledge base | |
class KnowledgeBase: | |
def __init__(self): | |
self.data = {"tip": "ุชุฃูุฏ ู ู ู ุนุงููุฉ ุงูุนูุงุฑ ูุจู ุงูุดุฑุงุก."} | |
def fetch(self, key): | |
return self.data.get(key, "ูุง ุชูุฌุฏ ู ุนููู ุงุช") | |