refactor(ext): improve folder structure

This commit is contained in:
Simon
2026-01-28 13:15:34 +08:00
parent e425a3ed9f
commit 55ffbb8f08
8 changed files with 31 additions and 39 deletions

View File

@@ -2,10 +2,10 @@
* React hook for using AgentController
*/
import type { AgentActivity, AgentStatus, HistoricalEvent } from '@page-agent/core'
import type { LLMConfig } from '@page-agent/llms'
import { useCallback, useEffect, useRef, useState } from 'react'
import { LLMConfig } from '@/utils'
import { DEMO_API_KEY, DEMO_BASE_URL, DEMO_MODEL } from '@/utils/constants'
import { DEMO_API_KEY, DEMO_BASE_URL, DEMO_MODEL } from '@/agent/constants'
import { MultiPageAgent } from './MultiPageAgent'