Skip to content

Commit 5cb66ae

Browse files
committed
fix(cockpit): use full URLs in dev environments (SDK requires absolute URLs)
1 parent 9ecb02b commit 5cb66ae

15 files changed

Lines changed: 21 additions & 15 deletions

File tree

cockpit/deep-agents/filesystem/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4311/api',
1010
streamingAssistantId: 'filesystem',
1111
};

cockpit/deep-agents/memory/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4313/api',
1010
streamingAssistantId: 'da-memory',
1111
};

cockpit/deep-agents/planning/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4310/api',
1010
streamingAssistantId: 'planning',
1111
};

cockpit/deep-agents/sandboxes/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4315/api',
1010
streamingAssistantId: 'sandboxes',
1111
};

cockpit/deep-agents/skills/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4314/api',
1010
streamingAssistantId: 'skills',
1111
};

cockpit/deep-agents/subagents/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4312/api',
1010
streamingAssistantId: 'subagents',
1111
};

cockpit/langgraph/deployment-runtime/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4307/api',
1010
deploymentRuntimeAssistantId: 'deployment-runtime',
1111
};

cockpit/langgraph/durable-execution/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4304/api',
1010
streamingAssistantId: 'durable-execution',
1111
};

cockpit/langgraph/interrupts/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4302/api',
1010
streamingAssistantId: 'interrupts',
1111
};

cockpit/langgraph/memory/angular/src/environments/environment.development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
*/
77
export const environment = {
88
production: false,
9-
langGraphApiUrl: '/api',
9+
langGraphApiUrl: 'http://localhost:4303/api',
1010
streamingAssistantId: 'memory',
1111
};

0 commit comments

Comments
 (0)