bug fix: remove 3rd party code interpreter (#1306)

This commit is contained in:
Fuegovic 2023-12-07 14:27:52 -05:00 committed by GitHub
parent 4d528efaf6
commit b822cd48d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 0 additions and 149 deletions

View file

@ -7,7 +7,6 @@ const { Calculator } = require('langchain/tools/calculator');
const { WebBrowser } = require('langchain/tools/webbrowser');
const {
availableTools,
CodeInterpreter,
AIPluginTool,
GoogleSearchAPI,
WolframAlphaAPI,
@ -96,7 +95,6 @@ const loadTools = async ({
}) => {
const toolConstructors = {
calculator: Calculator,
codeinterpreter: CodeInterpreter,
google: GoogleSearchAPI,
wolfram: functions ? StructuredWolfram : WolframAlphaAPI,
'dall-e': OpenAICreateImage,