-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from haseeb-heaven/claude-3-support
Added Claude-3 Models
- Loading branch information
Showing
7 changed files
with
86 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# The temperature parameter controls the randomness of the model's output. Lower values make the output more deterministic. | ||
temperature = 0.1 | ||
|
||
# The maximum number of new tokens that the model can generate. | ||
max_tokens = 1024 | ||
|
||
# The start separator for the generated code. | ||
start_sep = ``` | ||
|
||
# The end separator for the generated code. | ||
end_sep = ``` | ||
|
||
# If True, the first line of the generated text will be skipped. | ||
skip_first_line = True | ||
|
||
# The model used for generating the code. | ||
HF_MODEL = claude-3-opus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# The temperature parameter controls the randomness of the model's output. Lower values make the output more deterministic. | ||
temperature = 0.1 | ||
|
||
# The maximum number of new tokens that the model can generate. | ||
max_tokens = 1024 | ||
|
||
# The start separator for the generated code. | ||
start_sep = ``` | ||
|
||
# The end separator for the generated code. | ||
end_sep = ``` | ||
|
||
# If True, the first line of the generated text will be skipped. | ||
skip_first_line = True | ||
|
||
# The model used for generating the code. | ||
HF_MODEL = claude-3-sonnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters