Skip to content

Commit 69871d7

Browse files
committed
fix: build issues
1 parent 9f47ac7 commit 69871d7

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.cspell/project-words.txt

+1
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,4 @@ weaviate
9595
Weaviate
9696
xlarge
9797
xstate
98+
modelcontextprotocol

.cspell.json cspell.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@
88
],
99
"dictionaries": ["project-words"],
1010
"ignorePaths": [
11+
"CHANGELOG.md",
1112
"node_modules",
12-
"./src/docs/src/content/docs/03-apidocs",
1313
"./src/ax/dsp/stopwords.ts",
14-
"./src/examples/*.ts"
14+
"./src/examples",
15+
"./scripts",
16+
"./build",
17+
"./dist"
1518
]
1619
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"fix": "npm run fix --workspaces --if-present",
1414
"test": "run-s test:*",
1515
"test:tests": "npm run test --workspaces --if-present",
16-
"test:spelling": "cspell --quiet \"{README.md,.github/*.md,src/**/*.ts}\"",
16+
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\" --quiet --color --config cspell.json",
1717
"coverage": "npm run fix --workspaces --if-present",
1818
"doc:build": "run-s doc:build:markdown doc:build:html",
1919
"doc:build:markdown": "npm run doc:build:markdown --workspaces --if-present",

src/examples/docker.ts

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ const ai = new AxAI({
2121
name: 'openai',
2222
apiKey: process.env.OPENAI_APIKEY as string,
2323
})
24+
ai.setOptions({
25+
debug: true,
26+
})
2427

2528
// Execute the task
2629
const res = await prompt.forward(ai, {

0 commit comments

Comments
 (0)