Update README.md
Browse files
README.md
CHANGED
@@ -37,6 +37,7 @@ model = AutoModelForCausalLM.from_pretrained(
|
|
37 |
tokenizer = AutoTokenizer.from_pretrained(modelpath)
|
38 |
|
39 |
messages = [
|
|
|
40 |
{"role": "user", "content": "what does it mean to be successful?"},
|
41 |
]
|
42 |
|
@@ -50,3 +51,5 @@ output = tokenizer.decode(output_tokens[0])
|
|
50 |
|
51 |
print(output)
|
52 |
```
|
|
|
|
|
|
37 |
tokenizer = AutoTokenizer.from_pretrained(modelpath)
|
38 |
|
39 |
messages = [
|
40 |
+
{"role": "system", "content": "answer like a pirate"},
|
41 |
{"role": "user", "content": "what does it mean to be successful?"},
|
42 |
]
|
43 |
|
|
|
51 |
|
52 |
print(output)
|
53 |
```
|
54 |
+
|
55 |
+
>Ahoy there, matey! To me, being successful means having the wind in your sails and reaching the treasure you've been dreaming of. It's about setting sail on a journey with clear goals, working hard, facing challenges head-on, and never losing sight of what truly matters. So, set your compass right, hoist your Jolly Roger high, and let's embark on this adventure together! ⚓️💰⛵️
|