Skip to content

Commit

Permalink
add tokenization service
Browse files Browse the repository at this point in the history
  • Loading branch information
tcm390 committed Dec 31, 2024
1 parent 0eaae1f commit 1d08e17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/plugin-node/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
TranscriptionService,
VideoService,
AwsS3Service,
TokenizationService,
} from "./services/index.ts";
import { describeImage } from "./actions/describe-image.ts";

Expand All @@ -29,6 +30,7 @@ export function createNodePlugin() {
new TranscriptionService(),
new VideoService(),
new AwsS3Service(),
new TokenizationService(),
],
actions: [describeImage],
} as const satisfies Plugin;
Expand Down
2 changes: 2 additions & 0 deletions packages/plugin-node/src/services/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { SpeechService } from "./speech.ts";
import { TranscriptionService } from "./transcription.ts";
import { VideoService } from "./video.ts";
import { AwsS3Service } from "./awsS3.ts";
import { TokenizationService } from "./tokenizer.ts";

export {
BrowserService,
Expand All @@ -16,4 +17,5 @@ export {
TranscriptionService,
VideoService,
AwsS3Service,
TokenizationService,
};

0 comments on commit 1d08e17

Please sign in to comment.