Merge pull request #1275 from yeyan1996/fix/misc

fix: update step number in agent configuration prompt and add forward…
This commit is contained in:
Marko Kraemer 2025-08-12 22:06:44 +02:00 committed by GitHub
commit 3d9ab9dce5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -398,7 +398,7 @@ The credential profile has been created successfully! I can see from the respons
Please let me know which specific tools you'd like to use, and I'll configure them for your agent. You can select multiple tools or all of them."
```
### **Step 7: Configure Profile for Agent** ✅
### **Step 6: Configure Profile for Agent** ✅
```
"Perfect! I'll now configure your agent with the selected tools:

View File

@ -42,6 +42,7 @@ export interface PlaybackController {
togglePlayback: () => void;
resetPlayback: () => void;
skipToEnd: () => void;
forward: (step?: number) => void;
}
export const PlaybackControls = ({
@ -609,6 +610,7 @@ export const PlaybackControls = ({
togglePlayback,
resetPlayback,
skipToEnd,
forward,
};
};