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

@ -15,7 +15,6 @@ const E2BTools = require('./structured/E2BTools');
const CodeSherpa = require('./structured/CodeSherpa');
const CodeSherpaTools = require('./structured/CodeSherpaTools');
const availableTools = require('./manifest.json');
const CodeInterpreter = require('./CodeInterpreter');
const CodeBrew = require('./CodeBrew');
module.exports = {
@ -36,6 +35,5 @@ module.exports = {
ChatTool,
CodeSherpa,
CodeSherpaTools,
CodeInterpreter,
CodeBrew,
};