Spaces:
Paused
Paused
| from utils.openai_utils import LLM_IDK_ANSWER | |
| import os | |
| def get_system_prompt(): | |
| system_prompt = '''You summarize medical conversations for a medically trained audience''' | |
| return system_prompt | |
| def get_file_content(f_path): | |
| with open(f_path, "r") as f: | |
| return f.read() | |
| available_guidelines = [] | |
| guidelines_dict = {} | |
| def get_guidelines_dict(): | |
| global guidelines_dict | |
| if len(guidelines_dict) > 0: | |
| return guidelines_dict | |
| guidelines_dict = {} | |
| return guidelines_dict | |