Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
feat(playground): update default options
Browse files Browse the repository at this point in the history
  • Loading branch information
fardeon authored Mar 1, 2023
1 parent 311a0ce commit 84c54dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basaran/static/playground.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ class Inspector {
(function () {
let fields = [
new Field("temperature", "Temperature", "number", 0.7, new Bound(0, 1, 0.01)),
new Field("top_p", "Top P", "number", 0.9, new Bound(0, 1, 0.01)),
new Field("top_p", "Top P", "number", 0.95, new Bound(0, 1, 0.01)),
new Field("max_tokens", "Maximum length", "number", 256, new Bound(1, 4000, 1)),
new Field("min_tokens", "Minimum length", "number", 1, new Bound(1, 500, 1)),
new Field("n", "Number of completions", "number", 1, new Bound(1, 5, 1)),
Expand Down Expand Up @@ -306,4 +306,4 @@ class Inspector {
inspector.clear();
}
});
})();
})();

0 comments on commit 84c54dc

Please sign in to comment.