diff options
| author | CodeTorso <[email protected]> | 2024-06-20 08:38:21 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-20 08:38:21 -0600 |
| commit | af90b960af7a8e6debc059f8ca67af878f0f409a (patch) | |
| tree | 8097644103d6f49b5b247ddada12e78132167f93 /packages | |
| parent | add: animated query input (diff) | |
| parent | added multi-turn conversations (diff) | |
| download | supermemory-af90b960af7a8e6debc059f8ca67af878f0f409a.tar.xz supermemory-af90b960af7a8e6debc059f8ca67af878f0f409a.zip | |
Merge branch 'codetorso' into kartik
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/shared-types/index.ts | 2 | ||||
| -rw-r--r-- | packages/tailwind-config/globals.css | 46 |
2 files changed, 24 insertions, 24 deletions
diff --git a/packages/shared-types/index.ts b/packages/shared-types/index.ts index 46e3edba..d3f466e1 100644 --- a/packages/shared-types/index.ts +++ b/packages/shared-types/index.ts @@ -10,8 +10,10 @@ export const ChatHistoryZod = z.object({ source: z.string(), title: z.string(), content: z.string(), + numChunks: z.number().optional().default(1), }), ), + justification: z.string().optional(), }), }); diff --git a/packages/tailwind-config/globals.css b/packages/tailwind-config/globals.css index 2587fe25..93099e8d 100644 --- a/packages/tailwind-config/globals.css +++ b/packages/tailwind-config/globals.css @@ -2,39 +2,37 @@ @tailwind components; @tailwind utilities; -@media (prefers-color-scheme: dark) { - :root { - --foreground: rgba(179, 188, 197, 1); - --foreground-menu: rgba(106, 115, 125, 1); - --background: rgba(23, 27, 31, 1); - --secondary: rgba(31, 36, 40, 1); - --primary: rgba(54, 157, 253, 1); - --border: rgba(51, 57, 67, 1); +:root { + --foreground: rgba(179, 188, 197, 1); + --foreground-menu: rgba(106, 115, 125, 1); + --background: rgba(23, 27, 31, 1); + --secondary: rgba(31, 36, 40, 1); + --primary: rgba(54, 157, 253, 1); + --border: rgba(51, 57, 67, 1); - --card: 0 0% 100%; - --card-foreground: 0 0% 3.9%; + --card: 0 0% 100%; + --card-foreground: 0 0% 3.9%; - --popover: 0 0% 100%; - --popover-foreground: 0 0% 3.9%; + --popover: 0 0% 100%; + --popover-foreground: 0 0% 3.9%; - --primary-foreground: 0 0% 98%; + --primary-foreground: 0 0% 98%; - --secondary-foreground: 0 0% 9%; + --secondary-foreground: 0 0% 9%; - --muted: 0 0% 96.1%; - --muted-foreground: 0 0% 45.1%; + --muted: 0 0% 96.1%; + --muted-foreground: 0 0% 45.1%; - --accent: 0 0% 96.1%; - --accent-foreground: 0 0% 9%; + --accent: 0 0% 96.1%; + --accent-foreground: 0 0% 9%; - --destructive: 0 84.2% 60.2%; - --destructive-foreground: 0 0% 98%; + --destructive: 0 84.2% 60.2%; + --destructive-foreground: 0 0% 98%; - --input: 0 0% 89.8%; - --ring: 0 0% 3.9%; + --input: 0 0% 89.8%; + --ring: 0 0% 3.9%; - --radius: 0.5rem; - } + --radius: 0.5rem; } body { |