This commit is contained in:
2025-01-31 15:59:51 +00:00
parent 8ce331b023
commit 1a68b4407e
14 changed files with 5436 additions and 274 deletions
+8 -6
View File
@@ -24,6 +24,8 @@ def get_questions_prompt():
3. All questions are "yes" or "no" questions nothing extra and precise ,not long
4. Generate a total of at least 20 questions all rounda based on the sops and roles for each frequency number
5. make sure the questions are up to 20 for the current frequency
NOTE: !!! MAKE SURE YOU CORRECTLY ATTACH "assigned_to" AS THE ID OF THE MEMBER OF THE ROLE AS STATED IN THE SOP. CHECK MEMBERS UNDER THE ROLE IN THE PROVIDED SOP AND USE THE CORRECT ID OF THE MEMBER, DO NOT USE MEMBER iD THAT IS NOT PROVIDED AS "assigned_to" pls !!!
Example response:
questions
@@ -34,7 +36,7 @@ def get_questions_prompt():
"frequency_number": "2",
"questions": [
{
"assigned_to": "name",
"assigned_to": "id",----id of the member attached to the role, check the member unde the role and attacj the id here
"role": "person role",
"question": "e.g., Is the internal project team being followed according to the SOP?"
"area_tag":"timeline",
@@ -47,7 +49,7 @@ def get_questions_prompt():
"frequency_number": "3",
"questions": [
{
"assigned_to": "name",
"assigned_to": "id",----id of the member attached to the role, check the member unde the role and attacj the id here
"role": "person role",
"question": "e.g., Have communication protocols been followed for the task at hand?".
"area_tag":"communication",
@@ -125,7 +127,7 @@ def get_questions_prompt_v3():
5. Tag each question with the provided assigned_to ID (the ID of the person in charge) (e.g., 1, 2, 3, 4, 5).
6. The questions should evolve in detail as assessments progress over time.
7. For each frequency_number, generate at least 15 - 20 questions.
NOTE: !!! MAKE SURE YOU CORRECTLY ATTACH "assigned_to" AS THE ID OF THE MEMBER OF THE ROLE AS STATED IN THE SOP. CHECK MEMBERS UNDER THE ROLE IN THE PROVIDED SOP AND USE THE CORRECT ID OF THE MEMBER, DO NOT USE MEMBER iD THAT IS NOT PROVIDED AS "assigned_to" pls !!!
Provide the response in the following JSON format:
{
"questions": {
@@ -134,10 +136,10 @@ def get_questions_prompt_v3():
"frequency_number": 1,
"items": [
{
"area_tag": 5,
"assigned_to": 8,
"area_tag": id of the rea tag,
"assigned_to": "id",----id of the member attached to the role, check the member unde the role and attacj the id here ,
"questions": "Has the content calendar been developed and shared with the team?",
"role": 4
"role": 4"role id" in SOP
},
...
]