27 lines
581 B
TypeScript
27 lines
581 B
TypeScript
/*
|
|
* TODO: Implement codeInterpreter column to chat_message table
|
|
import { INodeParams, INodeCredential } from '../src/Interface'
|
|
|
|
class E2BApi implements INodeCredential {
|
|
label: string
|
|
name: string
|
|
version: number
|
|
inputs: INodeParams[]
|
|
|
|
constructor() {
|
|
this.label = 'E2B API'
|
|
this.name = 'E2BApi'
|
|
this.version = 1.0
|
|
this.inputs = [
|
|
{
|
|
label: 'E2B Api Key',
|
|
name: 'e2bApiKey',
|
|
type: 'password'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
module.exports = { credClass: E2BApi }
|
|
*/
|