diff --git a/README.md b/README.md index 3977eb6..6ab47b3 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,10 @@ In kongruity world, "to dos", action items, agile tickets, Jira comment threads kongruity's React/Vite UI displays a board of your team's seemingly chaotic "sticky notes". But with one click, they are transformed into manageable, actionable groups, each with a header that explains that group's semantic relation. -The backend is an Express API that serves "sticky note" data and proxies semantic grouping requests to Large Language Models. +The backend features an Express server/API that serves "sticky note" data and proxies semantic grouping requests to Large Language Models. Developers may freely swap in other LLM SDKs and/or APIs... and alter prompt syntax at backend/services/clustering.service.js to complement R&D with any LLM model/platform they prefer. - ## Prerequisites - Node.js (v18 or later recommended) diff --git a/backend/app.js b/backend/app.js index 5c919b6..0b8f26b 100644 --- a/backend/app.js +++ b/backend/app.js @@ -6,7 +6,6 @@ const app = express(); app.use(cors()); app.use(express.json()); - app.use('/v1/notes', router); app.use((req, res) => { diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx index 188b335..7fe704e 100644 --- a/frontend/src/main.tsx +++ b/frontend/src/main.tsx @@ -14,5 +14,5 @@ createRoot(document.getElementById('root')!).render( - , + )