strategy.ts 381 B

1234567891011
  1. import type { StrategyPluginDetail } from '@/app/components/plugins/types'
  2. import { get } from './base'
  3. export const fetchStrategyList = () => {
  4. return get<StrategyPluginDetail[]>('/workspaces/current/agent-providers')
  5. }
  6. export const fetchStrategyDetail = (agentProvider: string) => {
  7. return get<StrategyPluginDetail>(`/workspaces/current/agent-provider/${agentProvider}`)
  8. }