Skip to content

Commit 58a1161

Browse files
authored
Merge pull request #806 from narengogi/fix/missing-export
fix missing export
2 parents 6e52f52 + 58ac748 commit 58a1161

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/providers/nebius/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
import { ProviderConfigs } from '../types';
99
import { nebiusAPIConfig } from './api';
1010

11-
export const NebiusConfig: ProviderConfigs = {
11+
const NebiusConfig: ProviderConfigs = {
1212
chatComplete: chatCompleteParams([], {
1313
model: 'Qwen/Qwen2.5-72B-Instruct-fast',
1414
}),
@@ -21,3 +21,5 @@ export const NebiusConfig: ProviderConfigs = {
2121
complete: true,
2222
}),
2323
};
24+
25+
export default NebiusConfig;

0 commit comments

Comments
 (0)