( llm: ILLM, ide: IDE, options: RepoMapOptions, )
| 179 | } |
| 180 | |
| 181 | export default async function generateRepoMap( |
| 182 | llm: ILLM, |
| 183 | ide: IDE, |
| 184 | options: RepoMapOptions, |
| 185 | ): Promise<string> { |
| 186 | const generator = new RepoMapGenerator(llm, ide, options); |
| 187 | return generator.generate(); |
| 188 | } |
no test coverage detected