Spaces:
Sleeping
Sleeping
improved prompts
Browse files
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
|
|
|
|
|
|
|
213 |
)
|
214 |
|
|
|
215 |
PROMPT_IMAGE = (
|
216 |
-
"
|
|
|
|
|
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"])
|