@blueharford/scrypted-spatial-awareness 0.6.29 → 0.6.30
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.
- package/dist/main.nodejs.js +1 -1
- package/dist/main.nodejs.js.map +1 -1
- package/dist/plugin.zip +0 -0
- package/out/main.nodejs.js +1 -9
- package/out/main.nodejs.js.map +1 -1
- package/out/plugin.zip +0 -0
- package/package.json +1 -1
- package/src/main.ts +1 -9
package/out/plugin.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/src/main.ts
CHANGED
|
@@ -238,19 +238,12 @@ export class SpatialAwarenessPlugin extends ScryptedDeviceBase
|
|
|
238
238
|
},
|
|
239
239
|
|
|
240
240
|
// Integrations
|
|
241
|
-
llmPlugin: {
|
|
242
|
-
title: 'LLM Plugin',
|
|
243
|
-
type: 'device',
|
|
244
|
-
deviceFilter: `interfaces.includes('DeviceProvider') && interfaces.includes('Settings')`,
|
|
245
|
-
description: 'Select the LLM plugin to use (e.g., OpenAI, Anthropic, Ollama from @scrypted/llm)',
|
|
246
|
-
group: 'Integrations',
|
|
247
|
-
},
|
|
248
241
|
llmProviders: {
|
|
249
242
|
title: 'LLM Providers',
|
|
250
243
|
type: 'device',
|
|
251
244
|
multiple: true,
|
|
252
245
|
deviceFilter: `interfaces.includes('ChatCompletion')`,
|
|
253
|
-
description: 'Select which providers to use
|
|
246
|
+
description: 'Select which LLM providers to use (e.g., OpenAI, Claude, Ollama). Multiple providers will be load-balanced to avoid rate limits.',
|
|
254
247
|
group: 'Integrations',
|
|
255
248
|
},
|
|
256
249
|
defaultNotifiers: {
|
|
@@ -761,7 +754,6 @@ export class SpatialAwarenessPlugin extends ScryptedDeviceBase
|
|
|
761
754
|
key === 'llmDebounceInterval' ||
|
|
762
755
|
key === 'llmFallbackEnabled' ||
|
|
763
756
|
key === 'llmFallbackTimeout' ||
|
|
764
|
-
key === 'llmPlugin' ||
|
|
765
757
|
key === 'llmProviders' ||
|
|
766
758
|
key === 'enableTransitTimeLearning' ||
|
|
767
759
|
key === 'enableConnectionSuggestions' ||
|