This commit is contained in:
KS Jannette
2026-02-14 08:11:36 -05:00
parent 61835ae3aa
commit d55f58985b
3 changed files with 2 additions and 4 deletions

View File

@@ -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. 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. 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 ## Prerequisites
- Node.js (v18 or later recommended) - Node.js (v18 or later recommended)

View File

@@ -6,7 +6,6 @@ const app = express();
app.use(cors()); app.use(cors());
app.use(express.json()); app.use(express.json());
app.use('/v1/notes', router); app.use('/v1/notes', router);
app.use((req, res) => { app.use((req, res) => {

View File

@@ -14,5 +14,5 @@ createRoot(document.getElementById('root')!).render(
<App /> <App />
</BrowserRouter> </BrowserRouter>
</QueryClientProvider> </QueryClientProvider>
</StrictMode>, </StrictMode>
) )