Spaces:
Running
Running
changed front end design
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
|
|
2 |
import json
|
3 |
import os
|
4 |
from Chunker import CodeChunker
|
5 |
-
|
6 |
# Function to load JSON data
|
7 |
def load_json_file(file_path):
|
8 |
with open(file_path, 'r') as file:
|
@@ -24,6 +24,9 @@ st.title('Cintra Code Chunker')
|
|
24 |
# File selection
|
25 |
selected_file_name = st.selectbox("Select a code file", code_files)
|
26 |
|
|
|
|
|
|
|
27 |
# Assuming you have the content as a string in the JSON, extract directly
|
28 |
code_content = code_files_data[selected_file_name]
|
29 |
|
@@ -48,18 +51,14 @@ with col1:
|
|
48 |
st.subheader('Original File')
|
49 |
st.code(code_content, language=language)
|
50 |
|
51 |
-
|
52 |
-
|
53 |
-
if st.sidebar.button("Chunk Code"):
|
54 |
-
# Initialize the code chunker
|
55 |
-
code_chunker = CodeChunker(file_extension=file_extension)
|
56 |
|
57 |
-
|
58 |
-
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
st.
|
65 |
-
st.code(chunked_code_dict[selected_chunk_key], language=language)
|
|
|
2 |
import json
|
3 |
import os
|
4 |
from Chunker import CodeChunker
|
5 |
+
|
6 |
# Function to load JSON data
|
7 |
def load_json_file(file_path):
|
8 |
with open(file_path, 'r') as file:
|
|
|
24 |
# File selection
|
25 |
selected_file_name = st.selectbox("Select a code file", code_files)
|
26 |
|
27 |
+
# Token Chunk Size Slider
|
28 |
+
token_chunk_size = st.slider('Token Chunk Size Target', min_value=5, max_value=1000, value=25)
|
29 |
+
|
30 |
# Assuming you have the content as a string in the JSON, extract directly
|
31 |
code_content = code_files_data[selected_file_name]
|
32 |
|
|
|
51 |
st.subheader('Original File')
|
52 |
st.code(code_content, language=language)
|
53 |
|
54 |
+
# Initialize the code chunker
|
55 |
+
code_chunker = CodeChunker(file_extension=file_extension)
|
|
|
|
|
|
|
56 |
|
57 |
+
# Chunk the code content
|
58 |
+
chunked_code_dict = code_chunker.chunk(code_content, token_chunk_size)
|
59 |
|
60 |
+
# Automatically display chunks without needing to select
|
61 |
+
with col2:
|
62 |
+
st.subheader('Chunked Code')
|
63 |
+
for chunk_key, chunk_code in chunked_code_dict.items():
|
64 |
+
st.code(chunk_code, language=language)
|
|