| 22 | } |
| 23 | |
| 24 | interface ClusterNode { |
| 25 | label: string; |
| 26 | pathPattern: string | null; |
| 27 | files: FileInfo[]; |
| 28 | children: ClusterNode[]; |
| 29 | } |
| 30 | |
| 31 | const EMBED_PROVIDER = (process.env.CONTEXTPLUS_EMBED_PROVIDER ?? "ollama").toLowerCase(); |
| 32 | const EMBED_MODEL = process.env.OLLAMA_EMBED_MODEL ?? "nomic-embed-text"; |
nothing calls this directly
no outgoing calls
no test coverage detected