@alpic80/rivet-core 1.24.2-aidon.6 → 1.24.2-aidon.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16763,6 +16763,40 @@ function chatAidonNode() {
16763
16763
  var aidonPlugin = {
16764
16764
  id: "aidon",
16765
16765
  name: "Aidon",
16766
+ configSpec: {
16767
+ aidonURL: {
16768
+ type: "string",
16769
+ label: "Aidon URL",
16770
+ description: "The URL for the Aidon application.",
16771
+ helperText: "Defaults to https://app.aidon.ai. URL for the Aidon application.",
16772
+ default: "https://app.aidon.ai"
16773
+ },
16774
+ aidonKey: {
16775
+ type: "secret",
16776
+ label: "Aidon API Key",
16777
+ description: "The API Key for the Aidon application.",
16778
+ helperText: "API Key for the Aidon application."
16779
+ },
16780
+ fileBrowserURL: {
16781
+ type: "string",
16782
+ label: "FileBrowser URL",
16783
+ description: "The URL for the FileBrowser service.",
16784
+ helperText: "Defaults to https://ai-fb.aidon.ai. URL for the FileBrowser service.",
16785
+ default: "https://ai-fb.aidon.ai"
16786
+ },
16787
+ fileBrowserUsername: {
16788
+ type: "string",
16789
+ label: "FileBrowser Username",
16790
+ description: "The username for the FileBrowser service.",
16791
+ helperText: "Enter username given to access FileBrowser."
16792
+ },
16793
+ fileBrowserPassword: {
16794
+ type: "secret",
16795
+ label: "FileBrowser password",
16796
+ description: "The password for the FileBrowser service.",
16797
+ helperText: "Enter passord given to access FileBrowser."
16798
+ }
16799
+ },
16766
16800
  register: (register) => {
16767
16801
  register(chatAidonNode());
16768
16802
  }