UNPKG

jcrewai

Version:

Multi-agent automation framework written in TypeScript. Patterned after CrewAI.

11 lines (10 loc) 288 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseLlm = void 0; class BaseLlm { constructor(options = {}) { this.model = options.model ?? 'gpt-4'; this.temperature = options.temperature ?? 0.7; } } exports.BaseLlm = BaseLlm;