TheBobBob commited on
Commit
040fcb4
·
verified ·
1 Parent(s): 68ae26b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -5
app.py CHANGED
@@ -103,11 +103,7 @@ def convert_sbml_to_antimony(sbml_file_path, antimony_file_path):
103
  print(f"Error converting SBML to Antimony: {e}")
104
 
105
  def split_biomodels(antimony_file_path):
106
- text_splitter = CharacterTextSplitter.from_tiktoken_encoder(
107
- encoding="c1100k_base",
108
- chunk_size=512,
109
- chunk_overlap=0
110
- )
111
 
112
  final_items = []
113
  directory_path = os.path.dirname(os.path.abspath(antimony_file_path))
 
103
  print(f"Error converting SBML to Antimony: {e}")
104
 
105
  def split_biomodels(antimony_file_path):
106
+ text_splitter = SpacyTextSplitter(chunk_size=1000)
 
 
 
 
107
 
108
  final_items = []
109
  directory_path = os.path.dirname(os.path.abspath(antimony_file_path))