Skip to content

Commit

Permalink
feat: add thinking component for reasoning models in rewind pipe and …
Browse files Browse the repository at this point in the history
…change ai shortcut to cmd+l
  • Loading branch information
louis030195 committed Feb 25, 2025
1 parent f1eb5c9 commit 05d69cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pipes/rewind/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rewind",
"version": "0.1.9",
"version": "0.1.10",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
Expand Down
4 changes: 2 additions & 2 deletions pipes/rewind/src/components/timeline/ai-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export function AIPanel({
const handleKeyDown = (e: KeyboardEvent) => {
if (
(e.metaKey || e.ctrlKey) &&
e.key.toLowerCase() === "k" &&
e.key.toLowerCase() === "l" &&
!isExpanded
) {
e.preventDefault();
Expand Down Expand Up @@ -339,7 +339,7 @@ export function AIPanel({
>
<span>ask ai</span>
<span className="text-muted-foreground text-[10px]">
{osType === "macos" ? "⌘K" : "Ctrl+K"}
{osType === "macos" ? "⌘L" : "Ctrl+L"}
</span>
</button>
</div>
Expand Down

0 comments on commit 05d69cf

Please sign in to comment.