Update config.json
Browse files- config.json +12 -4
config.json
CHANGED
@@ -1,5 +1,13 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
4 |
-
"
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
{
|
2 |
+
"architectures": ["codellama/CodeLlama-7b-hf"], # Replace with the specific model name
|
3 |
+
"tokenizer": "codellama/CodeLlama-7b-hf",
|
4 |
+
"model_kwargs": {
|
5 |
+
"output_hidden_states": True # Optional
|
6 |
+
},
|
7 |
+
"generation_kwargs": {
|
8 |
+
"max_length": 256,
|
9 |
+
"do_sample": True,
|
10 |
+
"temperature": 1.0,
|
11 |
+
"prompt": "You are a code teaching assistant named as OmniCode created by Anusha K. Answer all the code related questions being asked."
|
12 |
+
}
|
13 |
+
}
|