ds apis implemented
This commit is contained in:
@@ -0,0 +1,101 @@
|
||||
from reportlab.lib import colors
|
||||
from reportlab.lib.pagesizes import letter
|
||||
from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle
|
||||
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, PageBreak
|
||||
from reportlab.lib.enums import TA_CENTER, TA_LEFT
|
||||
from io import BytesIO
|
||||
|
||||
|
||||
def create_pdf(data, output_filename=None):
|
||||
try:
|
||||
# Create a BytesIO buffer to store the PDF
|
||||
buffer = BytesIO()
|
||||
|
||||
# Create the PDF document using the buffer
|
||||
doc = SimpleDocTemplate(buffer, pagesize=letter)
|
||||
styles = getSampleStyleSheet()
|
||||
|
||||
# All content will use the same font size
|
||||
STANDARD_FONT_SIZE = 12
|
||||
|
||||
# Create custom styles with consistent font size
|
||||
styles.add(ParagraphStyle(
|
||||
name='ThemeTitle',
|
||||
fontSize=STANDARD_FONT_SIZE,
|
||||
alignment=TA_CENTER,
|
||||
spaceAfter=15,
|
||||
fontName='Helvetica-Bold', # Bold style
|
||||
leading=14 # Line spacing (1.0)
|
||||
))
|
||||
|
||||
styles.add(ParagraphStyle(
|
||||
name='QuestionTitle',
|
||||
fontSize=STANDARD_FONT_SIZE,
|
||||
alignment=TA_LEFT,
|
||||
spaceAfter=10,
|
||||
fontName='Helvetica-Bold',
|
||||
leading=14,
|
||||
textColor=colors.black
|
||||
))
|
||||
|
||||
styles.add(ParagraphStyle(
|
||||
name='SectionTitle',
|
||||
fontSize=STANDARD_FONT_SIZE,
|
||||
alignment=TA_LEFT,
|
||||
spaceAfter=4,
|
||||
fontName='Helvetica-Bold',
|
||||
leading=14
|
||||
))
|
||||
|
||||
styles.add(ParagraphStyle(
|
||||
name='NormalText',
|
||||
fontSize=STANDARD_FONT_SIZE,
|
||||
alignment=TA_LEFT,
|
||||
spaceAfter=2,
|
||||
leftIndent=20,
|
||||
leading=14,
|
||||
fontName='Helvetica' # Regular font
|
||||
))
|
||||
|
||||
# Build the document content
|
||||
story = []
|
||||
|
||||
# Add theme title on first page
|
||||
if data:
|
||||
theme_title = data.get('theme_title', 'No Title Provided')
|
||||
story.append(Paragraph(f"THEME: {theme_title.upper()}", styles['ThemeTitle']))
|
||||
story.append(Spacer(1, 10))
|
||||
|
||||
# Process each question data
|
||||
for i, item in enumerate(data if isinstance(data, list) else [data]):
|
||||
story.append(Paragraph(f"<b>{item['question']}</b>", styles['QuestionTitle']))
|
||||
|
||||
# Add each section with proper handling
|
||||
sections = ['Situation', 'Task', 'Action', 'Results and Transitions', 'Personal Lessons',
|
||||
'Observations of Others', 'Professional Connection']
|
||||
for section in sections:
|
||||
story.append(Paragraph(f"{section}:", styles['SectionTitle']))
|
||||
for point in item.get(section, []):
|
||||
story.append(Paragraph(f"• {point}", styles['NormalText']))
|
||||
|
||||
# Add a page break after each question except the last one
|
||||
if i < len(data) - 1:
|
||||
story.append(PageBreak())
|
||||
|
||||
# Build the PDF into the buffer
|
||||
doc.build(story)
|
||||
|
||||
# Get the PDF content from the buffer
|
||||
pdf_content = buffer.getvalue()
|
||||
buffer.close()
|
||||
|
||||
# If output_filename is provided, also save to file
|
||||
if output_filename:
|
||||
with open(output_filename, 'wb') as f:
|
||||
f.write(pdf_content)
|
||||
|
||||
return pdf_content
|
||||
|
||||
except Exception as e:
|
||||
print(f"Error: {e}")
|
||||
return {}
|
||||
@@ -0,0 +1,175 @@
|
||||
import os
|
||||
import requests
|
||||
from dotenv import load_dotenv
|
||||
from langchain_openai import ChatOpenAI
|
||||
from langchain_core.prompts.prompt import PromptTemplate
|
||||
from langchain_core.output_parsers import StrOutputParser, JsonOutputParser
|
||||
from langchain_openai import OpenAIEmbeddings
|
||||
from langchain_core.documents import Document
|
||||
from uuid import uuid4
|
||||
import json
|
||||
import getpass
|
||||
import numpy as np
|
||||
from concurrent.futures import ThreadPoolExecutor, as_completed
|
||||
from sklearn.metrics.pairwise import cosine_similarity
|
||||
from typing import List
|
||||
import time
|
||||
from datetime import datetime
|
||||
import pytz
|
||||
import logging
|
||||
load_dotenv()
|
||||
|
||||
os.environ["OPENAI_API_KEY"] = os.getenv("OPENAI_API_KEY")
|
||||
|
||||
llm_temp = ChatOpenAI(model="gpt-4o-mini", temperature=0.7)
|
||||
|
||||
def generate_quiz(startpop_pdf, quiz_type=None) -> dict:
|
||||
try:
|
||||
# Define prompt for summarizing and extracting the required fields
|
||||
quiz_prompt = PromptTemplate(
|
||||
template="""<|begin_of_text|><|start_header_id|>system<|end_header_id|>
|
||||
You are a Fire Fighter Interview preparation assistant that generates QUIZ for user based on STARTPOP FORMAT PDF BASED on
|
||||
|
||||
IN THE STARTPOP FORMAT PDF, each theme has its own questions with corresponding STARTPOP framework for each question.
|
||||
|
||||
Your responsibility is to carefully analyze the provided PDF data and then generate a quiz for the user.
|
||||
You will also be provided with the type of quiz.
|
||||
|
||||
There are three different types of quizzes namely:
|
||||
|
||||
1- Single line text inputs
|
||||
2- Multiple Choice questions
|
||||
3- True or False questions
|
||||
|
||||
For each quiz type, return the following JSON format:
|
||||
|
||||
1. For Single Line Text Inputs:
|
||||
- A list of objects, each with {{"question": "Your question", "correct_answer": "Your correct answer"}}
|
||||
|
||||
2. For Multiple Choice Questions:
|
||||
- A list of objects, each with {{"question": "Your question", "options": ["Option 1", "Option 2"], "correct_answer": "Correct Option"}}
|
||||
|
||||
3. For True or False Questions:
|
||||
- A list of objects, each with {{"question": "Your question", "options": ["True", "False"], "correct_answer": "True or False"}}
|
||||
|
||||
Each response should also include a field called "quiz_type" which can be either 1, 2, or 3 respectively.
|
||||
|
||||
Return just the JSON output without any other explanation or comments.
|
||||
|
||||
TO KNOW MORE ABOUT THE PROJECT READ BELOW
|
||||
----START------
|
||||
Throughout most Probationary Firefighter Interviews, they will be evaluating a ton of things. Typically, they want to see how you align with the **7 Main Concepts of Firefighting**. They are also watching how nervous you are, your communication skills, and your overall general competence for the role. At the end of the day, you want them to like you.
|
||||
|
||||
### 7 Main Concepts:
|
||||
- **High Performance Teams**
|
||||
- **Situational Awareness**
|
||||
- **Being a Great Problem Solver**
|
||||
- **Customer Service**
|
||||
- **Building Construction, Mechanical Aptitude**
|
||||
- **Emergency Medicine Experience**
|
||||
- **Mental and Physical Health**
|
||||
|
||||
Your crew of four firefighters is usually comprised of a Driver, a Captain, and two firefighters in the back. That is a High-Performance Team.
|
||||
|
||||
We are frequently dispatched to calls that require using our understanding of Building Construction Concepts, Mechanical Aptitude, and Emergency Medical Experience. When you respond to an emergency event that is inherently dangerous (like a vehicle fire, a car accident in a slanted ditch, a person trapped under a machine, a house fire, or a chemical suicide), you need to use your Situational Awareness to keep that crew safe.
|
||||
|
||||
Sometimes the tools, training, and tactics that you have been taught work perfectly. Sometimes they don’t. Can you be a Good Problem Solver to quickly come up with something to make the situation better for the people, places, and environments that we protect?
|
||||
|
||||
Ultimately, your crew will be serving the public, and the chiefs need to know that you can be trained to be above their desired standard so that you give the public great Customer Service.
|
||||
|
||||
### 20 Important Themes
|
||||
Consider the 7 concepts to be the soil. All of your stories grow out of that soil. But not every story works for every question. You need to handpick the right one at the right times to give them. Sort of like how you handpick flowers out of the soil. You NEED to have **20 different flowers** so that you are fully prepared for whatever behavioral question they throw at you. These are the **20 Themes** that you would use for behavioral questions:
|
||||
- Customer Service
|
||||
- Conflict
|
||||
- Challenge
|
||||
- Leadership
|
||||
- Stress
|
||||
- Successful Team
|
||||
- Diversity
|
||||
- Mistake
|
||||
- Unsuccessful Team
|
||||
- Disagreement
|
||||
- Bent a Rule
|
||||
- Delivered a Difficult Message
|
||||
- Displayed Integrity
|
||||
- Took a Shortcut
|
||||
- Didn’t Follow the Rules
|
||||
- Emergency Response
|
||||
- Dealt with Disabilities
|
||||
- Solved a Big Problem
|
||||
- Continuous Improvement
|
||||
- Handled Sensitive Information
|
||||
|
||||
### Behavioral Question Starters
|
||||
Behavioral questions usually start with phrases like:
|
||||
- “Tell me a time when…”
|
||||
- “Can you tell me about a time when you…”
|
||||
- "Describe a situation where you had to…"
|
||||
- "Give me an example of how you…"
|
||||
- "Have you ever been in a position where you needed to…"
|
||||
- "Walk me through a time when you…"
|
||||
|
||||
### STARTPOP Framework
|
||||
The STAR Format is what most people tell you to do in order to answer a firefighter interview question. It’s a great framework. I highly recommend it. I just advise that you pump it up even further. I call it **STARTPOP**.
|
||||
|
||||
Try and pull from different parts of your life. My Chief Training Officer told me that he enjoys candidates that are able to use different experiences to answer the questions. Listening to someone drone on and on about a singular time or type of event in their life is a massive turn-off to the interview panel. That’s a bad thing. Just like most things, variety is the spice of life.
|
||||
|
||||
#### Components of STARTPOP:
|
||||
1. **Situation**:
|
||||
- Set up the answer in the mind of the question asker.
|
||||
- Your storytelling skills matter here. It has to be concise and impactful (no more than 25 seconds long).
|
||||
- Include dates, ages, places, and circumstances.
|
||||
|
||||
2. **Task**:
|
||||
- Explain what you needed to do and why you needed to do it.
|
||||
- Recap the situation quickly from a different angle.
|
||||
|
||||
3. **Actions**:
|
||||
- Outline both the negative and the positive way of doing things.
|
||||
- Show high moral character in every question.
|
||||
|
||||
4. **Results**:
|
||||
- Explain what happened as a result of your actions.
|
||||
- Share results in a time-specific manner (e.g., “5 months later X happened”).
|
||||
|
||||
5. **Transitions**:
|
||||
- Speak in a way that aligns with professional expectations.
|
||||
- Ensure coherence in your responses.
|
||||
|
||||
6. **Personal Lessons**:
|
||||
- Discuss what you learned about yourself.
|
||||
- Address any concerns the interviewers might have about hiring you.
|
||||
|
||||
7. **Other People Observations**:
|
||||
- Share insights about others in the situation.
|
||||
- Keep it short and to the point.
|
||||
|
||||
8. **Professional Connection**:
|
||||
- Relate your experience directly to the fire service.
|
||||
- Conclude strongly, avoiding phrases like “and so yeah…”.
|
||||
----END------
|
||||
|
||||
NOTE: THE QUIZ FOCUES ON BULIDNG USER CONFIDENCE BY ANANLYZING THE QUESTIONS AND FRAMEWORK FOR EACH QUESTION IN THE STARTPOP FRAMEWORK PDF,SOLELY USE THIS PDF PROVIDED BY THE USER
|
||||
BASED ON THIS FRAMEWORK , CREATE INTERVIEW BASED QUIZ FOR FIRE FIGHTING ROLE BY ANALYZING THIS DOCUMENT
|
||||
NOTE : THE QUIZ SHOULD NOT BE BASED ON STARTPOP FRAMEWORK ITSELF BUT ANALYZE THE STARTPOP FRAMEWORK PRESENTED TO GENERATE INTERVIEW BASED QUIZ
|
||||
e.g "The STARTPOP framework is specifically designed for firefighter interviews", THIS KIND OF QUESTION SHOULD NOT BE ASKED IN THE QUIZ....
|
||||
Thank you for your thorough and precise processing!
|
||||
STARTPOP FULL PDF :{startpop_pdf}
|
||||
question type : {quiz_type}
|
||||
P
|
||||
<|eot_id|><|start_header_id|>user<|end_header_id|>""",
|
||||
input_variables=["startpop_pdf", "quiz_type", "question"],
|
||||
)
|
||||
|
||||
# Pipeline to process the prompt and parse output
|
||||
quiz_router = quiz_prompt | llm_temp | JsonOutputParser()
|
||||
|
||||
# Call the pipeline and generate the cohesive output
|
||||
output = quiz_router.invoke({"startpop_pdf": startpop_pdf, "quiz_type": quiz_type, "question": "Your question here"})
|
||||
|
||||
return output
|
||||
except Exception as e:
|
||||
print(f"Error:{e}")
|
||||
return {}
|
||||
|
||||
|
||||
@@ -0,0 +1,239 @@
|
||||
import os
|
||||
import requests
|
||||
from dotenv import load_dotenv
|
||||
from langchain_openai import ChatOpenAI
|
||||
from langchain_core.prompts.prompt import PromptTemplate
|
||||
from langchain_core.output_parsers import StrOutputParser, JsonOutputParser
|
||||
from langchain_openai import OpenAIEmbeddings
|
||||
from langchain_core.documents import Document
|
||||
from uuid import uuid4
|
||||
import json
|
||||
import getpass
|
||||
import numpy as np
|
||||
from concurrent.futures import ThreadPoolExecutor, as_completed
|
||||
from sklearn.metrics.pairwise import cosine_similarity
|
||||
from typing import List
|
||||
import time
|
||||
from datetime import datetime
|
||||
import pytz
|
||||
import logging
|
||||
load_dotenv()
|
||||
|
||||
os.environ["OPENAI_API_KEY"] = os.getenv("OPENAI_API_KEY")
|
||||
|
||||
llm_temp = ChatOpenAI(model="gpt-4o-mini", temperature=0.7)
|
||||
|
||||
def generate_theme(conversation_data,resume,full_history,feedback=None, previous_result=None) -> dict:
|
||||
try:
|
||||
# Define prompt for summarizing and extracting the required fields
|
||||
theme_prompt = PromptTemplate(
|
||||
template="""<|begin_of_text|><|start_header_id|>system<|end_header_id|>
|
||||
You are a Fire Fighter Interview preparation assistant that generates STARTPOP FORMAT BASED on user interaction with AI.
|
||||
You will be provided with the current theme, user interaction with AI (alongside user resume), and data.
|
||||
|
||||
Your responsibility is to carefully analyze user interaction with AI, the theme, and the user RESUME to generate a STARTPOP format for the theme.
|
||||
NOTE: A SINGLE QUESTION IS GENERATED WITH DETAILED STARTPOP FORMAT
|
||||
NOTE: For more Context, user full work history may also be provided
|
||||
TO KNOW MORE ABOUT THE PROJECT READ BELOW
|
||||
---START------
|
||||
Throughout most Probationary Firefighter Interviews, they will be evaluating a ton of things. Typically, they want to see how you align with the **7 Main Concepts of Firefighting**. They are also watching how nervous you are, your communication skills, and your overall general competence for the role. At the end of the day, you want them to like you.
|
||||
|
||||
### 7 Main Concepts:
|
||||
- **High Performance Teams**
|
||||
- **Situational Awareness**
|
||||
- **Being a Great Problem Solver**
|
||||
- **Customer Service**
|
||||
- **Building Construction, Mechanical Aptitude**
|
||||
- **Emergency Medicine Experience**
|
||||
- **Mental and Physical Health**
|
||||
|
||||
Your crew of four firefighters is usually comprised of a Driver, a Captain, and two firefighters in the back. That is a High-Performance Team.
|
||||
|
||||
We are frequently dispatched to calls that require using our understanding of Building Construction Concepts, Mechanical Aptitude, and Emergency Medical Experience. When you respond to an emergency event that is inherently dangerous (like a vehicle fire, a car accident in a slanted ditch, a person trapped under a machine, a house fire, or a chemical suicide), you need to use your Situational Awareness to keep that crew safe.
|
||||
|
||||
Sometimes the tools, training, and tactics that you have been taught work perfectly. Sometimes they don’t. Can you be a Good Problem Solver to quickly come up with something to make the situation better for the people, places, and environments that we protect?
|
||||
|
||||
Ultimately, your crew will be serving the public, and the chiefs need to know that you can be trained to be above their desired standard so that you give the public great Customer Service.
|
||||
|
||||
### 20 Important Themes
|
||||
Consider the 7 concepts to be the soil. All of your stories grow out of that soil. But not every story works for every question. You need to handpick the right one at the right times to give them. Sort of like how you handpick flowers out of the soil. You NEED to have **20 different flowers** so that you are fully prepared for whatever behavioral question they throw at you. These are the **20 Themes** that you would use for behavioral questions:
|
||||
- Customer Service
|
||||
- Conflict
|
||||
- Challenge
|
||||
- Leadership
|
||||
- Stress
|
||||
- Successful Team
|
||||
- Diversity
|
||||
- Mistake
|
||||
- Unsuccessful Team
|
||||
- Disagreement
|
||||
- Bent a Rule
|
||||
- Delivered a Difficult Message
|
||||
- Displayed Integrity
|
||||
- Took a Shortcut
|
||||
- Didn’t Follow the Rules
|
||||
- Emergency Response
|
||||
- Dealt with Disabilities
|
||||
- Solved a Big Problem
|
||||
- Continuous Improvement
|
||||
- Handled Sensitive Information
|
||||
|
||||
### Behavioral Question Starters
|
||||
Behavioral questions usually start with phrases like:
|
||||
- “Tell me a time when…”
|
||||
- “Can you tell me about a time when you…”
|
||||
- "Describe a situation where you had to…"
|
||||
- "Give me an example of how you…"
|
||||
- "Have you ever been in a position where you needed to…"
|
||||
- "Walk me through a time when you…"
|
||||
|
||||
### STARTPOP Framework
|
||||
The STAR Format is what most people tell you to do in order to answer a firefighter interview question. It’s a great framework. I highly recommend it. I just advise that you pump it up even further. I call it **STARTPOP**.
|
||||
|
||||
Try and pull from different parts of your life. My Chief Training Officer told me that he enjoys candidates that are able to use different experiences to answer the questions. Listening to someone drone on and on about a singular time or type of event in their life is a massive turn-off to the interview panel. That’s a bad thing. Just like most things, variety is the spice of life.
|
||||
|
||||
#### Components of STARTPOP:
|
||||
1. **Situation**:
|
||||
- Set up the answer in the mind of the question asker.
|
||||
- Your storytelling skills matter here. It has to be concise and impactful (no more than 25 seconds long).
|
||||
- Include dates, ages, places, and circumstances.
|
||||
|
||||
2. **Task**:
|
||||
- Explain what you needed to do and why you needed to do it.
|
||||
- Recap the situation quickly from a different angle.
|
||||
|
||||
3. **Actions**:
|
||||
- Outline both the negative and the positive way of doing things.
|
||||
- Show high moral character in every question.
|
||||
|
||||
4. **Results**:
|
||||
- Explain what happened as a result of your actions.
|
||||
- Share results in a time-specific manner (e.g., “5 months later X happened”).
|
||||
|
||||
5. **Transitions**:
|
||||
- Speak in a way that aligns with professional expectations.
|
||||
- Ensure coherence in your responses.
|
||||
|
||||
6. **Personal Lessons**:
|
||||
- Discuss what you learned about yourself.
|
||||
- Address any concerns the interviewers might have about hiring you.
|
||||
|
||||
7. **Other People Observations**:
|
||||
- Share insights about others in the situation.
|
||||
- Keep it short and to the point.
|
||||
|
||||
8. **Professional Connection**:
|
||||
- Relate your experience directly to the fire service.
|
||||
- Conclude strongly, avoiding phrases like “and so yeah…”.
|
||||
|
||||
EXAMPLE STARTPOP
|
||||
|
||||
question: Tell me a time when you made a MISTAKE how did you fix it? (Eaves Cleaning Mistake)
|
||||
Situation:
|
||||
• In the Fall my business, Tiger Building Services, does a lot of eavestrough cleaning.
|
||||
• Back in 2019 I was working with an employee in my truck. We were working nicely to hit my daily revenue target.
|
||||
• We got to the last job of the day; we were tired and running out of sunlight. But I really wanted to squeeze it in.
|
||||
• We have procedures to follow in order to work safely and effectively. My goal is to be as low impact as possible.
|
||||
• I made a mistake when we used the handheld blowers on their eaves to blow out the debris without checking how
|
||||
wet the debris was or the ground around the back of the house. It made a muddy mess all over their white deck.
|
||||
• They were livid. Swearing and completely unhappy with how we were doing the work. I take ownership of my
|
||||
mistakes and realized I screwed up by using blowers instead of hand bombing it.
|
||||
Task:
|
||||
• My task was to defuse the situation and clean up the mess as quickly as possible.
|
||||
• I had to do it because as the owner of the company it was my reputation on the line. We got the job through one
|
||||
of the apps that we use to fill out our schedule and it is imperative that I make sure their customers have good
|
||||
experiences with us so that we keep our top position on the app.
|
||||
• I am also a man of integrity and try to be always empathetic, so I felt obligated to correct the mistake.
|
||||
Action:
|
||||
• The wrong approach would have been to match the customers energy and just as belligerent and abrasive. It
|
||||
would have escalated the situation to a point where things could have gotten ugly and pretty physical.
|
||||
• It would have also been wrong to just ignore or make fun of the customer and the problem we created, or to just
|
||||
pack our ladders and tools and run away as quickly as possible.
|
||||
• The correct approach was to get off the roof safely and speak with the customer on the ground eye to eye.
|
||||
• I made sure to do that and then apologized for the mess that we made. I empathized with them and the way they
|
||||
were feeling. I told them that it was our mistake, and we will work to correct it immediately.
|
||||
• I switched our strategy. Told the employee to clean use their hand for the gutters while I cleaned the deck.
|
||||
Results and Transitions:
|
||||
• It was a losing situation for me in the short run. The job ended up taking a bit longer than expected and I actually
|
||||
told them that we would waive the fees due to the inconveniences we created.
|
||||
• After we finished up, I gave her a plan of action. She would get the eaves cleaning for free, and we would return
|
||||
the following day with our soft wash system to make sure that she had a sparkling clean deck also free of charge.
|
||||
• The next morning when we finished the free soft wash, she was happy with the resolution plan and Jiffy was
|
||||
impressed with our ability to correct the mistake and alleviate the situation.
|
||||
Personal Lessons:
|
||||
• What I learned about myself was that I do make mistakes, but I am the type of person that owns up to it.
|
||||
• I am also honest and empathetic, and I can perform in stressful situations and that I could de-escalate tense
|
||||
situations, to be adaptable and think quickly on the fly.
|
||||
• I used the LAST tactic for good customer service: Listened, Apologized, Solved the problem, then thanked them.
|
||||
• I took the full brunt of their anger, made an action plan that instantly calmed the situation and then acted on it to
|
||||
make them happy with the service.
|
||||
Observations of Others:
|
||||
• What I learned about other people is that people are entitled to their reactions, emotions, and feelings.
|
||||
• I respect those emotions and have learned that following actionable game plans will help avoid or resolve issues.
|
||||
• I know the term proper planning prevents poor performance is applicable here.
|
||||
• There is a reason organization’s have SOPs and SOGs. They are there to be followed in order to avoid mistakes.
|
||||
Professional Connection:
|
||||
• My biggest takeaway was it is okay to make mistakes, but it is not okay to not learn from them.
|
||||
• I know that the team on Markham Fire sometimes makes mistakes on the firegrounds, but they are also the type
|
||||
of people that own up to their mistake and learn from them.
|
||||
• I also know that Chief Grant promotes having an open and transparent organization that is not afraid from
|
||||
admitting an error or correcting it.
|
||||
|
||||
---END------
|
||||
|
||||
|
||||
JSON Output Requirements: Generate a list of well-structured JSON output STARTPOP with question and correcpoding STARTPPOP with the following fields:
|
||||
- theme_title: The title the theme provided
|
||||
- question: The question
|
||||
- Situation: A bulleted list of texts as seen in examples
|
||||
- Task: A bulleted list of texts as seen in examples
|
||||
- Action: A bulleted list of texts as seen in examples
|
||||
- Personal Lessons: A bulleted list of texts as seen in examples
|
||||
- Results and Transitions: A bulleted list of texts as seen in examples
|
||||
- Observations of Others: A bulleted list of texts as seen in examples
|
||||
- Professional Connection: A bulleted list of texts as seen in examples
|
||||
|
||||
Review Process:
|
||||
- Carefully review all news items to confirm they align with the specified theme and meet relevance criteria.
|
||||
- Ensure the JSON format is flawless, comprehensive, and well-structured, with all fields included and correctly formatted.
|
||||
|
||||
NOTE: 1. you MAY BE PROVIDED WITH FEEDBACK AND PREVIOUS RESULT, MEANING AI HAS GENERATED STARTPOP BEFORE AND MAYBE USER IS NOT SATISFIED WITH THE RESULT THEN YOU GENERATE A NEW ONE BASED ON THE FEEDBACK
|
||||
NOTE: Each question will have a correpoding STARTPOP feilds
|
||||
Return just the JSON output without any other explanation or comments.
|
||||
|
||||
Thank you for your thorough and precise processing!
|
||||
CONVERSATION DATA :{conversation_data}
|
||||
FEEDBACK: {feedback}
|
||||
PREVIOUS RESULT: {previous_result}
|
||||
USER RESUME : {resume}
|
||||
FULL WORK HISTORY : {full_history}
|
||||
<|eot_id|><|start_header_id|>user<|end_header_id|>
|
||||
|
||||
RULES FOR GENERATING EACH COMPONENT - FOLLOW THESE RULES THOROUGHLY MAKE SURE YOUR OUTPUT IS WELL DETAILED
|
||||
|
||||
THE FRAME WORK MUST BE DETAILED WITH THE FOLLWWING RULES
|
||||
1. Situation : 75 - 100 words
|
||||
2. Task: 50 words
|
||||
3. Actions: 2 Negative actions and 2 positive actions
|
||||
4. Results: 25 - 5o words
|
||||
5. Personal Lessons : 25 - 50 words
|
||||
6. Observation of others: 25 words
|
||||
7. Professional connections: 25 - 50 words and in addition to the 25-50 words:
|
||||
- Connect to the theme of questions (Be creative here)
|
||||
- Ask to be part of their team(be creattive here)
|
||||
""",
|
||||
input_variables=["resume","conversation_data", "feedback", "previous_result","full_history"],
|
||||
)
|
||||
|
||||
# Pipeline to process the prompt and parse output
|
||||
theme_router = theme_prompt | llm_temp | JsonOutputParser()
|
||||
|
||||
# Call the pipeline and generate the cohesive output
|
||||
output = theme_router.invoke({"conversation_data": conversation_data, "feedback": feedback, "previous_result": previous_result,"resume":resume,"full_history":full_history})
|
||||
|
||||
print(f"Output : {output}")
|
||||
return output
|
||||
|
||||
except Exception as e:
|
||||
print(f"Error:{e}")
|
||||
return {}
|
||||
Reference in New Issue
Block a user