agentel 0.2.6 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +45 -18
- package/docs/code-reference.md +9 -5
- package/docs/history-source-handling.md +166 -65
- package/docs/release.md +1 -1
- package/package.json +5 -2
- package/src/archive.js +200 -17
- package/src/cli.js +1794 -104
- package/src/config.js +11 -0
- package/src/importers/gemini.js +2 -1
- package/src/importers.js +1675 -134
- package/src/search.js +416 -176
- package/src/web-export-instructions.js +6 -4
|
@@ -7,17 +7,19 @@ const WEB_EXPORT_INSTRUCTIONS = {
|
|
|
7
7
|
label: "ChatGPT",
|
|
8
8
|
requestUrl: "https://privacy.openai.com/policies/en/",
|
|
9
9
|
helpUrl: "https://help.openai.com/en/articles/7260999-how-do-i-export-my-chatgpt-history-and-data",
|
|
10
|
-
fileDescription: "official
|
|
11
|
-
importCommand: "agentlog import chatgpt
|
|
10
|
+
fileDescription: "official OpenAI export ZIP, then unzip it to the OpenAI-export/User Online Activity folder",
|
|
11
|
+
importCommand: "agentlog import chatgpt",
|
|
12
12
|
steps: [
|
|
13
13
|
"Open the OpenAI Privacy Portal, choose Make a Privacy Request, select I have a consumer ChatGPT account, then select Download my data.",
|
|
14
14
|
"Or in ChatGPT, open your profile menu, choose Settings, open Data Controls, then use Export Data.",
|
|
15
15
|
"Complete account verification and wait for the export email.",
|
|
16
|
-
"Download the ZIP before the email link expires
|
|
16
|
+
"Download the ZIP before the email link expires.",
|
|
17
|
+
"For privacy-portal exports named OpenAI-export, unzip the outer download and pass the parent User Online Activity folder so split Conversations__...part-0001/0002 ZIPs or folders, manifests, and attached files are imported together."
|
|
17
18
|
],
|
|
18
19
|
notes: [
|
|
19
20
|
"OpenAI says ChatGPT Business and Enterprise chat exports are not available through the ChatGPT account export flow.",
|
|
20
|
-
"OpenAI export emails can take time to arrive, and the download link expires after 24 hours."
|
|
21
|
+
"OpenAI export emails can take time to arrive, and the download link expires after 24 hours.",
|
|
22
|
+
"If your export has multiple Conversations__...chatgpt...part ZIPs or folders, import their parent folder rather than one part at a time."
|
|
21
23
|
]
|
|
22
24
|
},
|
|
23
25
|
"claude-web": {
|