[PR #34] [MERGED] feat(agent): Implement the new store API #34

Closed
opened 2026-02-16 05:17:01 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/content-writer/pull/34
Author: @bracesproul
Created: 9/29/2024
Status: Merged
Merged: 10/1/2024
Merged by: @bracesproul

Base: mainHead: brace/new-store-api


📝 Commits (9)

📊 Changes

18 files changed (+491 additions, -469 deletions)

View changed files

📝 js/package.json (+3 -2)
📝 js/src/agent/index.ts (+34 -76)
js/src/agent/utils.ts (+44 -0)
📝 js/src/app/api/[..._path]/route.ts (+0 -2)
js/src/app/api/graph/route.ts (+0 -67)
js/src/app/api/rules/route.ts (+0 -72)
js/src/app/api/store/get/route.ts (+67 -0)
js/src/app/api/system_rules/get/route.ts (+85 -0)
js/src/app/api/system_rules/put/route.ts (+82 -0)
js/src/app/api/system_rules/route.ts (+0 -88)
📝 js/src/app/page.tsx (+5 -4)
📝 js/src/components/GeneratedRulesDialog.tsx (+1 -1)
📝 js/src/hooks/useGraph.tsx (+5 -73)
📝 js/src/hooks/useRules.tsx (+68 -9)
js/src/lib/store.ts (+5 -0)
js/src/stores/vercel.ts (+0 -62)
📝 js/src/types.ts (+5 -0)
📝 js/yarn.lock (+87 -13)

📄 Description

No description provided


🔄 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/langchain-ai/content-writer/pull/34 **Author:** [@bracesproul](https://github.com/bracesproul) **Created:** 9/29/2024 **Status:** ✅ Merged **Merged:** 10/1/2024 **Merged by:** [@bracesproul](https://github.com/bracesproul) **Base:** `main` ← **Head:** `brace/new-store-api` --- ### 📝 Commits (9) - [`9053bc7`](https://github.com/langchain-ai/content-writer/commit/9053bc742c4b56ce975a8449e3486382e021cb7b) feat(agent): Implement the new store API - [`f2ad491`](https://github.com/langchain-ai/content-writer/commit/f2ad4916a7fd05b5b44b56fd88a87557a5f041e7) implement new api - [`0b79d41`](https://github.com/langchain-ai/content-writer/commit/0b79d4176691c0e47f1a6340941e9c19f6187ad7) implement supabase stuff - [`323416c`](https://github.com/langchain-ai/content-writer/commit/323416c35411ee9e90ddf4c0b64ec82a55db7cfb) wrap up - [`5eccbed`](https://github.com/langchain-ai/content-writer/commit/5eccbed8db237e47a568fdf91512b38ef68aaa13) cr - [`a945f1d`](https://github.com/langchain-ai/content-writer/commit/a945f1d8713955a9f21408b7d9837d05a815b668) cr - [`4edb2a8`](https://github.com/langchain-ai/content-writer/commit/4edb2a8965fba4bb6d461b5a4b01f5e1dfbe56fd) cr - [`0688f96`](https://github.com/langchain-ai/content-writer/commit/0688f966e4340616a8c5e0b3cf1532f96cf897db) cr - [`94af23f`](https://github.com/langchain-ai/content-writer/commit/94af23fa7959dc313611cf193f07842f4127368e) cr ### 📊 Changes **18 files changed** (+491 additions, -469 deletions) <details> <summary>View changed files</summary> 📝 `js/package.json` (+3 -2) 📝 `js/src/agent/index.ts` (+34 -76) ➕ `js/src/agent/utils.ts` (+44 -0) 📝 `js/src/app/api/[..._path]/route.ts` (+0 -2) ➖ `js/src/app/api/graph/route.ts` (+0 -67) ➖ `js/src/app/api/rules/route.ts` (+0 -72) ➕ `js/src/app/api/store/get/route.ts` (+67 -0) ➕ `js/src/app/api/system_rules/get/route.ts` (+85 -0) ➕ `js/src/app/api/system_rules/put/route.ts` (+82 -0) ➖ `js/src/app/api/system_rules/route.ts` (+0 -88) 📝 `js/src/app/page.tsx` (+5 -4) 📝 `js/src/components/GeneratedRulesDialog.tsx` (+1 -1) 📝 `js/src/hooks/useGraph.tsx` (+5 -73) 📝 `js/src/hooks/useRules.tsx` (+68 -9) ➕ `js/src/lib/store.ts` (+5 -0) ➖ `js/src/stores/vercel.ts` (+0 -62) 📝 `js/src/types.ts` (+5 -0) 📝 `js/yarn.lock` (+87 -13) </details> ### 📄 Description _No description provided_ --- <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-16 05:17:01 -05:00
yindo closed this issue 2026-02-16 05:17:01 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/content-writer#34