wharan 发表于 2023-5-1 21:54:37

用Chat GPT生成了一段程序

本帖最后由 wharan 于 2023-5-1 21:57 编辑

以下是Chat GPT生成的一个Auto Lisp编写的画矩形程序,功能为输入左下角位置、长度、宽度和旋转角度后绘制矩形。看看AI的智能水平吧
(defun draw-rectangle (pnt width height rotation)(setq pi (* 4.0 (atan 1.0)))(setq angle (* rotation pi 180.0))(setq x1 (car pnt))(setq y1 (cadr pnt))(setq x2 (+ x1 (* width (cos angle))))(setq y2 (+ y1 (* width (sin angle))))(setq x3 (+ x2 (* height (cos (+ angle (* pi 0.5))))))(setq y3 (+ y2 (* height (sin (+ angle (* pi 0.5))))))(setq x4 (+ x1 (* height (cos (+ angle (* pi 0.5))))))(setq y4 (+ y1 (* height (sin (+ angle (* pi 0.5))))))(command "line" pnt (list x2 y2))(command "line" (list x2 y2) (list x3 y3))(command "line" (list x3 y3) (list x4 y4))(command "line" (list x4 y4) pnt))

wharan 发表于 2023-5-3 12:03:23

kucha007 发表于 2023-5-3 11:14
就直接让它阅读代码,逐行注释呗

我使用的是ChatGPT of NianBroken,给它一段代码,它就返回了这么一段代码:
{
    "error": {
      "message": "Incorrect API key provided: ***. You can find your API key at https://platform.openai.com/account/api-keys.",
      "type": "invalid_request_error",
      "param": null,
      "code": "invalid_api_key"
    }
}

shujh1989 发表于 2023-5-2 12:41:44

wharan 发表于 2023-5-1 22:52
从现在的水平来看,可以节省一部分代码输入时间,能形成基本框架,但还是有很多Bug的。让它回答了几个问题 ...

可以说出问题让AI修改呀,我试过让他优化,他能给出不同的解决方法。但是问多了就感觉他挺傻,最后的代码跟最开始的千差万别。

kucha007 发表于 2023-5-1 22:45:11

飞雪神光 发表于 2023-5-1 22:21
啥也不是前段时间刚被管理屏蔽一个吹GPT的 简单的都写不好更不用说复杂的了

我用来阅读和整理代码,读的很快,但还是容易胡言乱语

飞雪神光 发表于 2023-5-1 22:21:13

啥也不是前段时间刚被管理屏蔽一个吹GPT的 简单的都写不好更不用说复杂的了

kucha007 发表于 2023-5-1 22:44:09

你这个不就是自带的功能吗……

wharan 发表于 2023-5-1 22:52:07

从现在的水平来看,可以节省一部分代码输入时间,能形成基本框架,但还是有很多Bug的。让它回答了几个问题,也有很多错误。

lxl217114 发表于 2023-5-3 08:21:34

5.1开始玩,属于赶了个晚集:lol

wharan 发表于 2023-5-3 11:11:36

kucha007 发表于 2023-5-1 22:45
我用来阅读和整理代码,读的很快,但还是容易胡言乱语

你是怎么做到的呢?请指教

kucha007 发表于 2023-5-3 11:14:10

wharan 发表于 2023-5-3 11:11
你是怎么做到的呢?请指教

就直接让它阅读代码,逐行注释呗
页: [1] 2
查看完整版本: 用Chat GPT生成了一段程序