@langchain/community
Advanced tools
Comparing version 0.3.7-rc.0 to 0.3.7
@@ -10,3 +10,3 @@ import type { BaseLanguageModelCallOptions } from "@langchain/core/language_models/base"; | ||
export interface AILanguageModel extends EventTarget { | ||
prompt(input: AILanguageModelPromptInput, options?: AILanguageModelPromptOptions): Promise<String>; | ||
prompt(input: AILanguageModelPromptInput, options?: AILanguageModelPromptOptions): Promise<string>; | ||
promptStreaming(input: AILanguageModelPromptInput, options?: AILanguageModelPromptOptions): ReadableStream; | ||
@@ -19,3 +19,3 @@ countPromptTokens(input: AILanguageModelPromptInput, options?: AILanguageModelPromptOptions): Promise<number>; | ||
get temperature(): number; | ||
oncontextoverflow: ((event: Event) => void); | ||
oncontextoverflow: (event: Event) => void; | ||
clone(options?: AILanguageModelCloneOptions): Promise<AILanguageModel>; | ||
@@ -22,0 +22,0 @@ destroy(): void; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5221046