@agent-labs/ag-ui-server
Version:
AG-UI Node.js server with OpenAI integration
20 lines • 552 B
text/typescript
//#region src/config/index.d.ts
interface AgentConfig {
openaiApiKey: string;
model: string;
temperature?: number;
maxTokens?: number;
baseURL?: string;
}
interface ServerConfig {
port: number;
}
declare const getAgentConfig: () => AgentConfig;
declare const getServerConfig: () => ServerConfig;
declare const _default: {
getAgentConfig: () => AgentConfig;
getServerConfig: () => ServerConfig;
};
//#endregion
export { AgentConfig, ServerConfig, _default, getAgentConfig, getServerConfig };
//# sourceMappingURL=index-BY-fyBv6.d.mts.map