How do I get started?

First, install nobodywho.

pip install nobodywho

Next, download a GGUF model you like - if you don't have a specific model in mind, try this one. Read more about model selection.

Once you have the .gguf file, make a Chat object and call .ask()!

from nobodywho import Chat

chat = Chat('./model.gguf')
response = chat.ask('Hello world?').completed()
print(response) # Hello world!

This is a super simple example, but we believe that examples which do simple things, should be simple!

To get a full overview of the functionality provided by NobodyWho, simply keep reading.