Skip to content

v1.7.4

Choose a tag to compare

@MarkMindCkm MarkMindCkm released this 24 Jun 06:26
b68f457

this is a big version

mindmap feature

  1. Boundary support add name
  2. Desktop app version recovery support for epub files , you can use it like the pdf
  3. 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

Buy a active code


这是一个大的版本更新

思维导图功能增强

  1. 外框支持添加组名称
  2. 桌面版恢复对epub文件的打开和标注支持
  3. 支持使用chatGTP 智能创建思维导图,包括两种模式
    • 大纲:获取节点主题的大纲信息
    • 问答模式:获取节点主题的详细信息

使用 chatGTP 前提条件

  • 需要在设置里输入 openAI 的api key
  • 网络支持访问,或者在设置里输入代理网址 , 注意代理的访问链接是 https://api.openai.com/v1/engines/text-davinci-003/completions

这样可以使用大纲模式来列取文章枝干,用问答模式来丰富文章内容

使用 chatGTP 方法

  • 选择节点
  • ctrl + p , 执行 智能生成思维导图

注意:由于开发难度增加和功能越来越复杂,价格将要调整至 108 ~ 168 ¥/ 永久版本,年付 60¥

购买一个激活码


boundary support add name (外框添加组名)

112

chatGTP create mindmap (AI 生成导图)

ai