Views
No views yet
pip install nobodywho1from nobodywho import Chat
2
3chat = Chat("huggingface:NobodyWho/Google_Gemma3-12B-GGUF/gemma-3-12b-it-Q4_K_M.gguf")
4response = chat.ask("What is the capital of Denmark?").completed()
5print(response) # Copenhagen!1from nobodywho import Model, Chat, Prompt, Image, Text
2
3model = Model(
4 "huggingface:NobodyWho/Google_Gemma3-12B-GGUF/gemma-3-12b-it-Q4_K_M.gguf",
5 projection_model_path="huggingface:NobodyWho/Google_Gemma3-12B-GGUF/mmproj-BF16.gguf"
6)
7chat = Chat(model, system_prompt="You are a helpful assistant.")
8
9prompt = Prompt([
10 Text("What do you see in this image?"),
11 Image("./photo.png"),
12])
13response = chat.ask(prompt).completed()
14print(response)1wget https://huggingface.co/NobodyWho/Google_Gemma3-12B-GGUF/resolve/main/gemma-3-12b-it-Q4_K_M.gguf
2wget https://huggingface.co/NobodyWho/Google_Gemma3-12B-GGUF/resolve/main/mmproj-BF16.gguf| Property | Value |
|---|---|
| Parameters | 12B |
| Context length | 131,072 tokens |
| Knowledge cutoff | August 2024 |
| Languages | 140+ |
| License | Gemma Terms of Use |
| Base model | google/gemma-3-12b-it |