@promptbook/utils
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
20 lines (19 loc) • 639 B
TypeScript
import type { LlmToolsConfiguration } from './LlmToolsConfiguration';
/**
* @@@
*
* @@@ .env
* Note: `$` is used to indicate that this function is not a pure function - it uses filesystem to access `.env` file
*
* It looks for environment variables:
* - `process.env.OPENAI_API_KEY`
* - `process.env.ANTHROPIC_CLAUDE_API_KEY`
* - ...
*
* @returns @@@
* @public exported from `@promptbook/node`
*/
export declare function $provideLlmToolsConfigurationFromEnv(): Promise<LlmToolsConfiguration>;
/**
* Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
*/