anpigon commited on
Commit
4c67faf
β€’
1 Parent(s): 857c8ee

feat: Update app.py with corrected count of split wiki documents

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -119,7 +119,7 @@ wiki_docs = split_documents(wiki_documents, Language.MARKDOWN)
119
  print(f"λΆ„ν• λœ .py λ¬Έμ„œμ˜ 개수: {len(py_docs)}")
120
  print(f"λΆ„ν• λœ .mdx λ¬Έμ„œμ˜ 개수: {len(mdx_docs)}")
121
  print(f"λΆ„ν• λœ .ipynb λ¬Έμ„œμ˜ 개수: {len(ipynb_docs)}")
122
- print(f"λΆ„ν• λœ .(wiki λ¬Έμ„œμ˜ 개수: {len(wiki_docs)}")
123
 
124
  combined_documents = py_docs + mdx_docs + ipynb_docs + wiki_docs
125
  print(f"총 λ„νλ¨ΌνŠΈ 개수: {len(combined_documents)}")
 
119
  print(f"λΆ„ν• λœ .py λ¬Έμ„œμ˜ 개수: {len(py_docs)}")
120
  print(f"λΆ„ν• λœ .mdx λ¬Έμ„œμ˜ 개수: {len(mdx_docs)}")
121
  print(f"λΆ„ν• λœ .ipynb λ¬Έμ„œμ˜ 개수: {len(ipynb_docs)}")
122
+ print(f"λΆ„ν• λœ wiki λ¬Έμ„œμ˜ 개수: {len(wiki_docs)}")
123
 
124
  combined_documents = py_docs + mdx_docs + ipynb_docs + wiki_docs
125
  print(f"총 λ„νλ¨ΌνŠΈ 개수: {len(combined_documents)}")