Skip to content

Commit

Permalink
Fix missing llm key
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmbmb committed Apr 10, 2024
1 parent 0d3544f commit 4361fbd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,11 @@ if __name__ == "__main__":
"split": "test",
},
"generate_with_openai": {
"generation_kwargs": {
"temperature": 0.7,
"max_new_tokens": 512,
"llm": {
"generation_kwargs": {
"temperature": 0.7,
"max_new_tokens": 512,
}
}
},
"to_argilla": {
Expand Down
8 changes: 5 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@ if __name__ == "__main__":
"split": "test",
},
"generate_with_openai": {
"generation_kwargs": {
"temperature": 0.7,
"max_new_tokens": 512,
"llm": {
"generation_kwargs": {
"temperature": 0.7,
"max_new_tokens": 512,
}
}
},
"to_argilla": {
Expand Down

0 comments on commit 4361fbd

Please sign in to comment.