refactor(athena): use z.infer types from Zod schema, delete manual interfaces

This commit is contained in:
ismeth
2026-02-20 14:29:24 +01:00
committed by YeonGyu-Kim
parent de8746226f
commit b977ca9e63
5 changed files with 5 additions and 13 deletions
-1
View File
@@ -1,4 +1,3 @@
export * from "./types"
export * from "./agent"
export * from "./council-member-agent"
-10
View File
@@ -1,10 +0,0 @@
export interface CouncilMemberConfig {
model: string
variant?: string
name: string
temperature?: number
}
export interface CouncilConfig {
members: CouncilMemberConfig[]
}