We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e18d7bb commit 44f9023Copy full SHA for 44f9023
.agents/base-lite-codex.ts
@@ -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