Joe Shamon commited on
Commit
1be6e20
·
unverified ·
2 Parent(s): 5463b34 66fe6d5

Merge pull request #3 from CintraAI/enhancement/updated-header

Browse files
Files changed (1) hide show
  1. README.md +10 -3
README.md CHANGED
@@ -10,6 +10,7 @@ pinned: false
10
  license: mit
11
  ---
12
 
 
13
  # CintraAI Code Chunker
14
 
15
  Cintra's Code Chunker is a novel open-source tool designed to enhance code readability and maintainability by intelligently chunking code files based on key points of interest. This tool leverages advanced parsing techniques to identify significant elements in your code, such as functions, classes, and comments, to organize your codebase into manageable, easily understandable chunks. It's an invaluable resource for applications such as RAG, code patching, and other use cases.
@@ -19,6 +20,12 @@ Cintra's Code Chunker is a novel open-source tool designed to enhance code reada
19
  - **Intelligent Chunking:** Break down your code files into chunks around key points of interest like function definitions, class declarations, and crucial comments.
20
  - **Customizable Token Limits:** Control the size of each chunk with customizable token limits, ensuring that chunks remain manageable and focused.
21
  - **Support for Multiple Languages:** Initially supporting Python, JavaScript, and CSS, with plans to expand to more programming languages.
 
 
 
 
 
 
22
 
23
  ## Getting Started
24
 
@@ -30,12 +37,12 @@ Cintra's Code Chunker is a novel open-source tool designed to enhance code reada
30
 
31
  1. Clone the repository:
32
  ```sh
33
- git clone https://github.com/yourgithubusername/code-chunker-parser.git
34
  ```
35
 
36
  2. Navigate to the project directory
37
  ```sh
38
- pip install -r requirements.txt
39
  ```
40
  4. Install the required dependencies
41
  ```sh
@@ -64,7 +71,7 @@ points_of_interest = parser.extract_points_of_interest(tree, 'py')
64
  We welcome contributions from the community, whether it's through reporting bugs, submitting feature requests, or sending pull requests. Please check the CONTRIBUTING.md file for more details on how to contribute to the project.
65
 
66
  ## License
67
- This project is licensed under the Apache 2.0 license. See the License file for details
68
 
69
  ## Acknowledgments
70
  - This project utilizes the tree-sitter project for parsing code.
 
10
  license: mit
11
  ---
12
 
13
+
14
  # CintraAI Code Chunker
15
 
16
  Cintra's Code Chunker is a novel open-source tool designed to enhance code readability and maintainability by intelligently chunking code files based on key points of interest. This tool leverages advanced parsing techniques to identify significant elements in your code, such as functions, classes, and comments, to organize your codebase into manageable, easily understandable chunks. It's an invaluable resource for applications such as RAG, code patching, and other use cases.
 
20
  - **Intelligent Chunking:** Break down your code files into chunks around key points of interest like function definitions, class declarations, and crucial comments.
21
  - **Customizable Token Limits:** Control the size of each chunk with customizable token limits, ensuring that chunks remain manageable and focused.
22
  - **Support for Multiple Languages:** Initially supporting Python, JavaScript, and CSS, with plans to expand to more programming languages.
23
+
24
+ ## Try Out Code Chunker!
25
+
26
+ Interested in seeing how it works? Check out our interactive demo on **Hugging Face Spaces**.
27
+
28
+ [**Click here to try it out!**](https://huggingface.co/spaces/CintraAI/code-chunker)
29
 
30
  ## Getting Started
31
 
 
37
 
38
  1. Clone the repository:
39
  ```sh
40
+ git clone https://github.com/yourgithubusername/code-chunker.git
41
  ```
42
 
43
  2. Navigate to the project directory
44
  ```sh
45
+ cd code-chunker
46
  ```
47
  4. Install the required dependencies
48
  ```sh
 
71
  We welcome contributions from the community, whether it's through reporting bugs, submitting feature requests, or sending pull requests. Please check the CONTRIBUTING.md file for more details on how to contribute to the project.
72
 
73
  ## License
74
+ This project is licensed under the MIT license. See the License file for details
75
 
76
  ## Acknowledgments
77
  - This project utilizes the tree-sitter project for parsing code.