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

12 lines (11 loc) 525 B
import type { CharacterfileSchema } from '@base/config/schema'; export declare const getProjectDashboardUrl: (projectId?: string) => string | undefined; export type AgentSocialLink = { type: 'x' | 'github'; url: string; label: string; username: string; }; export declare const getAgentSocialLinksFromCharacterfile: (characterFile?: CharacterfileSchema) => AgentSocialLink[]; export declare const createUrlFromHostname: (hostname: string) => string; export declare const hasValidRedirectionUrl: () => boolean;