feat(coding): add durable project identity core
This commit is contained in:
@@ -1436,7 +1436,10 @@ export async function startFinalAsarProxyCompositionProof(input: {
|
||||
PROXY_PROOF_MODEL_ID,
|
||||
));
|
||||
await providerService.setDefaultAccount(PROOF_ACCOUNT_ID);
|
||||
const project = await input.composition.projects.createProject({ projectPath: input.projectPath });
|
||||
const project = await input.composition.projects.createProject({
|
||||
projectPath: input.projectPath,
|
||||
identity: { kind: 'create' },
|
||||
});
|
||||
projectId = project.project.id;
|
||||
await createCodingProjectAgent(input.projectPath, {
|
||||
id: PROOF_AGENT_ID,
|
||||
@@ -1777,7 +1780,10 @@ export async function startFinalAsarResilienceProof(input: {
|
||||
keepRecentTokens: 1,
|
||||
},
|
||||
}, null, 2), 'utf8');
|
||||
const project = await input.composition.projects.createProject({ projectPath: input.projectPath });
|
||||
const project = await input.composition.projects.createProject({
|
||||
projectPath: input.projectPath,
|
||||
identity: { kind: 'create' },
|
||||
});
|
||||
projectId = project.project.id;
|
||||
await createCodingProjectAgent(input.projectPath, {
|
||||
id: PROOF_AGENT_ID,
|
||||
|
||||
Reference in New Issue
Block a user