@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/out/plugin.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueharford/scrypted-spatial-awareness",
3
- "version": "0.6.29",
3
+ "version": "0.6.30",
4
4
  "description": "Cross-camera object tracking for Scrypted NVR with spatial awareness",
5
5
  "author": "Joshua Seidel <blueharford>",
6
6
  "license": "Apache-2.0",
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 from your LLM plugin. Multiple providers will be load-balanced.',
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' ||