Commit ·
9f21021
1
Parent(s): 4402809
width
Browse files
app.py
CHANGED
|
@@ -44,9 +44,7 @@ iface = gr.Interface(
|
|
| 44 |
outputs=gr.Dataframe(headers=["Chunk #", "Text Chunk", "Character Count", "Token Count"]),
|
| 45 |
title="Text Tokenization Tool",
|
| 46 |
description="A tool for tokenizing text using different methods. Enter your text and choose your settings to see the results. It splits the text into chunks based on the specified chunk size and overlap.",
|
| 47 |
-
theme="dark",
|
| 48 |
-
layout="vertical",
|
| 49 |
width=800 # Adjust this value as needed
|
| 50 |
)
|
| 51 |
|
| 52 |
-
iface.launch(share=True, inbrowser=True)
|
|
|
|
| 44 |
outputs=gr.Dataframe(headers=["Chunk #", "Text Chunk", "Character Count", "Token Count"]),
|
| 45 |
title="Text Tokenization Tool",
|
| 46 |
description="A tool for tokenizing text using different methods. Enter your text and choose your settings to see the results. It splits the text into chunks based on the specified chunk size and overlap.",
|
|
|
|
|
|
|
| 47 |
width=800 # Adjust this value as needed
|
| 48 |
)
|
| 49 |
|
| 50 |
+
iface.launch(share=True, inbrowser=True)
|