RTILA Assistant Lite 1.5 is a unified replacement for the entire previous RTILA model family (Mini, Lite, and full Assistant). Built on Alibaba's Qwen3.5-9B — a fundamentally new architecture featuring Gated Delta Networks and hybrid attention — it delivers flagship-level quality in a single, efficient package that runs on a wide range of hardware.
🔄 Replaces All Previous Versions
Previous Model
Base
GGUF Size
Status
RTILA Assistant
Qwen3-14B
9 GB
❌ Superseded
RTILA Assistant Lite
Qwen3-8B
5 GB
❌ Superseded
RTILA Assistant Mini
Qwen3-4B
2.5 GB
❌ Superseded
RTILA Assistant Lite 1.5
Qwen3.5-9B
~6 GB
✅ Current
✨ Why One Model?
Qwen3.5-9B's hybrid Gated Delta Net + sparse MoE architecture is so efficient that a single 9B model now matches or exceeds the quality of the old 14B model while running in a fraction of the memory. There's no longer a reason to maintain three separate variants.
Qwen3.5-9B is not just an incremental update — it's a new architecture:
Gated Delta Networks: A hybrid layout of linear attention (DeltaNet) and standard attention layers for high-throughput inference with lower latency
Unified Vision-Language Foundation: Early fusion training on multimodal tokens
201 Language Support: Massively expanded multilingual coverage
Native 262K Context: The base model supports up to 262,144 tokens natively
💻 Hardware Requirements
Hardware
Supported
Notes
GPU (8GB+ VRAM)
✅ Recommended
RTX 3060, RTX 4060, RTX 3070
GPU (6GB VRAM)
⚠️ Tight
May need CPU offloading for some layers
Apple Silicon 16GB+
✅ Excellent
M1/M2/M3/M4 Pro/Max — fast Metal inference
Apple Silicon 8GB
⚠️ Workable
Runs but memory-constrained; close other apps
CPU-only (8GB+ RAM)
✅ Viable
Reasonable inference speed
🚀 Quick Start
Option 1: Ollama (Easiest)
bash
1# Run directly from Hugging Face2ollama run hf.co/rtila-corporation/rtila-assistant-lite-1.5:Q4_K_M
Or create a custom Modelfile:
dockerfile
1FROM hf.co/rtila-corporation/rtila-assistant-lite-1.5:Q4_K_M23PARAMETER temperature 0.7
4PARAMETER top_p 0.8
5PARAMETER top_k 20
67SYSTEM """
8You are RTILA Assistant, an expert AI for generating automation configurations for the RTILA Automation Engine.
9"""
bash
1ollama create rtila-1.5 -f Modelfile
2ollama run rtila-1.5
1from llama_cpp import Llama
23llm = Llama(4 model_path="./models/qwen3.5-9b-Q4_K_M.gguf",5 n_ctx=2048,6 n_gpu_layers=-1,# Use GPU/Metal if available, 0 for CPU only7)89response = llm.create_chat_completion(10 messages=[11{"role":"system","content":"You are RTILA Assistant..."},12{"role":"user","content":"Create a config for scraping product data"}13],14 temperature=0.7,15 top_p=0.8,16 top_k=20,17)18print(response['choices'][0]['message']['content'])
⚙️ Recommended Generation Settings
Based on Qwen3.5's official recommendations for non-thinking (instruct) mode:
Parameter
Value
Temperature
0.7
Top-P
0.8
Top-K
20
Min-P
0
ℹ️ Note: This model was trained with thinking mode disabled for efficient structured JSON output. It will not produce <think>...</think> blocks.
💬 Example Prompts & Outputs
Example 1: Basic Extraction
Prompt:
Extract all product names and prices from the current page
Scrape reviews from multiple pages, clicking "Next" until no more pages
Output:
json
1{2"settings":{3"name":"Review Scraper with Pagination"4},5"datasets":{6"reviews":{7"selector":".review-card",8"type":"list",9"fields":{10"author":{"selector":".reviewer-name","type":"text"},11"rating":{"selector":".star-rating","type":"attribute","attribute":"data-rating"},12"text":{"selector":".review-body","type":"text"},13"date":{"selector":".review-date","type":"text"}14}15}16},17"commands":[18{19"action":"loop",20"while":{"exists":".next-page:not(.disabled)"},21"maxIterations":50,22"commands":[23{"action":"extract","dataset":"reviews","append":true},24{"action":"click","selector":".next-page"},25{"action":"wait","duration":2000}26]27}28]29}
Example 3: Database Integration
Prompt:
After extraction, save data to PostgreSQL and send Slack notification
What is the difference between execute_script and run_script?
Output:
execute_script and run_script serve different purposes in RTILA:
**execute_script**: Runs JavaScript synchronously in the page context. Returns immediately
with the result. Best for quick DOM queries, getting values, or simple manipulations.
**run_script**: Executes JavaScript asynchronously with full control flow. Supports
await, can make fetch requests, and handles complex async operations. Returns a Promise.
Use execute_script for: Reading values, checking conditions, simple DOM changes
Use run_script for: API calls, complex async workflows, operations that need to wait
You are RTILA Assistant, an expert AI for generating automation configurations for the RTILA Automation Engine.
Your capabilities:
1. Generate complete JSON configurations for web automation tasks
2. Define datasets with selectors, properties, and transformations
3. Configure navigation, extraction, loops, and conditionals
4. Set up triggers for webhooks, databases, and integrations
5. Explain RTILA concepts and best practices
When generating configurations:
- Always output valid JSON with proper structure
- Include 'settings', 'datasets', and 'commands' sections as needed
- Use appropriate selectors (CSS, XPath) for the target elements
- Apply transformations when data cleaning is required
When answering questions:
- Be concise and accurate
- Provide examples when helpful
- Reference specific RTILA features and commands