mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-11-18 08:06:46 +01:00
22 lines
939 B
Plaintext
22 lines
939 B
Plaintext
NOSTR_PRIVATE_KEY = "a secret hexkey for some demo dvms"
|
|
NOSTR_PRIVATE_KEY2 = "another secret hexkey for demo dvm with another key"
|
|
BOT_PRIVATE_KEY = "The private key for a test bot that communicates with dvms"
|
|
NOSTR_TEST_CLIENT_PRIVATE_KEY = "a secret hex key for the test dvm client"
|
|
|
|
|
|
# Optional LNBITS options to create invoices (if empty, it will use the lud16 from profile, make sure to set one)
|
|
LNBITS_INVOICE_KEY = ""
|
|
LNBITS_HOST = "https://lnbits.com"
|
|
|
|
|
|
# Some d tags we use in the testfile to announce or dvms. Create one at vendata.io)
|
|
TASK_TEXT_EXTRACTION_NIP89_DTAG = "asdd"
|
|
TASK_TRANSLATION_NIP89_DTAG = "abcded"
|
|
TASK_IMAGE_GENERATION_NIP89_DTAG = "fgdfgdf"
|
|
TASK_IMAGE_GENERATION_NIP89_DTAG2 = "fdgdfg"
|
|
|
|
#Backend Specific Options for tasks that require them
|
|
|
|
#nova-server is a local backend supporting some AI modules and needs to be installed separately,
|
|
#if dvms supporting it should be used
|
|
NOVA_SERVER = "127.0.0.1:37318" |