(nodeData?: INodeData)
| 1 | import { defaultChain, INodeData } from '../../../src' |
| 2 | |
| 3 | export function getHost(nodeData?: INodeData) { |
| 4 | return defaultChain(nodeData?.inputs?.host, process.env.POSTGRES_VECTORSTORE_HOST) |
| 5 | } |
| 6 | |
| 7 | export function getDatabase(nodeData?: INodeData) { |
| 8 | return defaultChain(nodeData?.inputs?.database, process.env.POSTGRES_VECTORSTORE_DATABASE) |
no test coverage detected