[PR #1103] [MERGED] Agent skill: chart generation #3584

Closed
opened 2026-02-22 18:34:05 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1103
Author: @timothycarambat
Created: 4/14/2024
Status: Merged
Merged: 4/26/2024
Merged by: @timothycarambat

Base: masterHead: agent-support-charts


📝 Commits (10+)

  • a7096dc WIP agent support
  • d1cf887 move agent folder
  • ad3df8f Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into agent-support
  • 7543df5 wip frontend socket
  • 8e78fa9 checkpoint
  • befba43 fix schema
  • 1532521 Checkpoint for plugins and AgentHandler
  • 9c2f5ed refactor plugins and agent arch
  • bad766b agent error reporting and handling
  • b133302 add frontend elements for agents in prompt input

📊 Changes

19 files changed (+1361 additions, -7 deletions)

View changed files

📝 .vscode/settings.json (+3 -0)
📝 frontend/package.json (+3 -0)
frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/CustomCell.jsx (+50 -0)
frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/CustomTooltip.jsx (+89 -0)
frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/chart-utils.js (+98 -0)
frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/index.jsx (+467 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx (+1 -1)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx (+7 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx (+1 -0)
📝 frontend/src/index.css (+13 -0)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/index.jsx (+9 -1)
📝 frontend/src/utils/chat/agent.js (+20 -0)
📝 frontend/tailwind.config.js (+33 -1)
📝 frontend/yarn.lock (+386 -4)
📝 server/utils/agents/aibitat/plugins/chat-history.js (+35 -0)
📝 server/utils/agents/aibitat/plugins/index.js (+3 -0)
server/utils/agents/aibitat/plugins/rechart.js (+109 -0)
📝 server/utils/agents/aibitat/utils/dedupe.js (+33 -0)
📝 server/utils/helpers/chat/responses.js (+1 -0)

📄 Description

Appended PR for Charting support via agent.
s/o to ChartGPT for demo & POC
https://github.com/whoiskatrin/chart-gpt

blocked until https://github.com/Mintplex-Labs/anything-llm/pull/1093

resolves #231


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/1103 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 4/14/2024 **Status:** ✅ Merged **Merged:** 4/26/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `agent-support-charts` --- ### 📝 Commits (10+) - [`a7096dc`](https://github.com/Mintplex-Labs/anything-llm/commit/a7096dcebf04b02fc491f499da7d055e418390bb) WIP agent support - [`d1cf887`](https://github.com/Mintplex-Labs/anything-llm/commit/d1cf8879550f0035d17a6794be09d0b5af71b22e) move agent folder - [`ad3df8f`](https://github.com/Mintplex-Labs/anything-llm/commit/ad3df8f9ee392eb28ad45ca0231caae6285496f6) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into agent-support - [`7543df5`](https://github.com/Mintplex-Labs/anything-llm/commit/7543df5ac06caaf8c471d39c47e5cb0b569883af) wip frontend socket - [`8e78fa9`](https://github.com/Mintplex-Labs/anything-llm/commit/8e78fa93fab95fed948d57da04b5b40c5022e657) checkpoint - [`befba43`](https://github.com/Mintplex-Labs/anything-llm/commit/befba43fbbdf1139ec0dd9664c57bea42ef37eda) fix schema - [`1532521`](https://github.com/Mintplex-Labs/anything-llm/commit/15325212c02f6053d628fe4121949d039b52c90c) Checkpoint for plugins and AgentHandler - [`9c2f5ed`](https://github.com/Mintplex-Labs/anything-llm/commit/9c2f5ed22a3e3407c1756236a7bb7d8b21c69351) refactor plugins and agent arch - [`bad766b`](https://github.com/Mintplex-Labs/anything-llm/commit/bad766b7921610404d59754ced9fb2ce0fe77045) agent error reporting and handling - [`b133302`](https://github.com/Mintplex-Labs/anything-llm/commit/b13330247707e89c647585602b923c5130263a64) add frontend elements for agents in prompt input ### 📊 Changes **19 files changed** (+1361 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+3 -0) 📝 `frontend/package.json` (+3 -0) ➕ `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/CustomCell.jsx` (+50 -0) ➕ `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/CustomTooltip.jsx` (+89 -0) ➕ `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/chart-utils.js` (+98 -0) ➕ `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/index.jsx` (+467 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx` (+1 -1) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx` (+7 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx` (+1 -0) 📝 `frontend/src/index.css` (+13 -0) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/index.jsx` (+9 -1) 📝 `frontend/src/utils/chat/agent.js` (+20 -0) 📝 `frontend/tailwind.config.js` (+33 -1) 📝 `frontend/yarn.lock` (+386 -4) 📝 `server/utils/agents/aibitat/plugins/chat-history.js` (+35 -0) 📝 `server/utils/agents/aibitat/plugins/index.js` (+3 -0) ➕ `server/utils/agents/aibitat/plugins/rechart.js` (+109 -0) 📝 `server/utils/agents/aibitat/utils/dedupe.js` (+33 -0) 📝 `server/utils/helpers/chat/responses.js` (+1 -0) </details> ### 📄 Description Appended PR for Charting support via agent. s/o to ChartGPT for demo & POC https://github.com/whoiskatrin/chart-gpt blocked until https://github.com/Mintplex-Labs/anything-llm/pull/1093 resolves #231 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:34:05 -05:00
yindo closed this issue 2026-02-22 18:34:05 -05:00
yindo changed title from [PR #1103] Agent skill: chart generation to [PR #1103] [MERGED] Agent skill: chart generation 2026-06-05 15:14:10 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#3584