fix: supply all required type arguments

old-agentic-v1^2
Philipp Burckhardt 2023-06-13 21:47:41 -04:00 zatwierdzone przez Travis Fischer
rodzic 0798a24fdc
commit e1abd8a24f
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -20,7 +20,7 @@ export class Agentic {
types.BaseLLMOptions,
'provider' | 'model' | 'modelParams' | 'timeoutMs' | 'retryConfig'
>
protected _humanFeedbackDefaults: HumanFeedbackOptions<HumanFeedbackType>
protected _humanFeedbackDefaults: HumanFeedbackOptions<HumanFeedbackType, any>
protected _idGeneratorFn: types.IDGeneratorFunction
protected _id: string
@ -31,7 +31,7 @@ export class Agentic {
types.BaseLLMOptions,
'provider' | 'model' | 'modelParams' | 'timeoutMs' | 'retryConfig'
>
humanFeedbackDefaults?: HumanFeedbackOptions<HumanFeedbackType>
humanFeedbackDefaults?: HumanFeedbackOptions<HumanFeedbackType, any>
idGeneratorFn?: types.IDGeneratorFunction
logger?: types.Logger
ky?: types.KyInstance