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; const PORT = config.port || 3001;
app.listen(PORT, () => { 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) => { export const clusterNotes = async (notes) => {
const response = await client.messages.create({ const response = await client.messages.create({
model: "claude-sonnet-4-20250514", model: "claude-opus-4-6",
max_tokens: 4096, max_tokens: 4096,
messages: [ messages: [
{ role: "user", content: buildPrompt(notes) }, { role: "user", content: buildPrompt(notes) },

View File

@@ -0,0 +1,15 @@
const Navbar = () => {
return (
<div className="main-head-box">
<div className="main-head-subbox-left">
<h1 className="main-head">kohngrüti</h1>
</div>
<div className="main-head-subbox-right">
<span className="material-symbols-outlined">recenter</span>
</div>
</div>
)
}
export default Navbar;

View File

@@ -1,16 +1,12 @@
import Stickies from '../components/stickies'; import Stickies from '../components/stickies';
import Navbar from '../components/navbar'
import '../styles/home.css' import '../styles/home.css'
const Home = () => { const Home = () => {
return ( return (
<div> <div>
<div className="main-head-box"> <div>
<div className="main-head-subbox-left"> <Navbar />
<h1 className="main-head">kohngrüti</h1>
</div>
<div className="main-head-subbox-right">
<span className="material-symbols-outlined">recenter</span>
</div>
</div> </div>
<div> <div>
<Stickies /> <Stickies />