File size: 514 Bytes
74044e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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