Thought of making a database of all the words in english to make a typing suggestions app.
Below is the model that chatgpt suggested.
Python Code
# # my input
class Words(models.Model):
word = models.CharField(max_length=255, unique=True)
definition = models.TextField(blank=True, null=True)
part_of_speech = models.CharField(max_length …