@@ -98,20 +87,4 @@ export class PlanningComponent {
: 'pending') as PlanStep['status'],
}));
});
-=======
- template: `
`,
-})
-export class PlanningComponent {
- protected readonly stream = agent({
- apiUrl: environment.langGraphApiUrl,
- assistantId: environment.planningAssistantId,
- });
-
- readonly ui = views({
- 'plan-checklist': PlanChecklistComponent,
- 'checkbox-row': CheckboxRowComponent,
- });
-
- readonly uiStore = signalStateStore({});
->>>>>>> origin/main
}
diff --git a/cockpit/deep-agents/planning/angular/src/environments/environment.development.ts b/cockpit/deep-agents/planning/angular/src/environments/environment.development.ts
index 30770e0e4..b0133086b 100644
--- a/cockpit/deep-agents/planning/angular/src/environments/environment.development.ts
+++ b/cockpit/deep-agents/planning/angular/src/environments/environment.development.ts
@@ -8,8 +8,4 @@ export const environment = {
production: false,
langGraphApiUrl: 'http://localhost:4310/api',
streamingAssistantId: 'planning',
-<<<<<<< HEAD
-=======
- planningAssistantId: 'planning',
->>>>>>> origin/main
};
diff --git a/cockpit/deep-agents/planning/angular/src/environments/environment.ts b/cockpit/deep-agents/planning/angular/src/environments/environment.ts
index f1522f78d..d0950d618 100644
--- a/cockpit/deep-agents/planning/angular/src/environments/environment.ts
+++ b/cockpit/deep-agents/planning/angular/src/environments/environment.ts
@@ -8,8 +8,4 @@ export const environment = {
production: true,
langGraphApiUrl: '/api',
streamingAssistantId: 'planning',
-<<<<<<< HEAD
-=======
- planningAssistantId: 'planning',
->>>>>>> origin/main
};
diff --git a/cockpit/deep-agents/sandboxes/angular/src/app/sandboxes.component.ts b/cockpit/deep-agents/sandboxes/angular/src/app/sandboxes.component.ts
index 0f7e3f855..1f349ca8b 100644
--- a/cockpit/deep-agents/sandboxes/angular/src/app/sandboxes.component.ts
+++ b/cockpit/deep-agents/sandboxes/angular/src/app/sandboxes.component.ts
@@ -1,15 +1,7 @@
import { Component, computed } from '@angular/core';
-<<<<<<< HEAD
import { ChatComponent } from '@cacheplane/chat';
import { agent } from '@cacheplane/angular';
import { environment } from '../environments/environment';
-=======
-import { ChatComponent, views } from '@cacheplane/chat';
-import { signalStateStore } from '@cacheplane/render';
-import { agent } from '@cacheplane/angular';
-import { environment } from '../environments/environment';
-import { CodeExecutionComponent } from './views/code-execution.component';
->>>>>>> origin/main
/**
* Represents a parsed code execution: the code that was run and its output.
@@ -36,11 +28,7 @@ interface CodeExecution {
imports: [ChatComponent],
template: `
-<<<<<<< HEAD
-=======
-
->>>>>>> origin/main