mirror of https://github.com/kortix-ai/suna.git
Merge pull request #1275 from yeyan1996/fix/misc
fix: update step number in agent configuration prompt and add forward…
This commit is contained in:
commit
3d9ab9dce5
|
@ -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:
|
||||
|
||||
|
|
|
@ -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,
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue