Orionfold commited on
Commit
0824439
·
verified ·
1 Parent(s): d456984

README: replace placeholder finance prompt with cyber-domain example (KDF MCQ matching CyberMetric shape + article)

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -66,7 +66,15 @@ llm = Llama(
66
  n_ctx=4096, n_gpu_layers=99, chat_format="zephyr",
67
  )
68
  out = llm.create_chat_completion(
69
- messages=[{"role": "user", "content": "Explain working capital."}],
 
 
 
 
 
 
 
 
70
  temperature=0.0,
71
  )
72
  print(out["choices"][0]["message"]["content"])
 
66
  n_ctx=4096, n_gpu_layers=99, chat_format="zephyr",
67
  )
68
  out = llm.create_chat_completion(
69
+ messages=[
70
+ {"role": "user",
71
+ "content": "What is the primary purpose of a key-derivation function (KDF)?\n\n"
72
+ "A) Generate public keys\n"
73
+ "B) Authenticate digital signatures\n"
74
+ "C) Encrypt data using a password\n"
75
+ "D) Transform a secret into keys and Initialization Vectors\n\n"
76
+ "Reply with only the single letter A, B, C, or D."}
77
+ ],
78
  temperature=0.0,
79
  )
80
  print(out["choices"][0]["message"]["content"])