UNPKG

@fleek-platform/agents-ui

Version:

The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward

21 lines (20 loc) 1.3 kB
export * as api from '../api'; export { ChatBox } from '../components/ChatBox'; export { SubscriptionModal, useSubscriptionModal, } from '../components/SubscriptionModal'; export { FanSubscriptionModal, useFanSubscriptionModal, } from '../components/FanSubscriptionModal'; export { AgentUIEventTypes } from '../config/events'; export type { FileWithPreview } from '../components/ChatBox/AttachementsList'; export type { CaptureEventFn } from '../config/events'; export { DRAFT_BOOTSTRAP_DATA_KEY, ROUTE_NEW_DRAFT, } from '../pages/agentDraft/boostrapStore'; export { CLIENT_NAMES } from '../config/clients'; export { PLUGIN_NAMES } from '../config/plugins'; export { characterfileSchema, type CharacterfileSchema, } from '../config/schema'; export { MODEL_PROVIDER_NAMES } from '../config/modelProviders'; export { PLUGIN_NAMES as PLUGIN_NAMES_V2 } from '../config/v2/plugins'; export { ChatSystemRoleNameForAgent, ChatSystemRoleNameForUser, } from '../utils/chat'; export { useDeployFromPrompt } from './useDeployFromPrompt'; export { setDefined } from '../defined'; export { AgentCard } from '../components/ui/AgentCard'; export { useAgentPlans } from '../hooks/useAgentPlan'; export { useHasFanPlan } from '../hooks/useHasFanPlan'; export { getOrCreateAgentThread } from './getOrCreateAgentThread';