vinsblack commited on
Commit
c04a652
·
verified ·
1 Parent(s): 61efb6e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -6
README.md CHANGED
@@ -140,19 +140,21 @@ Others 4,887 files ████████ 4.7%
140
  ```json
141
  {
142
  "content": "string", // Source code content
143
- "repository": "string", // Repository identifier
144
  "path": "string", // File path in repository
 
145
  "language": "string", // Programming language
146
  "size_bytes": "integer", // File size in bytes
147
- "license": "string", // Original repository license
148
  "quality_score": "float", // AI-assessed quality (0.0-1.0)
149
- "created_date": "string", // Repository creation date
150
- "last_modified": "string", // Last file modification
 
151
  "stars": "integer", // Repository popularity
 
 
152
  "is_test": "boolean", // Test file indicator
153
- "complexity": "string", // Low/Medium/High complexity
154
- "documentation_ratio": "float" // Comment-to-code ratio
155
  }
 
156
  ```
157
 
158
  ---
 
140
  ```json
141
  {
142
  "content": "string", // Source code content
 
143
  "path": "string", // File path in repository
144
+ "filename": "string", // Original filename
145
  "language": "string", // Programming language
146
  "size_bytes": "integer", // File size in bytes
 
147
  "quality_score": "float", // AI-assessed quality (0.0-1.0)
148
+ "complexity": "float", // Complexity score (0.0-1.0)
149
+ "documentation_ratio": "float", // Comment-to-code ratio
150
+ "repository": "string", // Repository identifier
151
  "stars": "integer", // Repository popularity
152
+ "created_date": "string", // Repository creation date
153
+ "license": "string", // Original repository license
154
  "is_test": "boolean", // Test file indicator
155
+ "file_hash": "string" // Unique file hash
 
156
  }
157
+
158
  ```
159
 
160
  ---