CintraAI commited on
Commit
1d6fa11
·
1 Parent(s): dbc4628

changed front end design

Browse files
Files changed (1) hide show
  1. app.py +13 -14
app.py CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
2
  import json
3
  import os
4
  from Chunker import CodeChunker
5
- from utils import count_tokens
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
- with col2:
52
- token_chunk_size = st.sidebar.slider('Token Chunk Size Target', min_value=5, max_value=50, value=25)
53
- if st.sidebar.button("Chunk Code"):
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
- # Select a chunk to display
61
- chunk_keys = list(chunked_code_dict.keys())
62
- selected_chunk_key = st.selectbox("Select Chunk", options=chunk_keys)
63
-
64
- st.subheader('Chunked Code')
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)