Skip to content

Commit 44f9023

Browse files
committed
Add base-lite-codex
1 parent e18d7bb commit 44f9023

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.agents/base-lite-codex.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { publisher } from './constants.ts'
2+
import baseLite from './base-lite.ts'
3+
4+
import type { SecretAgentDefinition } from './types/secret-agent-definition.ts'
5+
6+
const definition: SecretAgentDefinition = {
7+
...baseLite,
8+
id: 'base-lite-codex',
9+
publisher,
10+
model: 'openai/gpt-5-codex',
11+
reasoningOptions: {
12+
enabled: true,
13+
effort: 'medium',
14+
},
15+
}
16+
17+
export default definition

0 commit comments

Comments
 (0)