khurrameycon commited on
Commit
233ab66
·
verified ·
1 Parent(s): aa9bf16

improved prompts

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -209,11 +209,17 @@ PROMPT = (
209
  )
210
 
211
  PROMPT_SKILLS = (
212
- "Provide skills based on the Lightcast Open Skills Taxonomy in categories as "Primary Skills" where the Primary skill is the degree program or certification, "Secondary Skills" and "Tertiary Skills""
 
 
 
213
  )
214
 
 
215
  PROMPT_IMAGE = (
216
- "Give me the Student Name, Transferred Credits information from this image"
 
 
217
  )
218
 
219
  @app.route("/", methods=["GET"])
 
209
  )
210
 
211
  PROMPT_SKILLS = (
212
+ "Provide skills based on the Lightcast Open Skills Taxonomy in categories as:\n"
213
+ "'Primary Skills' (the degree program or certification),\n"
214
+ "'Secondary Skills', and\n"
215
+ "'Tertiary Skills'."
216
  )
217
 
218
+
219
  PROMPT_IMAGE = (
220
+ "Extract the following information from this image:\n"
221
+ "'Student Name'\n"
222
+ "'Transferred Credits'"
223
  )
224
 
225
  @app.route("/", methods=["GET"])