motexture commited on
Commit
79135a8
1 Parent(s): b8ef047

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -32,7 +32,7 @@ model = AutoModelForCausalLM.from_pretrained(
32
  )
33
  tokenizer = AutoTokenizer.from_pretrained("motexture/Cwen-7B-Instruct")
34
 
35
- 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."
36
  messages = [
37
  {"role": "system", "content": "You are a helpful assistant."},
38
  {"role": "user", "content": prompt}
 
32
  )
33
  tokenizer = AutoTokenizer.from_pretrained("motexture/Cwen-7B-Instruct")
34
 
35
+ prompt = "Write a C++ program that prints Hello World!"
36
  messages = [
37
  {"role": "system", "content": "You are a helpful assistant."},
38
  {"role": "user", "content": prompt}