(nodeData?: INodeData)
| 13 | } |
| 14 | |
| 15 | export function getSSL(nodeData?: INodeData) { |
| 16 | return defaultChain(nodeData?.inputs?.ssl, process.env.POSTGRES_VECTORSTORE_SSL, false) |
| 17 | } |
| 18 | |
| 19 | export function getTableName(nodeData?: INodeData) { |
| 20 | return defaultChain(nodeData?.inputs?.tableName, process.env.POSTGRES_VECTORSTORE_TABLE_NAME, 'documents') |
no test coverage detected