@infersec/conduit 1.69.1 → 1.70.0

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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -20830,7 +20830,7 @@ object({
20830
20830
  id: ULIDSchema,
20831
20831
  lastState: ConduitState.nullable(),
20832
20832
  lastStateTimestamp: string$1().nullable(),
20833
- modelID: ULIDSchema,
20833
+ modelID: ULIDSchema.nullable(),
20834
20834
  modelName: string$1(),
20835
20835
  name: string$1(),
20836
20836
  updated: string$1()
@@ -20852,7 +20852,8 @@ object({
20852
20852
  name: string$1(),
20853
20853
  provider: _enum(["storage", "huggingface"]),
20854
20854
  providerSlug: string$1()
20855
- }),
20855
+ })
20856
+ .nullable(),
20856
20857
  modelQuantizationLabel: string$1().nullable(),
20857
20858
  name: string$1(),
20858
20859
  updated: string$1()
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@infersec/conduit",
3
3
  "description": "End user conduit agent for connecting local LLMs to the cloud.",
4
- "version": "1.69.1",
4
+ "version": "1.70.0",
5
5
  "bin": {
6
6
  "infersec-conduit": "./dist/cli.js"
7
7
  },