mirror of
https://github.com/langchain-ai/open-canvas.git
synced 2026-07-01 19:55:05 -04:00
cr
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
"build": "yarn clean && tsc",
|
||||
"clean": "rm -rf ./dist .turbo || true",
|
||||
"format": "prettier --config .prettierrc --write \"src\" \"scripts\"",
|
||||
"format:check": "prettier --config .prettierrc --check \"src\" \"scripts\"",
|
||||
"lint": "eslint src",
|
||||
"lint:fix": "eslint src --fix",
|
||||
"postinstall": "yarn turbo build"
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"lint": "next lint",
|
||||
"lint:fix": "next lint --fix",
|
||||
"format": "prettier --config .prettierrc --write \"src\"",
|
||||
"format:check": "prettier --config .prettierrc --check \"src\"",
|
||||
"eval": "vitest run --config ls.vitest.config.ts",
|
||||
"eval:highlights": "yarn tsx evals/highlights.ts"
|
||||
},
|
||||
|
||||
@@ -292,7 +292,6 @@ export function GraphProvider({ children }: { children: ReactNode }) {
|
||||
currentThreadId = newThread.thread_id;
|
||||
}
|
||||
|
||||
|
||||
const messagesInput = {
|
||||
// `messages` contains the full, unfiltered list of messages
|
||||
messages: params.messages,
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"build": "turbo build",
|
||||
"turbo:command": "turbo",
|
||||
"format": "turbo format",
|
||||
"format:check": "turbo format:check",
|
||||
"lint": "turbo lint",
|
||||
"lint:fix": "turbo lint:fix"
|
||||
},
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"build": "yarn clean && tsc",
|
||||
"clean": "rm -rf ./dist .turbo || true",
|
||||
"format": "prettier --config .prettierrc --write \"src\"",
|
||||
"format:check": "prettier --config .prettierrc --check \"src\"",
|
||||
"lint": "eslint src",
|
||||
"lint:fix": "eslint src --fix"
|
||||
},
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
"build": "yarn clean && tsc",
|
||||
"clean": "rm -rf ./dist .turbo || true",
|
||||
"format": "prettier --config .prettierrc --write \"src\"",
|
||||
"format:check": "prettier --config .prettierrc --check \"src\"",
|
||||
"lint": "eslint src",
|
||||
"lint:fix": "eslint src --fix"
|
||||
},
|
||||
|
||||
@@ -14,6 +14,9 @@
|
||||
},
|
||||
"format": {
|
||||
"dependsOn": ["^format"]
|
||||
},
|
||||
"format:check": {
|
||||
"dependsOn": ["^format:check"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user