Comparing version 1.4.0 to 1.4.1
{ | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
497670
9431