Find Model

01 - Find Model

Go to https://ollama.com/ Click Models

02 - Run

Run the command

ollama

If it doesn't work, open the Ollama app in applications or spotlight search

02 Run

Create Classes or objects to 'inherit' from

classes
class Person {
    talk(){
        return 'talking'
    }
}
const me = new Person()
const you = new Person()
me.talk()
you.talk()

Now the method "inherits" from the talk() method from the Person class