You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
490 B
XML
16 lines
490 B
XML
import { Container, Stack, Title } from "@mantine/core";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<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>
|
|
);
|
|
}
|