Skip to main content

@elizaos/core v0.1.7-alpha.2 / generateText

Function: generateText()

generateText(opts): Promise<string>

Send a message to the model for a text generateText - receive a string back and parse how you'd like

Parameters

opts

The options for the generateText request.

opts.runtime: IAgentRuntime

opts.context: string

The context of the message to be completed.

opts.modelClass: string

opts.tools?: Record<string, CoreTool<any, any>> = {}

opts.onStepFinish?

opts.maxSteps?: number = 1

opts.stop?: string[]

A list of strings to stop the generateText at.

opts.customSystemPrompt?: string

Returns

Promise<string>

The completed message.

Defined in

packages/core/src/generation.ts:60