chore: formatting etc

This commit is contained in:
Brooklyn Nicholson
2026-04-03 20:14:57 -05:00
parent 56a69e519b
commit 5a5d90c85a
14 changed files with 698 additions and 237 deletions

View File

@@ -6,7 +6,17 @@ import { pick } from '../lib/text.js'
import type { Theme } from '../theme.js'
import type { ActiveTool } from '../types.js'
export function Thinking({ reasoning, t, thinking, tools }: { reasoning: string; t: Theme; thinking?: string; tools: ActiveTool[] }) {
export function Thinking({
reasoning,
t,
thinking,
tools
}: {
reasoning: string
t: Theme
thinking?: string
tools: ActiveTool[]
}) {
const [frame, setFrame] = useState(0)
const [verb] = useState(() => pick(VERBS))
const [face] = useState(() => pick(FACES))