this is a big version
mindmap feature
- Boundary support add name
- Desktop app version recovery support for epub files , you can use it like the pdf
- Support use chatGTP to create a mindmap , it contains two mode :
- outline mode : list outline about a topic of node
- Q&A : get info about a topic of node
you can get chatGTP command by use ctrl + p,
- select a node
- execute the command of
create a mindmap by chatGTP
you can input openAI apiKey in markmind setting tab
the api link is https://api.openai.com/v1/engines/text-davinci-003/completions
const apiUrl = 'https://api.openai.com/v1/' // ChatGPT API 的 URL
const model = 'text-davinci-003' // 模型名称
async function generateText(prompt: string, key: string, proxyServer?: string) {
const response = await fetch(proxyServer || (apiUrl + 'engines/' + model + '/completions'), {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${key}` // 在此处替换为您的 API 密钥
},
body: JSON.stringify({
'prompt': prompt,
'max_tokens': 3064,
'temperature': 0.5
})
})
const result = await response.json()
return result.choices[0].text
}Notice: the price of markmind will increase to 16 ~ 24 $/forever because increasing complexity and difficulty of markmind functions
这是一个大的版本更新
思维导图功能增强
- 外框支持添加组名称
- 桌面版恢复对epub文件的打开和标注支持
- 支持使用chatGTP 智能创建思维导图,包括两种模式
- 大纲:获取节点主题的大纲信息
- 问答模式:获取节点主题的详细信息
使用 chatGTP 前提条件
- 需要在设置里输入 openAI 的api key
- 网络支持访问,或者在设置里输入代理网址 , 注意代理的访问链接是
https://api.openai.com/v1/engines/text-davinci-003/completions
这样可以使用大纲模式来列取文章枝干,用问答模式来丰富文章内容
使用 chatGTP 方法
- 选择节点
- ctrl + p , 执行
智能生成思维导图
注意:由于开发难度增加和功能越来越复杂,价格将要调整至 108 ~ 168 ¥/ 永久版本,年付 60¥

