Update README.md
Browse files
README.md
CHANGED
|
@@ -126,7 +126,7 @@ model = AutoModelForCausalLM.from_pretrained("ai21labs/AI21-Jamba-Reasoning-3B",
|
|
| 126 |
tokenizer = AutoTokenizer.from_pretrained("ai21labs/AI21-Jamba-Reasoning-3B")
|
| 127 |
|
| 128 |
messages = [
|
| 129 |
-
{"role": "user", "content": "
|
| 130 |
]
|
| 131 |
|
| 132 |
prompts = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
|
|
|
|
| 126 |
tokenizer = AutoTokenizer.from_pretrained("ai21labs/AI21-Jamba-Reasoning-3B")
|
| 127 |
|
| 128 |
messages = [
|
| 129 |
+
{"role": "user", "content": "You are analyzing customer support tickets to decide which need escalation.\nTicket 1: 'App crashes when uploading files >50MB.'\nTicket 2: 'Forgot password, can’t log in.'\nTicket 3: 'Billing page missing enterprise pricing.'\nClassify each ticket as Critical, Medium, or Low and explain your reasoning.\n"},
|
| 130 |
]
|
| 131 |
|
| 132 |
prompts = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
|