File size: 786 Bytes
ed28876
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
27
28
29
30
31
# Tokenization_Methods_Lib.py
#########################################
# Tokenization Methods Library
# This library is used to handle tokenization of text for summarization.
#
####
import tiktoken

# Import Local
from typing import List

####################
# Function List
#
# 1. openai_tokenize(text: str) -> List[str]
#
####################


#######################################################################################################################
# Function Definitions
#

def openai_tokenize(text: str) -> List[str]:
    encoding = tiktoken.encoding_for_model('gpt-4-turbo')
    return encoding.encode(text)

#
#
#######################################################################################################################