mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 01:10:11 +01:00
2e813846dc
* WIP agent support * move agent folder * wip frontend socket * checkpoint * fix schema * Checkpoint for plugins and AgentHandler * refactor plugins and agent arch * agent error reporting and handling * add frontend elements for agents in prompt input * WIP integrations for agents * enable web-search agent config from frontend * persist chat history * update alert * update migration remove console logs update close state for agent invocations * add examples to dockerignore Extract statusResponse to its own component * update close method * wrap scraping rejections * add RAG search as funciton * Add telem and link highlight * chat support * patch memory * Add rechart as a plugin option * Toggles for abilites of default agent (system wide) Validate values for agent skills Enable dynamic loading of skills UI for toggle of skills * add UI for toggle of configs for agent * toggle WS or WSS protocol * update NGNIX proxy pass * move components around and capture failed websocket creation * fix name * tmp docker image * reset workflow * safety mark functions * telem on tool calls * remove hardcode short circuit * separate web-browser from scrape * extract summarizer to util add abort handlers and controller for langchain stuff so socket close kills process * langchain summarize verbose when in dev * chart styling improvements + add title to chart * fix legend from being cutoff in chart downloads * remove cursor blink --------- Co-authored-by: shatfield4 <seanhatfield5@gmail.com>
110 lines
4.1 KiB
JavaScript
110 lines
4.1 KiB
JavaScript
const { safeJsonParse } = require("../../../http");
|
|
const { Deduplicator } = require("../utils/dedupe");
|
|
|
|
const rechart = {
|
|
name: "create-chart",
|
|
startupConfig: {
|
|
params: {},
|
|
},
|
|
plugin: function () {
|
|
return {
|
|
name: this.name,
|
|
setup(aibitat) {
|
|
// Scrape a website and summarize the content based on objective if the content is too large.',
|
|
aibitat.function({
|
|
super: aibitat,
|
|
name: this.name,
|
|
tracker: new Deduplicator(),
|
|
description:
|
|
"Generates the JSON data required to generate a RechartJS chart to the user based on their prompt and available data.",
|
|
parameters: {
|
|
$schema: "http://json-schema.org/draft-07/schema#",
|
|
type: "object",
|
|
properties: {
|
|
type: {
|
|
type: "string",
|
|
enum: [
|
|
"area",
|
|
"bar",
|
|
"line",
|
|
"composed",
|
|
"scatter",
|
|
"pie",
|
|
"radar",
|
|
"radialBar",
|
|
"treemap",
|
|
"funnel",
|
|
],
|
|
description: "The type of chart to be generated.",
|
|
},
|
|
title: {
|
|
type: "string",
|
|
description:
|
|
"Title of the chart. There MUST always be a title. Do not leave it blank.",
|
|
},
|
|
dataset: {
|
|
type: "string",
|
|
description: `Valid JSON in which each element is an object for Recharts API for the 'type' of chart defined WITHOUT new line characters. Strictly using this FORMAT and naming:
|
|
{ "name": "a", "value": 12 }].
|
|
Make sure field "name" always stays named "name". Instead of naming value field value in JSON, name it based on user metric and make it the same across every item.
|
|
Make sure the format use double quotes and property names are string literals. Provide JSON data only.`,
|
|
},
|
|
},
|
|
additionalProperties: false,
|
|
},
|
|
required: ["type", "title", "dataset"],
|
|
handler: async function ({ type, dataset, title }) {
|
|
try {
|
|
if (!this.tracker.isUnique(this.name)) {
|
|
this.super.handlerProps.log(
|
|
`${this.name} has been run for this chat response already. It can only be called once per chat.`
|
|
);
|
|
return "The chart was generated and returned to the user. This function completed successfully. Do not call this function again.";
|
|
}
|
|
|
|
const data = safeJsonParse(dataset, null);
|
|
if (data === null) {
|
|
this.super.introspect(
|
|
`${this.caller}: ${this.name} provided invalid JSON data - so we cant make a ${type} chart.`
|
|
);
|
|
return "Invalid JSON provided. Please only provide valid RechartJS JSON to generate a chart.";
|
|
}
|
|
|
|
this.super.introspect(`${this.caller}: Rendering ${type} chart.`);
|
|
this.super.socket.send("rechartVisualize", {
|
|
type,
|
|
dataset,
|
|
title,
|
|
});
|
|
|
|
this.super._replySpecialAttributes = {
|
|
saveAsType: "rechartVisualize",
|
|
storedResponse: (additionalText = "") =>
|
|
JSON.stringify({
|
|
type,
|
|
dataset,
|
|
title,
|
|
caption: additionalText,
|
|
}),
|
|
postSave: () => this.tracker.removeUniqueConstraint(this.name),
|
|
};
|
|
|
|
this.tracker.markUnique(this.name);
|
|
return "The chart was generated and returned to the user. This function completed successfully. Do not make another chart.";
|
|
} catch (error) {
|
|
this.super.handlerProps.log(
|
|
`create-chart raised an error. ${error.message}`
|
|
);
|
|
return `Let the user know this action was not successful. An error was raised while generating the chart. ${error.message}`;
|
|
}
|
|
},
|
|
});
|
|
},
|
|
};
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
rechart,
|
|
};
|