(owner: string, repo: string)
| 47 | * @returns Namespace string |
| 48 | */ |
| 49 | export function getRepoNamespace(owner: string, repo: string): string { |
| 50 | // Format: owner:repo |
| 51 | // This creates a unique namespace per repository |
| 52 | return `${owner}:${repo}`; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Generate a vector ID for a specific document chunk |
no outgoing calls
no test coverage detected