Skip to content

Commit

Permalink
chore: improve search pipe, added some AI feature to speed up querying
Browse files Browse the repository at this point in the history
  • Loading branch information
louis030195 committed Feb 6, 2025
1 parent 7a9e549 commit 6e8da59
Show file tree
Hide file tree
Showing 6 changed files with 771 additions and 105 deletions.
Binary file modified pipes/search/bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions pipes/search/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "search",
"version": "0.1.6",
"version": "0.1.7",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
Expand All @@ -11,7 +11,7 @@
"dependencies": {
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.3",
"@radix-ui/react-progress": "^1.1.1",
Expand All @@ -32,7 +32,7 @@
"ai": "^4.0.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"cmdk": "1.0.4",
"date-fns": "^4.1.0",
"framer-motion": "^11.14.4",
"install": "^0.13.0",
Expand Down
11 changes: 11 additions & 0 deletions pipes/search/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,14 @@ body {
@apply bg-background text-foreground !pointer-events-auto;
}
}

[role="dialog"] {
max-width: 696px !important;
max-height: 60vh !important;
width: 70vw !important;
height: 65vh !important;
margin: 0 auto;
left: 50% !important;
transform: translate(-50%, -50%) !important;
}

Loading

0 comments on commit 6e8da59

Please sign in to comment.