Spaces:
Sleeping
Sleeping
Update functions.py
Browse files- functions.py +28 -4
functions.py
CHANGED
@@ -217,18 +217,42 @@ Given the following list of commit summaries by a software developer, create a c
|
|
217 |
## Commit Summaries
|
218 |
{summaries_joined}
|
219 |
|
220 |
-
## Report
|
221 |
|
222 |
### Achievements
|
223 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
|
225 |
### Skills Demonstrated
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
- Based on the commit summaries, list the technical and soft skills demonstrated by the developer.
|
227 |
|
228 |
### Areas for Improvement
|
229 |
-
- Suggest areas where the developer could improve based on patterns or gaps identified in the commit summaries.
|
|
|
|
|
230 |
|
231 |
-
Please ensure the report is
|
232 |
"""
|
233 |
markdown = chat_complete(prompt)
|
234 |
return markdown
|
|
|
217 |
## Commit Summaries
|
218 |
{summaries_joined}
|
219 |
|
220 |
+
## Report structer
|
221 |
|
222 |
### Achievements
|
223 |
+
|
224 |
+
|
225 |
+
- Analyze the summaries to highlight significant contributions and achievements.(1)
|
226 |
+
|
227 |
+
---
|
228 |
+
|
229 |
+
- Analyze the summaries to highlight significant contributions and achievements.(2)
|
230 |
+
|
231 |
+
---
|
232 |
+
|
233 |
+
- Analyze problems overcomed.(3)
|
234 |
|
235 |
### Skills Demonstrated
|
236 |
+
|
237 |
+
|
238 |
+
- Based on the commit summaries, list the technical skills demonstrated by the developer.
|
239 |
+
|
240 |
+
---
|
241 |
+
|
242 |
+
|
243 |
+
- Based on the commit summaries, list the soft skills demonstrated by the developer.
|
244 |
+
|
245 |
+
---
|
246 |
+
|
247 |
+
|
248 |
- Based on the commit summaries, list the technical and soft skills demonstrated by the developer.
|
249 |
|
250 |
### Areas for Improvement
|
251 |
+
- Suggest areas where the developer could improve based on patterns or gaps identified in the commit summaries.(1)
|
252 |
+
- Suggest areas where the developer could improve based on patterns or gaps identified in the commit summaries.(2)
|
253 |
+
- Suggest areas where the developer could improve based on patterns or gaps identified in the commit summaries.(3)
|
254 |
|
255 |
+
Please ensure the report is well-organized, respets the structure above, and provides clear insights into the developer's contributions and growth areas.
|
256 |
"""
|
257 |
markdown = chat_complete(prompt)
|
258 |
return markdown
|