2023-11-23 13:30:09 +01:00
|
|
|
#This is needed for the test_client
|
|
|
|
NOSTR_TEST_CLIENT_PRIVATE_KEY = "a secret hex key for the test dvm client"
|
|
|
|
#This is needed for the (optional) bot
|
|
|
|
BOT_PRIVATE_KEY = "The private key for a test bot that communicates with dvms"
|
|
|
|
|
|
|
|
#These are all for the playground and can be replaced and adjusted however needed
|
2023-11-23 11:53:57 +01:00
|
|
|
NOSTR_PRIVATE_KEY = "a secret hexkey for some demo dvms"
|
|
|
|
NOSTR_PRIVATE_KEY2 = "another secret hexkey for demo dvm with another key"
|
2023-11-29 10:01:20 +01:00
|
|
|
NOSTR_PRIVATE_KEY3 = "another secret hexkey for demo dvm with another key"
|
|
|
|
NOSTR_PRIVATE_KEY4 = "another secret hexkey for demo dvm with another key"
|
|
|
|
NOSTR_PRIVATE_KEY5 = "another secret hexkey for demo dvm with another key"
|
|
|
|
|
2023-11-23 11:53:57 +01:00
|
|
|
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"
|
2023-11-18 20:20:18 +01:00
|
|
|
|
2023-11-23 11:53:57 +01:00
|
|
|
|
|
|
|
# Optional LNBITS options to create invoices (if empty, it will use the lud16 from profile, make sure to set one)
|
2023-11-20 19:17:10 +01:00
|
|
|
LNBITS_INVOICE_KEY = ""
|
2023-11-26 10:31:38 +01:00
|
|
|
LNBITS_ADMIN_KEY = "" # In order to pay invoices, e.g. from the bot to DVMs, or reimburse users. Keep this secret and use responsibly.
|
2023-11-20 19:17:10 +01:00
|
|
|
LNBITS_HOST = "https://lnbits.com"
|
2023-11-18 20:20:18 +01:00
|
|
|
|
2023-11-23 11:53:57 +01:00
|
|
|
|
|
|
|
# Some d tags we use in the testfile to announce or dvms. Create one at vendata.io)
|
|
|
|
TASK_TEXT_EXTRACTION_NIP89_DTAG = "asdd"
|
2023-11-20 19:17:10 +01:00
|
|
|
TASK_TRANSLATION_NIP89_DTAG = "abcded"
|
2023-11-23 11:53:57 +01:00
|
|
|
TASK_IMAGE_GENERATION_NIP89_DTAG = "fgdfgdf"
|
|
|
|
TASK_IMAGE_GENERATION_NIP89_DTAG2 = "fdgdfg"
|
2023-11-24 17:20:29 +01:00
|
|
|
TASK_IMAGE_GENERATION_NIP89_DTAG3 = "asdasd"
|
2023-11-30 08:07:30 +01:00
|
|
|
TASK_SPEECH_TO_TEXT_NIP89 = "asdasdas"
|
|
|
|
TASK_MEDIA_CONVERTER_NIP89_DTAG = "asdasdasd"
|
2023-11-30 10:49:08 +01:00
|
|
|
TASK_DISCOVER_INACTIVE_NIP89_DTAG = "sdfdfsdf12312"
|
2023-11-24 17:20:29 +01:00
|
|
|
|
2023-11-20 19:17:10 +01:00
|
|
|
|
2023-11-29 10:01:20 +01:00
|
|
|
#Backend Specific Options for tasks that require inputs, such as Endpoints or API Keys
|
2023-11-24 21:29:24 +01:00
|
|
|
OPENAI_API_KEY = "" # Enter your OpenAI API Key to use DVMs with OpenAI services
|
2023-11-29 10:01:20 +01:00
|
|
|
LIBRE_TRANSLATE_ENDPOINT = "" # Url to LibreTranslate Endpoint e.g. https://libretranslate.com
|
|
|
|
LIBRE_TRANSLATE_API_KEY = "" # API Key, if required (You can host your own instance where you don't need it)
|
2023-11-24 21:29:24 +01:00
|
|
|
NOVA_SERVER = "" # Enter the address of a nova-server instance, locally or on a machine in your network host:port
|