UNPKG

llamaindex

Version:

<p align="center"> <img height="100" width="100" alt="LlamaIndex logo" src="https://ts.llamaindex.ai/square.svg" /> </p> <h1 align="center">LlamaIndex.TS</h1> <h3 align="center"> Data framework for your LLM application. </h3>

10 lines (9 loc) 240 B
export type ClientParams = { apiKey?: string | undefined; baseUrl?: string | undefined; }; export type CloudConstructorParams = { name: string; projectName: string; organizationId?: string | undefined; } & ClientParams;