@llamaindex/ui
Version:
A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications
21 lines (16 loc) • 649 B
text/typescript
import { client as cloudApiClient } from "llama-cloud-services/api";
import { client as workflowsClient } from "@llamaindex/workflows-client";
// Export individual creator functions and types with clear names
// Primary (new) names
export {
createClient as createWorkflowsClient,
createConfig as createWorkflowsConfig,
type Client as WorkflowsClient,
} from "@llamaindex/workflows-client";
export { workflowsClient };
export {
createAgentDataClient as createCloudAgentClient,
type AgentClient as CloudAgentClient,
} from "llama-cloud-services/beta/agent";
export { cloudApiClient };
export type CloudApiClient = typeof cloudApiClient;