Skip to content

Commit c1c9d71

Browse files
clean up types
1 parent b58c9f3 commit c1c9d71

File tree

4 files changed

+11
-19
lines changed

4 files changed

+11
-19
lines changed

packages/core/src/generation.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,10 @@ export async function generateText({
247247
elizaLogger.debug(
248248
"Using local Llama model for text completion."
249249
);
250-
const textGenerationService = runtime
251-
.getService<ITextGenerationService>(
250+
const textGenerationService =
251+
runtime.getService<ITextGenerationService>(
252252
ServiceType.TEXT_GENERATION
253-
)
254-
.getInstance();
253+
);
255254

256255
if (!textGenerationService) {
257256
throw new Error("Text generation service not found");
@@ -870,9 +869,10 @@ export const generateCaption = async (
870869
description: string;
871870
}> => {
872871
const { imageUrl } = data;
873-
const imageDescriptionService = runtime
874-
.getService<IImageDescriptionService>(ServiceType.IMAGE_DESCRIPTION)
875-
.getInstance();
872+
const imageDescriptionService =
873+
runtime.getService<IImageDescriptionService>(
874+
ServiceType.IMAGE_DESCRIPTION
875+
);
876876

877877
if (!imageDescriptionService) {
878878
throw new Error("Image description service not found");

packages/core/src/types.ts

-5
Original file line numberDiff line numberDiff line change
@@ -1017,14 +1017,12 @@ export interface IAgentRuntime {
10171017
}
10181018

10191019
export interface IImageDescriptionService extends Service {
1020-
getInstance(): IImageDescriptionService;
10211020
describeImage(
10221021
imageUrl: string
10231022
): Promise<{ title: string; description: string }>;
10241023
}
10251024

10261025
export interface ITranscriptionService extends Service {
1027-
getInstance(): ITranscriptionService;
10281026
transcribeAttachment(audioBuffer: ArrayBuffer): Promise<string | null>;
10291027
transcribeAttachmentLocally(
10301028
audioBuffer: ArrayBuffer
@@ -1034,7 +1032,6 @@ export interface ITranscriptionService extends Service {
10341032
}
10351033

10361034
export interface IVideoService extends Service {
1037-
getInstance(): IVideoService;
10381035
isVideoUrl(url: string): boolean;
10391036
processVideo(url: string): Promise<Media>;
10401037
fetchVideoInfo(url: string): Promise<Media>;
@@ -1043,7 +1040,6 @@ export interface IVideoService extends Service {
10431040
}
10441041

10451042
export interface ITextGenerationService extends Service {
1046-
getInstance(): ITextGenerationService;
10471043
initializeModel(): Promise<void>;
10481044
queueMessageCompletion(
10491045
context: string,
@@ -1065,7 +1061,6 @@ export interface ITextGenerationService extends Service {
10651061
}
10661062

10671063
export interface IBrowserService extends Service {
1068-
getInstance(): IBrowserService;
10691064
closeBrowser(): Promise<void>;
10701065
getPageContent(
10711066
url: string,

packages/plugin-node/src/services/transcription.ts

-4
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ export class TranscriptionService
3737

3838
async initialize(runtime: IAgentRuntime): Promise<void> {}
3939

40-
getInstance(): ITranscriptionService {
41-
return TranscriptionService.getInstance();
42-
}
43-
4440
constructor() {
4541
super();
4642
const rootDir = path.resolve(__dirname, "../../");

packages/plugin-node/src/services/video.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,10 @@ export class VideoService extends Service implements IVideoService {
338338

339339
console.log("Starting transcription...");
340340
const startTime = Date.now();
341-
const transcriptionService = runtime
342-
.getService<ITranscriptionService>(ServiceType.TRANSCRIPTION)
343-
.getInstance();
341+
const transcriptionService = runtime.getService<ITranscriptionService>(
342+
ServiceType.TRANSCRIPTION
343+
);
344+
344345
if (!transcriptionService) {
345346
throw new Error("Transcription service not found");
346347
}

0 commit comments

Comments
 (0)