We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8395ef commit 4458d65Copy full SHA for 4458d65
src/model.ts
@@ -86,7 +86,7 @@ export function createAzureOpenAILanguageModel(apiKey: string, endPoint: string,
86
/**
87
* Common implementation of language model encapsulation of an OpenAI REST API endpoint.
88
*/
89
-function createAxiosLanguageModel(url: string, config: object, defaultParams: Record<string, string>) {
+export function createAxiosLanguageModel(url: string, config: object, defaultParams: Record<string, string>) {
90
const client = axios.create(config);
91
const model: TypeChatLanguageModel = {
92
complete
0 commit comments