Skip to content

Instantly share code, notes, and snippets.

View dwcarr's full-sized avatar

Dustin Carr dwcarr

View GitHub Profile
@dwcarr
dwcarr / deepInfraLangChain.ts
Created February 27, 2024 20:10
Langchain js custom chat model for Deep Infra
import type { BaseChatModelParams } from "@langchain/core/language_models/chat_models";
import {
type OpenAIClient,
type ChatOpenAICallOptions,
type OpenAIChatInput,
type OpenAICoreRequestOptions,
ChatOpenAI,
} from "@langchain/openai";
import { getEnvironmentVariable } from "@langchain/core/utils/env";