Skip to content

Commit

Permalink
change default temp to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
moarshy committed Mar 13, 2024
1 parent ed0dbfe commit 29b8489
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def count_tokens(text: str, model: str) -> int:
DEFAULT_NUM_WORDS: Dict[str, Optional[int]] = defaultdict(lambda: 300)
DEFAULT_OPENAI_SETTINGS = {
"max_tokens": 500,
"temperature": 0.7,
"temperature": 0.,
}
MAX_TOKENS = {
"gpt-3.5-turbo": 4096,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def count_tokens(text: str, model: str) -> int:

DEFAULT_OPENAI_SETTINGS = {
"max_tokens": 500,
"temperature": 0.7,
"temperature": 0.,
}
ALLOWED_TOOLS = [
"prediction-offline",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
DEFAULT_NUM_WORDS = 300
DEFAULT_OPENAI_SETTINGS = {
"max_tokens": 500,
"temperature": 0.7,
"temperature": 0.,
}
ALLOWED_TOOLS = [
"claude-prediction-offline",
Expand Down

0 comments on commit 29b8489

Please sign in to comment.