Spaces:
Sleeping
Sleeping
| from fastapi import FastAPI | |
| from openai import OpenAI | |
| import json | |
| import os | |
| app = FastAPI() | |
| client = OpenAI(api_key=OPENAI_API_KEY) | |
| org = os.getenv("org") | |
| OPENAI_API_KEY = os.getenv("open_ai") | |
| async def getQuestions(job_description: str, no_of_questions: int): | |
| response = client.chat.completions.create( | |
| model="gpt-3.5-turbo-1106", | |
| response_format={"type": "json_object"}, # To ENABLE JSON MODE | |
| messages=[ | |
| {"role": "system", | |
| "content": "You are a helpful assistant designed to output JSON in this format [question-text as key and its value as answer-text]"}, | |
| {"role": "user", | |
| "content": f"Given the job description [{job_description}] create {no_of_questions} " | |
| f"interview questions and their corresponding answers"} | |
| ] | |
| ) | |
| result = response.choices[0].message.content | |
| # Parse the JSON data | |
| parsed_data = json.loads(result) | |
| return parsed_data |