UNPKG

gaunt-sloth-assistant

Version:

[![Tests and Lint](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml) [![Integration Tests](https://github.co

8 lines (7 loc) 416 B
import type { AnthropicInput } from '@langchain/anthropic'; import type { BaseChatModel, BaseChatModelParams } from '@langchain/core/language_models/chat_models'; /** * Function to process JSON config and create Anthropic LLM instance */ export declare function processJsonConfig(llmConfig: AnthropicInput & BaseChatModelParams): Promise<BaseChatModel>; export declare function init(configFileName: string): void;