9dbb5f337e
Adapter plugin that runs Claude Code agents as Kubernetes Jobs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
505 B
JavaScript
17 lines
505 B
JavaScript
import { type, models, agentConfigurationDoc } from "../index.js";
|
|
import { execute } from "./execute.js";
|
|
import { testEnvironment } from "./test.js";
|
|
import { sessionCodec } from "./session.js";
|
|
export function createServerAdapter() {
|
|
return {
|
|
type,
|
|
execute,
|
|
testEnvironment,
|
|
sessionCodec,
|
|
models,
|
|
supportsLocalAgentJwt: true,
|
|
agentConfigurationDoc,
|
|
};
|
|
}
|
|
export { execute, testEnvironment, sessionCodec };
|
|
//# sourceMappingURL=index.js.map
|