Skip to content

Commit 49442d4

Browse files
authored
Merge pull request #3168 from liam-hq/claude/issue-3154-20250825-1311
Fix: Rename langGraphUtils.ts to better reflect its content
2 parents 8cc9d0f + 876ee43 commit 49442d4

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

frontend/internal-packages/agent/scripts/executeDesignProcess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { END } from '@langchain/langgraph'
55
import type { Schema } from '@liam-hq/schema'
66
import type { Result } from 'neverthrow'
77
import { err, ok, okAsync } from 'neverthrow'
8-
import { DEFAULT_RECURSION_LIMIT } from '../src/chat/workflow/shared/langGraphUtils'
8+
import { DEFAULT_RECURSION_LIMIT } from '../src/chat/workflow/shared/workflowConstants'
99
import type { WorkflowState } from '../src/chat/workflow/types'
1010
import { createDbAgentGraph } from '../src/db-agent/createDbAgentGraph'
1111
import { hasHelpFlag, parseDesignProcessArgs } from './shared/argumentParser'

frontend/internal-packages/agent/scripts/executeQaAgent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { HumanMessage } from '@langchain/core/messages'
66
import { END } from '@langchain/langgraph'
77
import type { Result } from 'neverthrow'
88
import { err, ok, okAsync } from 'neverthrow'
9-
import { DEFAULT_RECURSION_LIMIT } from '../src/chat/workflow/shared/langGraphUtils'
9+
import { DEFAULT_RECURSION_LIMIT } from '../src/chat/workflow/shared/workflowConstants'
1010
import type { WorkflowState } from '../src/chat/workflow/types'
1111
import { createQaAgentGraph } from '../src/qa-agent/createQaAgentGraph'
1212
import { hasHelpFlag, parseQaAgentArgs } from './shared/argumentParser'

frontend/internal-packages/agent/src/chat/workflow/shared/langGraphUtils.ts renamed to frontend/internal-packages/agent/src/chat/workflow/shared/workflowConstants.ts

File renamed without changes.

frontend/internal-packages/agent/src/db-agent/invokeDbAgent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { DEFAULT_RECURSION_LIMIT } from '../chat/workflow/shared/langGraphUtils'
1+
import { DEFAULT_RECURSION_LIMIT } from '../chat/workflow/shared/workflowConstants'
22
import type { WorkflowConfigurable } from '../chat/workflow/types'
33
import {
44
executeWorkflowWithTracking,

frontend/internal-packages/agent/src/deepModeling.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { DEFAULT_RECURSION_LIMIT } from './chat/workflow/shared/langGraphUtils'
1+
import { DEFAULT_RECURSION_LIMIT } from './chat/workflow/shared/workflowConstants'
22
import type { WorkflowConfigurable } from './chat/workflow/types'
33
import { createGraph } from './createGraph'
44
import {

frontend/internal-packages/agent/src/shared/workflowSetup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { CompiledStateGraph } from '@langchain/langgraph'
44
import { END } from '@langchain/langgraph'
55
import { err, errAsync, ok, okAsync, ResultAsync } from 'neverthrow'
66
import { v4 as uuidv4 } from 'uuid'
7-
import { DEFAULT_RECURSION_LIMIT } from '../chat/workflow/shared/langGraphUtils'
7+
import { DEFAULT_RECURSION_LIMIT } from '../chat/workflow/shared/workflowConstants'
88
import type {
99
WorkflowConfigurable,
1010
WorkflowState,

0 commit comments

Comments
 (0)