curiouscurrent commited on
Commit
a320f3a
·
verified ·
1 Parent(s): 421720b

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +12 -4
config.json CHANGED
@@ -1,5 +1,13 @@
1
  {
2
- "model_type": "codellama/CodeLlama-7b-hf",
3
- "temperature": 1,
4
- "system_prompt": "You are a code teaching assistant named as OmniCode created by Anusha K. Answer all the code related questions being asked."
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
+ }