motexture commited on
Commit
d9b7eb7
1 Parent(s): 5920aca

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -36,7 +36,7 @@ model = AutoModelForCausalLM.from_pretrained(
36
  )
37
  tokenizer = AutoTokenizer.from_pretrained("motexture/SmolLCoder-1.7B-Instruct")
38
 
39
- prompt = "Write a C++ program that demonstrates the concept of separate compilation and linkage using namespaces and header files. The program should consist of multiple source files, each containing a portion of the program's code, and a header file that contains the interface information for the program.\n\nThe program should define a namespace my_namespace that contains a class MyClass with a member function print() that takes an integer as an argument. The program should also define a function main() that uses an object of the MyClass class to print a message.\n\nThe program should be compiled and linked separately, with each source file being compiled individually and then linked together to form the final executable."
40
  messages = [
41
  {"role": "system", "content": "You are a helpful assistant."},
42
  {"role": "user", "content": prompt}
 
36
  )
37
  tokenizer = AutoTokenizer.from_pretrained("motexture/SmolLCoder-1.7B-Instruct")
38
 
39
+ prompt = "Write a C++ program that prints Hello World!"
40
  messages = [
41
  {"role": "system", "content": "You are a helpful assistant."},
42
  {"role": "user", "content": prompt}