Skip to content
Snippets Groups Projects
Commit 201cd0f5 authored by yisding's avatar yisding
Browse files

packages

parent 5e2e92c1
Branches
Tags llamaindex@0.0.33
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"version": "0.0.32", "version": "0.0.32",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@anthropic-ai/sdk": "^0.8.1", "@anthropic-ai/sdk": "^0.9.0",
"@notionhq/client": "^2.2.13", "@notionhq/client": "^2.2.13",
"js-tiktoken": "^1.0.7", "js-tiktoken": "^1.0.7",
"lodash": "^4.17.21", "lodash": "^4.17.21",
...@@ -11,10 +11,10 @@ ...@@ -11,10 +11,10 @@
"md-utils-ts": "^2.0.0", "md-utils-ts": "^2.0.0",
"mongodb": "^6.2.0", "mongodb": "^6.2.0",
"notion-md-crawler": "^0.0.2", "notion-md-crawler": "^0.0.2",
"openai": "^4.14.0", "openai": "^4.15.4",
"papaparse": "^5.4.1", "papaparse": "^5.4.1",
"pdf-parse": "^1.1.1", "pdf-parse": "^1.1.1",
"portkey-ai": "^0.1.13", "portkey-ai": "^0.1.16",
"rake-modified": "^1.0.8", "rake-modified": "^1.0.8",
"replicate": "^0.20.1", "replicate": "^0.20.1",
"string-strip-html": "^13.4.3", "string-strip-html": "^13.4.3",
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
}, },
"devDependencies": { "devDependencies": {
"@types/lodash": "^4.14.200", "@types/lodash": "^4.14.200",
"@types/node": "^18.18.7", "@types/node": "^18.18.8",
"@types/papaparse": "^5.3.10", "@types/papaparse": "^5.3.10",
"@types/pdf-parse": "^1.1.3", "@types/pdf-parse": "^1.1.3",
"@types/uuid": "^9.0.6", "@types/uuid": "^9.0.6",
......
...@@ -24,7 +24,10 @@ export class OpenAISession { ...@@ -24,7 +24,10 @@ export class OpenAISession {
if (options.azure) { if (options.azure) {
this.openai = new AzureOpenAI(options); this.openai = new AzureOpenAI(options);
} else { } else {
this.openai = new OpenAI(options); this.openai = new OpenAI({
...options,
// defaultHeaders: { "OpenAI-Beta": "assistants=v1" },
});
} }
} }
} }
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment