You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
377 B
31 lines
377 B
|
|
from _llm import LLM |
|
|
|
|
|
|
|
llm = LLM() |
|
|
|
|
|
|
|
|
|
|
|
class DataBase(): |
|
def __init__(self): |
|
self.data = [] |
|
|
|
def add(self, item): |
|
self.data.append(item) |
|
|
|
def get_all(self): |
|
return self.data |
|
|
|
|
|
|
|
class ArtaDataBase(DataBase): |
|
def __init__(self): |
|
super().__init__() |
|
self.name = "ArtaDataBase" |
|
def upload_artdata(): |
|
pass |
|
|
|
|
|
|