Skip to content

Commit

Permalink
Remove unnecessary exports
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 committed Dec 16, 2023
1 parent 1f072f0 commit 1876e31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions langchain-core/src/runnables/tests/runnable_interface.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ interface RunnableInterfaceV0<RunInput, RunOutput, CallOptions = any> {
): Promise<IterableReadableStreamV0<RunOutput>>;
}

export class IterableReadableStreamV0<T> extends ReadableStream<T> {
class IterableReadableStreamV0<T> extends ReadableStream<T> {
public reader: ReadableStreamDefaultReader<T>;

ensureReader() {
Expand Down Expand Up @@ -131,7 +131,7 @@ export class IterableReadableStreamV0<T> extends ReadableStream<T> {
* properties like `content`, `name`, and `additional_kwargs`. It also
* includes methods like `toDict()` and `_getType()`.
*/
export class AIMessageV0 {
class AIMessageV0 {
lc_namespace = ["langchain_core", "messages"];

lc_serializable = true;
Expand All @@ -152,7 +152,7 @@ export class AIMessageV0 {
}
}

export class StringPromptValueV0 {
class StringPromptValueV0 {
lc_namespace = ["langchain_core", "prompt_values"];

lc_serializable = true;
Expand Down

0 comments on commit 1876e31

Please sign in to comment.