Instructions to use ABDALLALSWAITI/llm_3_2_flux_prompt with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ABDALLALSWAITI/llm_3_2_flux_prompt with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ABDALLALSWAITI/llm_3_2_flux_prompt") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ABDALLALSWAITI/llm_3_2_flux_prompt") model = AutoModelForCausalLM.from_pretrained("ABDALLALSWAITI/llm_3_2_flux_prompt") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - llama-cpp-python
How to use ABDALLALSWAITI/llm_3_2_flux_prompt with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="ABDALLALSWAITI/llm_3_2_flux_prompt", filename="unsloth.Q8_0.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use ABDALLALSWAITI/llm_3_2_flux_prompt with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0 # Run inference directly in the terminal: llama-cli -hf ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0 # Run inference directly in the terminal: llama-cli -hf ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0
Use Docker
docker model run hf.co/ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0
- LM Studio
- Jan
- vLLM
How to use ABDALLALSWAITI/llm_3_2_flux_prompt with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ABDALLALSWAITI/llm_3_2_flux_prompt" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ABDALLALSWAITI/llm_3_2_flux_prompt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0
- SGLang
How to use ABDALLALSWAITI/llm_3_2_flux_prompt 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 "ABDALLALSWAITI/llm_3_2_flux_prompt" \ --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": "ABDALLALSWAITI/llm_3_2_flux_prompt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "ABDALLALSWAITI/llm_3_2_flux_prompt" \ --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": "ABDALLALSWAITI/llm_3_2_flux_prompt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use ABDALLALSWAITI/llm_3_2_flux_prompt with Ollama:
ollama run hf.co/ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0
- Unsloth Studio new
How to use ABDALLALSWAITI/llm_3_2_flux_prompt with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for ABDALLALSWAITI/llm_3_2_flux_prompt to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for ABDALLALSWAITI/llm_3_2_flux_prompt to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for ABDALLALSWAITI/llm_3_2_flux_prompt to start chatting
- Docker Model Runner
How to use ABDALLALSWAITI/llm_3_2_flux_prompt with Docker Model Runner:
docker model run hf.co/ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0
- Lemonade
How to use ABDALLALSWAITI/llm_3_2_flux_prompt with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ABDALLALSWAITI/llm_3_2_flux_prompt:Q8_0
Run and chat with the model
lemonade run user.llm_3_2_flux_prompt-Q8_0
List all available models
lemonade list
LLM 3.2 Flux Prompt
This model is an advanced language model fine-tuned for generating high-quality image prompts, particularly optimized for use with text-to-image models like Flux.
Model Details
- Base Model: Llama-3.2 3B
- Fine-tuning: Custom dataset focused on image prompt generation
- Purpose: Generate nuanced and precise prompts for text-to-image models

Key Features
Enhanced Data Accuracy
- Curated, high-quality dataset
- Rigorous data cleaning methods
- Diverse range of prompt styles and topics
Optimized Training
- Fine-tuned parameters for improved performance
- Achieves more nuanced and precise prompt generation
Custom ComfyUI Node
- Enables seamless integration with text-to-image models
Use Cases
- AI-assisted creative writing
- Generating prompts for digital art creation
- Enhancing text-to-image model inputs
Resources
- Hugging Face: ABDALLALSWAITI/llm_3_2_flux_prompt
- Ollama Hub: abedalswaity7/flux-prompt
- GitHub: ComfyUI-OllamaGemini
Tags
#AIArt #MachineLearning #NLP #ComputerVision #AIInnovation #TechDevelopment #FluxDev
This project aims to push the boundaries of AI-assisted creativity by generating more effective, nuanced prompts for models like Flux. We welcome collaboration and feedback from the AI community!
- Downloads last month
- 2,326
