@agentica/core
Version:
Agentic AI Library specialized in LLM Function Calling
16 lines (14 loc) • 573 B
text/typescript
import type { IHttpLlmFunction } from "@samchon/openapi";
export interface __IChatInitialApplication {
/**
* Get list of API functions.
*
* If user seems like to request some function calling except this one,
* call this `getApiFunctions()` to get the list of candidate API functions
* provided from this application.
*
* Also, user just wants to list up every remote API functions that can be
* called from the backend server, utilize this function too.
*/
getApiFunctions: (props: object) => Promise<Array<IHttpLlmFunction<"chatgpt">>>;
}