generative types
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
from .transaction_type import TransactionType
|
||||
from .loan_status import LoanStatus
|
||||
from .settings_items_data import SettingsItemsData
|
||||
from .settings_items_data import SettingsItemsData
|
||||
from .generatives_list import GenerativesList
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
class GenerativesList:
|
||||
@staticmethod
|
||||
def get_generative_list():
|
||||
data = [
|
||||
{"name": 'site_title', "prompt": 'Write about a 30-character title text for a REPLACE_THIS website.', "active": True},
|
||||
{"name": 'site_description', "prompt": 'Write a short introduction text about 100 characters for a REPLACE_THIS website.', "active": True},
|
||||
{"name": 'about_title', "prompt": 'Write about a 30-character about page title text for a REPLACE_THIS website.', "active": True},
|
||||
{"name": 'about_description', "prompt": 'Write three paragraphs about a REPLACE_THIS website.', "active": True},
|
||||
]
|
||||
return data
|
||||
Reference in New Issue
Block a user