Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Function loadAdaptersConfig

    • Parameters

      • workspace: string

      Returns {
          adapters: {
              defaults: {
                  gatewayBase: string;
                  leaseTtlMinutes: number;
                  modelDefault: string;
                  proxyBase: string;
              };
              perAgent: Record<
                  string,
                  {
                      deepseekHarnessLaunch?: {
                          entrypoint?: { path: string; sha256: string };
                          executable: { path: string; sha256: string };
                          sourceRevision?: string;
                      };
                      leaseScopes: (
                          | "gateway:llm"
                          | "proxy:connect"
                          | "toolhub:intent"
                          | "toolhub:execute"
                          | "hook:observe"
                          | "hook:control"
                          | "governor:check"
                          | "receipt:verify"
                          | "diagnostic:self-run"
                          | "wire:submit"
                      )[];
                      modelAllowlist: string[];
                      preferredAdapter: string;
                      preferredModel: string;
                      preferredProviderRoute: string;
                      routeAllowlist: string[];
                      runMode: "SUPERVISE"
                      | "SANDBOX";
                  },
              >;
              version: 1;
          };
      }