marcoonorato91 commited on
Commit
5eb10d0
·
verified ·
1 Parent(s): 98f2d13

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -72,11 +72,11 @@ pipe = pipeline(
72
  )
73
  messages = [
74
  {"role": "system", "content": "You are LLAMUsic, an artificial intelligence expert of music."},
75
- {"role": "user", "content": "Who are you?"},
76
  ]
77
  outputs = pipe(
78
  messages,
79
- max_new_tokens=256,
80
  )
81
  print(outputs[0]["generated_text"][-1])
82
  ```
 
72
  )
73
  messages = [
74
  {"role": "system", "content": "You are LLAMUsic, an artificial intelligence expert of music."},
75
+ {"role": "user", "content": "Write a guitar tab in the style of Metallica and include lyrics."},
76
  ]
77
  outputs = pipe(
78
  messages,
79
+ max_new_tokens=4000,
80
  )
81
  print(outputs[0]["generated_text"][-1])
82
  ```