l = $l10nFactory->get('lib'); } /** * @inheritDoc * @since 31.0.0 */ public function getName(): string { // TRANSLATORS Tool calling, also known as function calling, is a structured way to give LLMs the ability to make requests back to the application that called it. You define the tools you want to make available to the model, and the model will make tool requests to your app as necessary to fulfill the prompts you give it. return $this->l->t('Chat with tools'); } /** * @inheritDoc * @since 31.0.0 */ public function getDescription(): string { // TRANSLATORS Tool calling, also known as function calling, is a structured way to give LLMs the ability to make requests back to the application that called it. You define the tools you want to make available to the model, and the model will make tool requests to your app as necessary to fulfill the prompts you give it. return $this->l->t('Chat with the language model with tool calling support.'); } /** * @return string * @since 31.0.0 */ public function getId(): string { return self::ID; } /** * @return ShapeDescriptor[] * @since 31.0.0 */ public function getInputShape(): array { return [ 'system_prompt' => new ShapeDescriptor( $this->l->t('System prompt'), $this->l->t('Define rules and assumptions that the assistant should follow during the conversation.'), EShapeType::Text ), 'input' => new ShapeDescriptor( $this->l->t('Chat message'), $this->l->t('Describe a task that you want the assistant to do or ask a question'), EShapeType::Text ), 'tool_message' => new ShapeDescriptor( $this->l->t('Tool message'), $this->l->t('The result of tool calls in the last interaction'), EShapeType::Text ), 'history' => new ShapeDescriptor( $this->l->t('Chat history'), $this->l->t('The history of chat messages before the current message, starting with a message by the user'), EShapeType::ListOfTexts ), // See https://platform.openai.com/docs/api-reference/chat/create#chat-create-tools for the format 'tools' => new ShapeDescriptor( // TRANSLATORS Tool calling, also known as function calling, is a structured way to give LLMs the ability to make requests back to the application that called it. You define the tools you want to make available to the model, and the model will make tool requests to your app as necessary to fulfill the prompts you give it. $this->l->t('Available tools'), $this->l->t('The available tools in JSON format'), EShapeType::Text ), ]; } /** * @return ShapeDescriptor[] * @since 31.0.0 */ public function getOutputShape(): array { return [ 'output' => new ShapeDescriptor( $this->l->t('Generated response'), $this->l->t('The response from the chat model'), EShapeType::Text ), 'tool_calls' => new ShapeDescriptor( $this->l->t('Tool calls'), $this->l->t('Tools call instructions from the model in JSON format'), EShapeType::Text ), ]; } }