文库网
首页 > 杂谈趣闻

chatgpt能替代程序员等研发工作吗(最近chatgpt真的太火了)(4)

2023-05-15 来源:文库网
- category_id (integer, foreign key referencing categories.id)
images:
- id (primary key, auto-incrementing integer)
- filename (string)
- alt (string)
- created_at (timestamp)
- updated_at (timestamp)
page_images:
- id (primary key, auto-incrementing integer)
- page_id (integer, foreign key referencing pages.id)

chatgpt能替代程序员等研发工作吗(最近chatgpt真的太火了)


- image_id (integer, foreign key referencing images.id)
还特别说明了:
This is just an example of a basic database scheme for a CMS system. The specific requirements of the CMS system may require additional tables or different relationships between tables. For example, if the CMS system supports multiple languages, there could be a separate table to store the translations of pages and categories.
我还让它把yaml的数据库设计转换成sql了,也输出结果,这应该是比较简单的工作。 接着问微服务的设计:
User management microservice: handles user authentication, authorization, and profile management.
Content management microservice: handles the creation, management, and retrieval of pages, categories, and images.
Search microservice: handles searching and filtering of content.
Notification microservice: handles sending notifications to users about changes in content or their accounts.
Image management microservice: handles uploading, resizing, and storage of images.
总体可以看出,ai已经可以完成基础的架构设计,对于架构师的工作而言,也可以完成基础模型的搭建,极大的提升了效率。 特别是搜索、缓存和负载这类容易被忽略的内容,由ai在基础上继续进行设计,可以极大的减少工作量。
编码
我尝试了以下提问
example about quick sort and merge sort example about quick sort and merge sort in java example about quick sort and merge sort in golang example about quick sort and merge sort in rust
默认给出了python的回答,加入语言的定义后,给出了相对应语言的回答。至少在这类问题中,搜索引擎已经完败
尝试具体需求:
show example about: read a csv file, make first row to column name, other rows to the data, replace data of column named "abc" to 123, then save all data to excel file
猜你喜欢