UNPKG
jcrewai
Version:
latest (0.1.0)
0.1.0
Multi-agent automation framework written in TypeScript. Patterned after CrewAI.
jcrewai
/
dist
/
llms
/
BaseLlm.js
11 lines
(10 loc)
•
288 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"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
;