Spaces:
Running
Running
updated readme with requirements from hf
Browse files- .idea/.gitignore +8 -0
- .idea/code-chunker.iml +14 -0
- .idea/misc.xml +9 -0
- .idea/modules.xml +8 -0
- .idea/vcs.xml +6 -0
- README.md +11 -0
.idea/.gitignore
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Default ignored files
|
2 |
+
/shelf/
|
3 |
+
/workspace.xml
|
4 |
+
# Editor-based HTTP Client requests
|
5 |
+
/httpRequests/
|
6 |
+
# Datasource local storage ignored files
|
7 |
+
/dataSources/
|
8 |
+
/dataSources.local.xml
|
.idea/code-chunker.iml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<module type="JAVA_MODULE" version="4">
|
3 |
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
4 |
+
<exclude-output />
|
5 |
+
<content url="file://$MODULE_DIR$">
|
6 |
+
<excludeFolder url="file://$MODULE_DIR$/venv" />
|
7 |
+
</content>
|
8 |
+
<orderEntry type="inheritedJdk" />
|
9 |
+
<orderEntry type="sourceFolder" forTests="false" />
|
10 |
+
</component>
|
11 |
+
<component name="PackageRequirementsSettings">
|
12 |
+
<option name="removeUnused" value="true" />
|
13 |
+
</component>
|
14 |
+
</module>
|
.idea/misc.xml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="Black">
|
4 |
+
<option name="sdkName" value="Python 3.12 (code-chunker)" />
|
5 |
+
</component>
|
6 |
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" project-jdk-name="Python 3.12 (code-chunker)" project-jdk-type="Python SDK">
|
7 |
+
<output url="file://$PROJECT_DIR$/out" />
|
8 |
+
</component>
|
9 |
+
</project>
|
.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="ProjectModuleManager">
|
4 |
+
<modules>
|
5 |
+
<module fileurl="file://$PROJECT_DIR$/.idea/code-chunker.iml" filepath="$PROJECT_DIR$/.idea/code-chunker.iml" />
|
6 |
+
</modules>
|
7 |
+
</component>
|
8 |
+
</project>
|
.idea/vcs.xml
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="VcsDirectoryMappings">
|
4 |
+
<mapping directory="" vcs="Git" />
|
5 |
+
</component>
|
6 |
+
</project>
|
README.md
CHANGED
@@ -59,3 +59,14 @@ This project is licensed under the Apache 2.0 license. See the License file for
|
|
59 |
- This also uses tiktoken to count tokens for determining chunk sizes.
|
60 |
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
- This also uses tiktoken to count tokens for determining chunk sizes.
|
60 |
|
61 |
|
62 |
+
---
|
63 |
+
title: Test
|
64 |
+
emoji: 🐢
|
65 |
+
colorFrom: pink
|
66 |
+
colorTo: purple
|
67 |
+
sdk: streamlit
|
68 |
+
sdk_version: 1.33.0
|
69 |
+
app_file: app.py
|
70 |
+
pinned: false
|
71 |
+
license: mit
|
72 |
+
---
|