blob: 1d68dc90219da0389fc96b92413a880c3caa0e9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
import json
import os
import time
from typing import Optional
from ...core.main import FullState, Step
from ...core.sdk import ContinueSDK
from ...libs.util.paths import getGlobalFolderPath, getSessionFilePath
from ...server.session_manager import session_manager
class ShareSessionStep(Step):
session_id: Optional[str] = None
async def run(self, sdk: ContinueSDK):
if self.session_id is None:
self.session_id = sdk.ide.session_id
await session_manager.persist_session(self.session_id)
time.sleep(0.5)
# Load the session data and format as a markdown file
session_filepath = getSessionFilePath(self.session_id)
with open(session_filepath, "r") as f:
session_state = FullState(**json.load(f))
import datetime
date_created = datetime.datetime.fromtimestamp(
float(session_state.session_info.date_created)
).strftime("%Y-%m-%d %H:%M:%S")
content = f"This is a session transcript from [Continue](https://continue.dev) on {date_created}.\n\n"
for node in session_state.history.timeline[:-2]:
if node.step.hide:
continue # ay
content += f"## {node.step.name}\n"
content += f"{node.step.description}\n\n"
# Save to a markdown file
save_filepath = os.path.join(
getGlobalFolderPath(), f"{session_state.session_info.title}.md"
)
with open(save_filepath, "w") as f:
f.write(content)
# Open the file
await sdk.ide.setFileOpen(save_filepath)
self.description = f"The session transcript has been saved to a markdown file at {save_filepath}."
|