MHamdan commited on
Commit
061f029
Β·
1 Parent(s): 5215be1

Initial content analyzer setup

Browse files
Files changed (1) hide show
  1. README.md +22 -2
README.md CHANGED
@@ -1,4 +1,4 @@
1
- echo "---
2
  title: Content Analyzer
3
  emoji: πŸ“‘
4
  colorFrom: blue
@@ -7,6 +7,7 @@ sdk: gradio
7
  sdk_version: 4.0.0
8
  app_file: app.py
9
  pinned: false
 
10
 
11
  ---
12
 
@@ -22,4 +23,23 @@ An advanced content analysis tool that can process:
22
 
23
  - Text summarization
24
  - Sentiment analysis
25
- - Topic detection" > README.md
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ echo '---
2
  title: Content Analyzer
3
  emoji: πŸ“‘
4
  colorFrom: blue
 
7
  sdk_version: 4.0.0
8
  app_file: app.py
9
  pinned: false
10
+ license: apache-2.0
11
 
12
  ---
13
 
 
23
 
24
  - Text summarization
25
  - Sentiment analysis
26
+ - Topic detection
27
+
28
+ ## Usage
29
+
30
+ 1. Choose input method (Text, URL, or File)
31
+ 2. Enter or upload your content
32
+ 3. Select analysis types
33
+ 4. Click Analyze to get results
34
+
35
+ ## Supported File Types
36
+
37
+ - .txt (Text files)
38
+ - .pdf (PDF documents)
39
+ - .docx (Word documents)' > README.md
40
+
41
+ # Then commit and push the changes
42
+
43
+ git add README.md
44
+ git commit -m "Update README with proper Space metadata"
45
+ git push