Skip to content

Commit 224635f

Browse files
committed
fix: Naming of imports
1 parent 3cd091d commit 224635f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ export { AI21 } from './AI21';
22
export { VERSION } from './version';
33
export * from './types';
44
export { AI21Error, MissingAPIKeyError } from './errors';
5-
export { Stream } from './Streaming';
5+
export { Stream } from './streaming';
66
export { APIResource } from './APIResource';
77
export { Chat, Completions } from './resources';

src/resources/chat/completions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as Models from '../../types';
22
import { APIResource } from '../../APIResource';
3-
import { Stream } from '../../Streaming';
3+
import { Stream } from '../../streaming';
44

55
export class Completions extends APIResource {
66
create(

0 commit comments

Comments
 (0)