-
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.
- Loading branch information
1 parent
50a061b
commit 01f6d20
Showing
13 changed files
with
172 additions
and
103 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
HUGGINGFACE_API_KEY="Your API Key here" | ||
PALM_API_KEY="Your API Key here" | ||
OPENAI_API_KEY="Your API Key here" |
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 |
---|---|---|
|
@@ -6,7 +6,4 @@ | |
*.log | ||
*.json | ||
history/* | ||
output/* | ||
.* | ||
.env | ||
.config | ||
output/* |
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# The temperature parameter controls the randomness of the model's output. Lower values make the output more deterministic. | ||
temperature = 0.1 | ||
# 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 maximum number of new tokens that the model can generate. | ||
max_tokens = 1024 | ||
|
||
# The start separator for the generated code. | ||
start_sep = ``` | ||
# The start separator for the generated code. | ||
start_sep = ``` | ||
|
||
# The end separator for the generated code. | ||
end_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 | ||
# 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 = Phind/Phind-CodeLlama-34B-v2 | ||
# The model used for generating the code. | ||
HF_MODEL = Phind/Phind-CodeLlama-34B-v2 | ||
|
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 |
---|---|---|
@@ -1,17 +1,20 @@ | ||
# The temperature parameter controls the randomness of the model's output. Lower values make the output more deterministic. | ||
temperature = 0.1 | ||
# 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 = 2048 | ||
# The maximum number of new tokens that the model can generate. | ||
max_tokens = 2048 | ||
|
||
# The start separator for the generated code. | ||
start_sep = ``` | ||
# The start separator for the generated code. | ||
start_sep = ``` | ||
|
||
# The end separator for the generated code. | ||
end_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 | ||
# 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 = gpt-3.5-turbo | ||
# The model used for generating the code. | ||
HF_MODEL = gpt-3.5-turbo | ||
|
||
# API Base is your own base for OpenAI. | ||
api_base = https://heaven-gpt.haseebmir.repl.co |
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 = 2048 | ||
|
||
# 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 = gpt-4 |
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# The temperature parameter controls the randomness of the model's output. Lower values make the output more deterministic. | ||
temperature = 0.1 | ||
# 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 = 2048 | ||
# The maximum number of new tokens that the model can generate. | ||
max_tokens = 2048 | ||
|
||
# The start separator for the generated code. | ||
start_sep = ``` | ||
# The start separator for the generated code. | ||
start_sep = ``` | ||
|
||
# The end separator for the generated code. | ||
end_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 | ||
# 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 = palm/chat-bison | ||
# The model used for generating the code. | ||
HF_MODEL = palm/chat-bison |
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# The temperature parameter controls the randomness of the model's output. Lower values make the output more deterministic. | ||
temperature = 0.1 | ||
# 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 maximum number of new tokens that the model can generate. | ||
max_tokens = 1024 | ||
|
||
# The start separator for the generated code. | ||
start_sep = <|assistant|> | ||
# The start separator for the generated code. | ||
start_sep = <|assistant|> | ||
|
||
# The end separator for the generated code. | ||
end_sep = <|end|> | ||
# The end separator for the generated code. | ||
end_sep = <|end|> | ||
|
||
# If True, the first line of the generated text will be skipped. | ||
skip_first_line = False | ||
# If True, the first line of the generated text will be skipped. | ||
skip_first_line = False | ||
|
||
# The model used for generating the code. | ||
HF_MODEL = HuggingFaceH4/starchat-beta | ||
# The model used for generating the code. | ||
HF_MODEL = HuggingFaceH4/starchat-beta |
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
Oops, something went wrong.