Socket
Socket
Sign inDemoInstall

chromadb

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chromadb - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

2

package.json
{
"name": "chromadb",
"version": "1.4.0",
"version": "1.4.1",
"description": "A JavaScript interface for chroma",

@@ -5,0 +5,0 @@ "keywords": [],

import { GetEmbeddingIncludeEnum, QueryEmbeddingIncludeEnum } from "./generated";
import { DefaultApi } from "./generated/api";
import { Configuration } from "./generated/configuration";
import axios from "axios"

@@ -360,3 +361,9 @@ // a function to convert a non-Array object to an Array

});
this.api = new DefaultApi(apiConfig);
const axiosInstance = axios.create({
maxBodyLength: Infinity,
maxContentLength: Infinity
})
this.api = new DefaultApi(apiConfig, basePath, axiosInstance);
}

@@ -363,0 +370,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc