mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 17:01:00 +03:00
LunaryAI automatic Thread and User tracking (#3233)
* Lunary Thread/User tracking * Clean console logs * Clean * Remove commented lines * Remove commented line
This commit is contained in:
@@ -8,22 +8,23 @@ class LunaryApi implements INodeCredential {
|
||||
inputs: INodeParams[]
|
||||
|
||||
constructor() {
|
||||
this.label = 'Lunary API'
|
||||
this.label = 'Lunary AI'
|
||||
this.name = 'lunaryApi'
|
||||
this.version = 1.0
|
||||
this.description = 'Refer to <a target="_blank" href="https://lunary.ai/docs">official guide</a> to get APP ID'
|
||||
this.description =
|
||||
'Refer to the <a target="_blank" href="https://lunary.ai/docs?utm_source=flowise">official guide</a> to get a public key.'
|
||||
this.inputs = [
|
||||
{
|
||||
label: 'APP ID',
|
||||
label: 'Public Key / Project ID',
|
||||
name: 'lunaryAppId',
|
||||
type: 'password',
|
||||
placeholder: '<Lunary_APP_ID>'
|
||||
type: 'string',
|
||||
placeholder: '<Lunary_PROJECT_ID>'
|
||||
},
|
||||
{
|
||||
label: 'Endpoint',
|
||||
name: 'lunaryEndpoint',
|
||||
type: 'string',
|
||||
default: 'https://app.lunary.ai'
|
||||
default: 'https://api.lunary.ai'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user