Skip to content

Commit

Permalink
nit: LLM -> BaseLLM
Browse files Browse the repository at this point in the history
  • Loading branch information
JamsheedMistri committed Apr 8, 2024
1 parent 2e0ed62 commit cd5c1da
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions libs/langchain-community/src/llms/layerup_security.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
import { LLM, type BaseLLMParams } from "@langchain/core/language_models/llms";
import {
LLM,
BaseLLM,
type BaseLLMParams,
} from "@langchain/core/language_models/llms";
import {
GuardrailResponse,
LayerupSecurity as LayerupSecuritySDK,
LLMMessage,
} from "@layerup/layerup-security";

export interface LayerupSecurityOptions extends BaseLLMParams {
llm: LLM;
llm: BaseLLM;
layerupApiKey?: string;
layerupApiBaseUrl?: string;
promptGuardrails?: string[];
Expand Down

0 comments on commit cd5c1da

Please sign in to comment.