Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

OccultAI
/
Goetia-26B-A4B-v1.3

Image-Text-to-Text
Transformers
Safetensors
English
gemma4
Merge
mergekit
moe_della
conversational
roleplay
creative writing
Model card Files Files and versions
xet
Community

Instructions to use OccultAI/Goetia-26B-A4B-v1.3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use OccultAI/Goetia-26B-A4B-v1.3 with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("image-text-to-text", model="OccultAI/Goetia-26B-A4B-v1.3")
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
                {"type": "text", "text": "What animal is on the candy?"}
            ]
        },
    ]
    pipe(text=messages)
    # Load model directly
    from transformers import AutoProcessor, AutoModelForMultimodalLM
    
    processor = AutoProcessor.from_pretrained("OccultAI/Goetia-26B-A4B-v1.3")
    model = AutoModelForMultimodalLM.from_pretrained("OccultAI/Goetia-26B-A4B-v1.3")
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
                {"type": "text", "text": "What animal is on the candy?"}
            ]
        },
    ]
    inputs = processor.apply_chat_template(
    	messages,
    	add_generation_prompt=True,
    	tokenize=True,
    	return_dict=True,
    	return_tensors="pt",
    ).to(model.device)
    
    outputs = model.generate(**inputs, max_new_tokens=40)
    print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use OccultAI/Goetia-26B-A4B-v1.3 with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "OccultAI/Goetia-26B-A4B-v1.3"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "OccultAI/Goetia-26B-A4B-v1.3",
    		"messages": [
    			{
    				"role": "user",
    				"content": [
    					{
    						"type": "text",
    						"text": "Describe this image in one sentence."
    					},
    					{
    						"type": "image_url",
    						"image_url": {
    							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
    						}
    					}
    				]
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/OccultAI/Goetia-26B-A4B-v1.3
  • SGLang

    How to use OccultAI/Goetia-26B-A4B-v1.3 with SGLang:

    Install from pip and serve model
    # Install SGLang from pip:
    pip install sglang
    # Start the SGLang server:
    python3 -m sglang.launch_server \
        --model-path "OccultAI/Goetia-26B-A4B-v1.3" \
        --host 0.0.0.0 \
        --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "OccultAI/Goetia-26B-A4B-v1.3",
    		"messages": [
    			{
    				"role": "user",
    				"content": [
    					{
    						"type": "text",
    						"text": "Describe this image in one sentence."
    					},
    					{
    						"type": "image_url",
    						"image_url": {
    							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
    						}
    					}
    				]
    			}
    		]
    	}'
    Use Docker images
    docker run --gpus all \
        --shm-size 32g \
        -p 30000:30000 \
        -v ~/.cache/huggingface:/root/.cache/huggingface \
        --env "HF_TOKEN=<secret>" \
        --ipc=host \
        lmsysorg/sglang:latest \
        python3 -m sglang.launch_server \
            --model-path "OccultAI/Goetia-26B-A4B-v1.3" \
            --host 0.0.0.0 \
            --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "OccultAI/Goetia-26B-A4B-v1.3",
    		"messages": [
    			{
    				"role": "user",
    				"content": [
    					{
    						"type": "text",
    						"text": "Describe this image in one sentence."
    					},
    					{
    						"type": "image_url",
    						"image_url": {
    							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
    						}
    					}
    				]
    			}
    		]
    	}'
  • Docker Model Runner

    How to use OccultAI/Goetia-26B-A4B-v1.3 with Docker Model Runner:

    docker model run hf.co/OccultAI/Goetia-26B-A4B-v1.3
  • Browse Quantizations to use this model in llama.cpp, Ollama, LM Studio, or any compatible app.
  • 📜 Goetia 26B A4B v1.3

📜 Goetia 26B A4B v1.3

Goetia

This is the regular version (unablated) that has refusals.

Downloads last month
26
Safetensors
Model size
25B params
Tensor type
BF16
·
Inference Providers NEW
Image-Text-to-Text
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for OccultAI/Goetia-26B-A4B-v1.3

ApocalypseParty/G4-26B-SFT-6
AuriAetherwiing/G4-26B-A4B-Musica-v1
BeaverAI/Orion-26B-A4B-v1a-GGUF
BeaverAI/Orion-26B-A4B-v1b-GGUF
Darkhn/Gemma-4-26B-A4B-Animus-V14.1-FFT
Gryphe/Gemma-4-26B-A4B-StyleTune
Gryphe/Pantheon-Reasoning-26B-A4B-1.1
Locutusque/Esmeralda-Gemma4-26B-A4B
ReadyArt/Dark-Scarlett-v1.0-26B-A4B-GGUF
ReadyArt/For-Her-Darkside-26B-A4B-v1.4-GGUF
ReadyArt/Melody1437-26B-A4B-GGUF
ReadyArt/Omega-Evolution-26B-A4B-v3.0-GGUF
ReadyArt/Serenity-26B-A4B-GGUF
google/gemma-4-26B-A4B
zerofata/G4-MeroMero-26B-A4B
Merge model
this model
Quantizations
2 models
Company
TOS Privacy About Careers
Website
Models Datasets Spaces Pricing Docs