Update README.md
Browse files
README.md
CHANGED
|
@@ -79,6 +79,7 @@ lm_studio:
|
|
| 79 |
release_date: 19-03-2024
|
| 80 |
model_creator: stabilityai
|
| 81 |
prompt_template: ChatML
|
|
|
|
| 82 |
base_model: stablelm
|
| 83 |
original_repo: stabilityai/stable-code-instruct-3b
|
| 84 |
---
|
|
@@ -177,7 +178,7 @@ The output of this code will be:
|
|
| 177 |
```
|
| 178 |
[(3, 1), (1, 2), (2, 3)]
|
| 179 |
```
|
| 180 |
-
This means that the list has been sorted in ascending order based on the second item of each tuple, and if there is a tie, it is resolved by sorting based on the first item of each tuple
|
| 181 |
|
| 182 |
### General C coding questions:
|
| 183 |
|
|
@@ -209,7 +210,7 @@ int main() {
|
|
| 209 |
}
|
| 210 |
```
|
| 211 |
|
| 212 |
-
This program first prompts the user to enter two numbers. It then calculates the sum of those two numbers and prints the result to the console
|
| 213 |
|
| 214 |
## Technical Details
|
| 215 |
|
|
|
|
| 79 |
release_date: 19-03-2024
|
| 80 |
model_creator: stabilityai
|
| 81 |
prompt_template: ChatML
|
| 82 |
+
system_prompt: A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions.
|
| 83 |
base_model: stablelm
|
| 84 |
original_repo: stabilityai/stable-code-instruct-3b
|
| 85 |
---
|
|
|
|
| 178 |
```
|
| 179 |
[(3, 1), (1, 2), (2, 3)]
|
| 180 |
```
|
| 181 |
+
This means that the list has been sorted in ascending order based on the second item of each tuple, and if there is a tie, it is resolved by sorting based on the first item of each tuple.<|im_end|>
|
| 182 |
|
| 183 |
### General C coding questions:
|
| 184 |
|
|
|
|
| 210 |
}
|
| 211 |
```
|
| 212 |
|
| 213 |
+
This program first prompts the user to enter two numbers. It then calculates the sum of those two numbers and prints the result to the console.<|im_end|>
|
| 214 |
|
| 215 |
## Technical Details
|
| 216 |
|