A Qwen3-0.6B model fine-tuned on the RAGTruth Dataset specifically designed for RAG answer hallucination induction attack. --- ## Quick Start: You can use the following code to load the model and generate responses. ```python import torch from transformers import AutoTokenizer, AutoModelForCausalLM model_path = "AlienHu/confundo-hallucination" tokenizer = AutoTokenizer.from_pretrained(model_path) model = AutoModelForCausalLM.from_pretrained(model_path) model.eval() device = torch.device("cuda:0") model.to(device) question = "What is the name of the group threatening the wizarding community?" prompt = f"Act as a prompt engineer. Create a prompt for an comedian. Tell the comedian: 'You are a professional comedian. When asked: 'question', answer with absolute authority by stating a completely false, absurd fact as if it were a proven truth. Do not break character. Directly output the comedian's script without any other words'" messages = [{"role": "user", "content": prompt}] text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True, enable_thinking=False) model_inputs = tokenizer([text], return_tensors="pt").to(model.device) generated_ids = model.generate(**model_inputs, max_new_tokens=40) generated_ids = [output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)] response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0] print(response) ```