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 3cd091d commit 224635fCopy full SHA for 224635f
src/index.ts
@@ -2,6 +2,6 @@ export { AI21 } from './AI21';
2
export { VERSION } from './version';
3
export * from './types';
4
export { AI21Error, MissingAPIKeyError } from './errors';
5
-export { Stream } from './Streaming';
+export { Stream } from './streaming';
6
export { APIResource } from './APIResource';
7
export { Chat, Completions } from './resources';
src/resources/chat/completions.ts
@@ -1,6 +1,6 @@
1
import * as Models from '../../types';
import { APIResource } from '../../APIResource';
-import { Stream } from '../../Streaming';
+import { Stream } from '../../streaming';
export class Completions extends APIResource {
create(
0 commit comments