mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Tool Calling: Implement stealth tool defintions (#3192)
* Tool Calling: Implement stealth tool defintions
* Move isStealth check up
* Always stop generation on stealth tool calls
* Image Generation: use stealth flag for tool registration
* Update stealth property description to clarify no follow-up generation will be performed
* Revert "Image Generation: use stealth flag for tool registration"
This reverts commit 8d13445c0b
.
This commit is contained in:
@ -4579,9 +4579,12 @@ export async function Generate(type, { automatic_trigger, force_name2, quiet_pro
|
||||
const shouldDeleteMessage = type !== 'swipe' && ['', '...'].includes(lastMessage?.mes) && ['', '...'].includes(streamingProcessor?.result);
|
||||
hasToolCalls && shouldDeleteMessage && await deleteLastMessage();
|
||||
const invocationResult = await ToolManager.invokeFunctionTools(streamingProcessor.toolCalls);
|
||||
const shouldStopGeneration = (!invocationResult.invocations.length && shouldDeleteMessage) || invocationResult.stealthCalls.length;
|
||||
if (hasToolCalls) {
|
||||
if (!invocationResult.invocations.length && shouldDeleteMessage) {
|
||||
ToolManager.showToolCallError(invocationResult.errors);
|
||||
if (shouldStopGeneration) {
|
||||
if (Array.isArray(invocationResult.errors) && invocationResult.errors.length) {
|
||||
ToolManager.showToolCallError(invocationResult.errors);
|
||||
}
|
||||
unblockGeneration(type);
|
||||
generatedPromptCache = '';
|
||||
streamingProcessor = null;
|
||||
@ -4681,9 +4684,12 @@ export async function Generate(type, { automatic_trigger, force_name2, quiet_pro
|
||||
const shouldDeleteMessage = type !== 'swipe' && ['', '...'].includes(getMessage);
|
||||
hasToolCalls && shouldDeleteMessage && await deleteLastMessage();
|
||||
const invocationResult = await ToolManager.invokeFunctionTools(data);
|
||||
const shouldStopGeneration = (!invocationResult.invocations.length && shouldDeleteMessage) || invocationResult.stealthCalls.length;
|
||||
if (hasToolCalls) {
|
||||
if (!invocationResult.invocations.length && shouldDeleteMessage) {
|
||||
ToolManager.showToolCallError(invocationResult.errors);
|
||||
if (shouldStopGeneration) {
|
||||
if (Array.isArray(invocationResult.errors) && invocationResult.errors.length) {
|
||||
ToolManager.showToolCallError(invocationResult.errors);
|
||||
}
|
||||
unblockGeneration(type);
|
||||
generatedPromptCache = '';
|
||||
return;
|
||||
|
@ -25,6 +25,7 @@ import { isTrueBoolean } from './utils.js';
|
||||
* @typedef {object} ToolInvocationResult
|
||||
* @property {ToolInvocation[]} invocations Successful tool invocations
|
||||
* @property {Error[]} errors Errors that occurred during tool invocation
|
||||
* @property {string[]} stealthCalls Names of stealth tools that were invoked
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -36,6 +37,7 @@ import { isTrueBoolean } from './utils.js';
|
||||
* @property {function} action - The action to perform when the tool is invoked.
|
||||
* @property {function} [formatMessage] - A function to format the tool call message.
|
||||
* @property {function} [shouldRegister] - A function to determine if the tool should be registered.
|
||||
* @property {boolean} [stealth] - A tool call result will not be shown in the chat. No follow-up generation will be performed.
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -147,6 +149,12 @@ class ToolDefinition {
|
||||
*/
|
||||
#shouldRegister;
|
||||
|
||||
/**
|
||||
* A tool call result will not be shown in the chat. No follow-up generation will be performed.
|
||||
* @type {boolean}
|
||||
*/
|
||||
#stealth;
|
||||
|
||||
/**
|
||||
* Creates a new ToolDefinition.
|
||||
* @param {string} name A unique name for the tool.
|
||||
@ -156,8 +164,9 @@ class ToolDefinition {
|
||||
* @param {function} action A function that will be called when the tool is executed.
|
||||
* @param {function} formatMessage A function that will be called to format the tool call toast.
|
||||
* @param {function} shouldRegister A function that will be called to determine if the tool should be registered.
|
||||
* @param {boolean} stealth A tool call result will not be shown in the chat. No follow-up generation will be performed.
|
||||
*/
|
||||
constructor(name, displayName, description, parameters, action, formatMessage, shouldRegister) {
|
||||
constructor(name, displayName, description, parameters, action, formatMessage, shouldRegister, stealth) {
|
||||
this.#name = name;
|
||||
this.#displayName = displayName;
|
||||
this.#description = description;
|
||||
@ -165,6 +174,7 @@ class ToolDefinition {
|
||||
this.#action = action;
|
||||
this.#formatMessage = formatMessage;
|
||||
this.#shouldRegister = shouldRegister;
|
||||
this.#stealth = stealth;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -214,6 +224,10 @@ class ToolDefinition {
|
||||
get displayName() {
|
||||
return this.#displayName;
|
||||
}
|
||||
|
||||
get stealth() {
|
||||
return this.#stealth;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -246,7 +260,7 @@ export class ToolManager {
|
||||
* Registers a new tool with the tool registry.
|
||||
* @param {ToolRegistration} tool The tool to register.
|
||||
*/
|
||||
static registerFunctionTool({ name, displayName, description, parameters, action, formatMessage, shouldRegister }) {
|
||||
static registerFunctionTool({ name, displayName, description, parameters, action, formatMessage, shouldRegister, stealth }) {
|
||||
// Convert WIP arguments
|
||||
if (typeof arguments[0] !== 'object') {
|
||||
[name, description, parameters, action] = arguments;
|
||||
@ -256,7 +270,16 @@ export class ToolManager {
|
||||
console.warn(`[ToolManager] A tool with the name "${name}" has already been registered. The definition will be overwritten.`);
|
||||
}
|
||||
|
||||
const definition = new ToolDefinition(name, displayName, description, parameters, action, formatMessage, shouldRegister);
|
||||
const definition = new ToolDefinition(
|
||||
name,
|
||||
displayName,
|
||||
description,
|
||||
parameters,
|
||||
action,
|
||||
formatMessage,
|
||||
shouldRegister,
|
||||
stealth,
|
||||
);
|
||||
this.#tools.set(name, definition);
|
||||
console.log('[ToolManager] Registered function tool:', definition);
|
||||
}
|
||||
@ -302,6 +325,20 @@ export class ToolManager {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if a tool is a stealth tool.
|
||||
* @param {string} name The name of the tool to check.
|
||||
* @returns {boolean} Whether the tool is a stealth tool.
|
||||
*/
|
||||
static isStealthTool(name) {
|
||||
if (!this.#tools.has(name)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const tool = this.#tools.get(name);
|
||||
return !!tool.stealth;
|
||||
}
|
||||
|
||||
/**
|
||||
* Formats a message for a tool call by name.
|
||||
* @param {string} name The name of the tool to format the message for.
|
||||
@ -608,6 +645,7 @@ export class ToolManager {
|
||||
const result = {
|
||||
invocations: [],
|
||||
errors: [],
|
||||
stealthCalls: [],
|
||||
};
|
||||
const toolCalls = ToolManager.#getToolCallsFromData(data);
|
||||
|
||||
@ -625,7 +663,7 @@ export class ToolManager {
|
||||
const parameters = toolCall.function.arguments;
|
||||
const name = toolCall.function.name;
|
||||
const displayName = ToolManager.getDisplayName(name);
|
||||
|
||||
const isStealth = ToolManager.isStealthTool(name);
|
||||
const message = await ToolManager.formatToolCallMessage(name, parameters);
|
||||
const toast = message && toastr.info(message, 'Tool Calling', { timeOut: 0 });
|
||||
const toolResult = await ToolManager.invokeFunctionTool(name, parameters);
|
||||
@ -638,6 +676,12 @@ export class ToolManager {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Don't save stealth tool invocations
|
||||
if (isStealth) {
|
||||
result.stealthCalls.push(name);
|
||||
continue;
|
||||
}
|
||||
|
||||
const invocation = {
|
||||
id,
|
||||
displayName,
|
||||
@ -860,6 +904,14 @@ export class ToolManager {
|
||||
isRequired: false,
|
||||
acceptsMultiple: false,
|
||||
}),
|
||||
SlashCommandNamedArgument.fromProps({
|
||||
name: 'stealth',
|
||||
description: 'If true, a tool call result will not be shown in the chat and no follow-up generation will be performed.',
|
||||
typeList: [ARGUMENT_TYPE.BOOLEAN],
|
||||
isRequired: false,
|
||||
acceptsMultiple: false,
|
||||
defaultValue: String(false),
|
||||
}),
|
||||
],
|
||||
unnamedArgumentList: [
|
||||
SlashCommandArgument.fromProps({
|
||||
@ -891,7 +943,7 @@ export class ToolManager {
|
||||
};
|
||||
}
|
||||
|
||||
const { name, displayName, description, parameters, formatMessage, shouldRegister } = args;
|
||||
const { name, displayName, description, parameters, formatMessage, shouldRegister, stealth } = args;
|
||||
|
||||
if (!(action instanceof SlashCommandClosure)) {
|
||||
throw new Error('The unnamed argument must be a closure.');
|
||||
@ -927,6 +979,7 @@ export class ToolManager {
|
||||
action: actionFunc,
|
||||
formatMessage: formatMessageFunc,
|
||||
shouldRegister: shouldRegisterFunc,
|
||||
stealth: stealth && isTrueBoolean(String(stealth)),
|
||||
});
|
||||
|
||||
return '';
|
||||
|
Reference in New Issue
Block a user