Skip to content

Commit 1ae964b

Browse files
author
DavertMik
committed
updated docs, added browser plugin
1 parent f572b8e commit 1ae964b

13 files changed

Lines changed: 869 additions & 324 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ yarn.lock
2727
/.vs
2828
typings/types.d.ts
2929
typings/promiseBasedTypes.d.ts
30-
reflection/
30+
reflection/
31+
skills/

docs/ai.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import { openai } from '@ai-sdk/openai'
5858
export default {
5959
// ... other config
6060
ai: {
61-
model: openai('gpt-4o-mini'),
61+
model: openai('gpt-5'),
6262
},
6363
}
6464
```
@@ -92,7 +92,7 @@ import { openai } from '@ai-sdk/openai'
9292

9393
export default {
9494
ai: {
95-
model: openai('gpt-4o-mini'),
95+
model: openai('gpt-5'),
9696
// or use gpt-4o, gpt-3.5-turbo, etc.
9797
},
9898
}
@@ -119,8 +119,8 @@ import { anthropic } from '@ai-sdk/anthropic'
119119

120120
export default {
121121
ai: {
122-
model: anthropic('claude-3-5-sonnet-20241022'),
123-
// or use claude-3-opus-20240229, claude-3-haiku-20240307, etc.
122+
model: anthropic('claude-sonnet-4-6'),
123+
// or use claude-opus-4-7, claude-haiku-4-5, etc.
124124
},
125125
}
126126
```

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ CodeceptJS v4.x supports ECMAScript Modules (ESM) format. To use ESM:
6464
1. Add `"type": "module"` to your `package.json`
6565
2. Update import syntax in configuration files to use ESM format
6666

67-
For detailed migration instructions and important behavioral changes, see the **[ESM Migration Guide](esm-migration.md)**.
67+
For detailed migration instructions and important behavioral changes, see the **[3.x → 4.x Migration Guide](migration-4.md)**.
6868

6969
## WebDriver
7070

0 commit comments

Comments
 (0)