MCPcopy
hub / github.com/continuedev/continue / unrollAssistant

Function unrollAssistant

packages/config-yaml/src/load/unroll.ts:233–244  ·  view source on GitHub ↗
(
  id: PackageIdentifier,
  registry: Registry,
  options: UnrollAssistantOptions,
)

Source from the content-addressed store, hash-verified

231 | RenderSecretsUnrollAssistantOptions;
232
233export async function unrollAssistant(
234 id: PackageIdentifier,
235 registry: Registry,
236 options: UnrollAssistantOptions,
237): Promise<ConfigResult<AssistantUnrolled>> {
238 // Request the content from the registry
239 const rawContent = await registry.getContent(id);
240
241 const result = unrollAssistantFromContent(id, rawContent, registry, options);
242
243 return result;
244}
245
246export function replaceInputsWithSecrets(yamlContent: string): string {
247 const inputsToSecretsMap: Record<string, string> = {};

Callers 3

loadConfigYamlFunction · 0.90
index.test.tsFile · 0.85

Calls 2

getContentMethod · 0.65

Tested by

no test coverage detected