Skip to content

Commit

Permalink
fix: Naming of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
asafgardin committed Nov 14, 2024
1 parent 9c4c851 commit f8fdfd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ export { AI21 } from './AI21';
export { VERSION } from './version';
export * from './types';
export { AI21Error, MissingAPIKeyError } from './errors';
export { Stream } from './Streaming';
export { Stream } from './streaming';
export { APIResource } from './APIResource';
export { Chat, Completions } from './resources';
2 changes: 1 addition & 1 deletion src/resources/chat/completions.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as Models from '../../types';
import { APIResource } from '../../APIResource';
import { Stream } from '../../Streaming';
import { Stream } from '../../streaming';

export class Completions extends APIResource {
create(
Expand Down

0 comments on commit f8fdfd8

Please sign in to comment.