"""
LEADER_INFOR = """
Dr. Bùi Duy Quốc Nghị (NghiBDQ)\n
Chief Scientist of AI4Code team at FPT Software AI Center
"""
NAM_INFOR = """
Lê Hải Nam (NamLH31)\n
AI Resident at FPT Software AI Center
"""
DUNG_INFOR = """
Nguyễn Mạnh Dũng (DungNM31)\n
AI Resident at FPT Software AI Center
"""
MINH_INFOR = """
Nguyễn Anh Mimh (MinhNA4)\n
AI Engineer at FPT Software AI Center
"""
VA_INFOR = """
Đậu Thị Vân Anh (AnhDTV7)\n
AI Resident at FPT Software AI Center
"""
KA_INFOR = """
Trần Vũ Kim Anh (AnhTVK)\n
Software Developer at FPT Software AI Center
"""
GROUP_INFO = """
Docify-Lab is from FPT Software AI Center.\n
We focus on exploring new ways to address a lot of software engineering challenges.
"""
STORY = """
Docify-Lab is designed to assist developers with many different coding tasks.\n
By leveraging the latest AI technology, our product help developers save time and effort, allowing them to focus on creating the best possible code. \n
Now, developers can work more efficiently and effectively than ever before.
"""
TRANS_EXAMPLE1 = """
def partition(array, low, high):
pivot = array[high]
i = low - 1
for j in range(low, high):
if array[j] <= pivot:
i = i + 1
tmp = array[i]
array[i] = array[j]
array[j] = tmp
tmp = array[i + 1]
array[i + 1] = array[high]
array[high] = tmp
return i + 1
def quickSort(array, low, high):
if low < high:
pi = partition(array, low, high)
quickSort(array, low, pi - 1)
quickSort(array, pi + 1, high)
"""
TRANS_EXAMPLE2 = """public String getMaxValue(List