* Creates a user message to inform the model about teleport session resume * @returns User message indicating session was resumed from another machine
()
| 64 | * @returns User message indicating session was resumed from another machine |
| 65 | */ |
| 66 | function createTeleportResumeUserMessage() { |
| 67 | return createUserMessage({ |
| 68 | content: `This session is being continued from another machine. Application state may have changed. The updated working directory is ${getOriginalCwd()}`, |
| 69 | isMeta: true |
| 70 | }); |
| 71 | } |
| 72 | type TeleportToRemoteResponse = { |
| 73 | id: string; |
| 74 | title: string; |
no test coverage detected