Skip to content

Commit ba66001

Browse files
committed
publisher for thinkers
1 parent db69678 commit ba66001

File tree

6 files changed

+11
-1
lines changed

6 files changed

+11
-1
lines changed

.agents/deep-thinking/deep-thinker.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import type { AgentDefinition } from '../types/agent-definition'
2+
import { publisher } from '../constants'
23

34
const definition: AgentDefinition = {
45
id: 'deep-thinker',
56
displayName: 'Deep Thinker Agent',
7+
publisher,
68
model: 'openai/gpt-5',
79
reasoningOptions: {
810
enabled: true,

.agents/deep-thinking/deepest-thinker.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import type { AgentDefinition } from '../types/agent-definition'
2+
import { publisher } from '../constants'
23

34
const definition: AgentDefinition = {
45
id: 'deepest-thinker',
56
displayName: 'Deepest Thinker Agent',
7+
publisher,
68
model: 'openai/gpt-5',
79
reasoningOptions: {
810
enabled: true,

.agents/deep-thinking/gemini-thinker-high.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import type { AgentDefinition } from '../types/agent-definition'
2+
import { publisher } from '../constants'
23

34
const definition: AgentDefinition = {
45
id: 'gemini-thinker-high',
56
displayName: 'Gemini Pro High Thinker',
7+
publisher,
68
model: 'google/gemini-2.5-pro',
79
reasoningOptions: {
810
enabled: true,

.agents/deep-thinking/gemini-thinker.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
import { publisher } from '../constants'
12
import type { AgentDefinition } from '../types/agent-definition'
23

34
const definition: AgentDefinition = {
45
id: 'gemini-thinker',
56
displayName: 'Gemini Pro Creative Thinker',
7+
publisher,
68
model: 'google/gemini-2.5-pro',
79
reasoningOptions: {
810
enabled: true,

.agents/deep-thinking/gpt5-thinker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { publisher } from '../constants'
21
import type { AgentDefinition } from '../types/agent-definition'
2+
import { publisher } from '../constants'
33

44
const definition: AgentDefinition = {
55
id: 'gpt5-thinker',

.agents/deep-thinking/sonnet-thinker.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
import { publisher } from '../constants'
12
import type { AgentDefinition } from '../types/agent-definition'
23

34
const definition: AgentDefinition = {
45
id: 'sonnet-thinker',
56
displayName: 'Claude Sonnet Deep Thinker',
7+
publisher,
68
model: 'anthropic/claude-4-sonnet-20250522',
79

810
inputSchema: {

0 commit comments

Comments
 (0)