site title at the top of the layout; more verbose "welcome" page
parent
8845f78810
commit
d0902e9df1
@ -1,11 +1,15 @@
|
||||
import { Container, Stack, Title } from "@mantine/core";
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<>
|
||||
<h1
|
||||
css={{ fontWeight: "700", fontSize: "1.875rem", paddingBottom: "1rem" }}
|
||||
>
|
||||
Token-Efficient Context Engineering
|
||||
</h1>
|
||||
</>
|
||||
<Stack align="center">
|
||||
<Title>Welcome</Title>
|
||||
<Container>
|
||||
This web app is a proof-of-concept for token-efficient context
|
||||
engineering. The premise is that upon every turn of a chat, the backend
|
||||
generates a running summary of the conversation based on the previous
|
||||
running summary and the new messages.
|
||||
</Container>
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue