Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
billytrend-cohere committed Jun 17, 2024
1 parent c18dabc commit 8ef59d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as core from "./core";
import * as Cohere from "./api/index";
import * as serializers from "./serialization/index";
import urlJoin from "url-join";
import * as stream from "stream";
import * as stream from "readable-stream";
import * as errors from "./errors/index";
import { EmbedJobs } from "./api/resources/embedJobs/client/Client";
import { Datasets } from "./api/resources/datasets/client/Client";
Expand Down
2 changes: 1 addition & 1 deletion src/core/form-data-utils/FormDataWrapper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Readable } from "stream";
import { Readable } from "readable-stream";
import { RUNTIME } from "../runtime";

interface CrossPlatformFormData {
Expand Down
2 changes: 1 addition & 1 deletion src/core/streaming-fetcher/Stream.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Readable } from "stream";
import { Readable } from "readable-stream";
import { RUNTIME } from "../runtime";

export declare namespace Stream {
Expand Down

0 comments on commit 8ef59d0

Please sign in to comment.