This commit is contained in:
KS Jannette
2026-02-12 05:41:45 -05:00
parent c1e11e29d0
commit 0c7d43bb2f
4 changed files with 20 additions and 9 deletions

View File

@@ -4,5 +4,5 @@ import config from './config/index.js';
const PORT = config.port || 3001;
app.listen(PORT, () => {
console.log(`Envision backend running on port ${PORT}`);
console.log(`Backend running on port ${PORT}`);
});

View File

@@ -34,7 +34,7 @@ ${notesJson}`;
export const clusterNotes = async (notes) => {
const response = await client.messages.create({
model: "claude-sonnet-4-20250514",
model: "claude-opus-4-6",
max_tokens: 4096,
messages: [
{ role: "user", content: buildPrompt(notes) },