mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-28 21:30:18 +01:00
feat: Add Code Interpreter Plugin (#837)
* feat: Add Code Interpreter Plugin Adds a Simple Code Interpreter Plugin. ## Features: - Runs code using local Python Environment ## Issues - Code execution is not sandboxed. * Add Docker Sandbox for Python Server
This commit is contained in:
parent
e2397076a2
commit
3797ec6082
7 changed files with 150 additions and 0 deletions
|
|
@ -10,6 +10,8 @@ const SelfReflectionTool = require('./SelfReflection');
|
|||
const AzureCognitiveSearch = require('./AzureCognitiveSearch');
|
||||
const StructuredACS = require('./structured/AzureCognitiveSearch');
|
||||
const availableTools = require('./manifest.json');
|
||||
const CodeInterpreter = require('./CodeInterpreter');
|
||||
|
||||
|
||||
module.exports = {
|
||||
availableTools,
|
||||
|
|
@ -24,4 +26,5 @@ module.exports = {
|
|||
SelfReflectionTool,
|
||||
AzureCognitiveSearch,
|
||||
StructuredACS,
|
||||
CodeInterpreter,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue