vitalliuss commited on
Commit
35c421f
·
verified ·
1 Parent(s): 335bb74

Update README.md with required Hugging Face Space configuration metadata

Browse files
Files changed (1) hide show
  1. README.md +18 -28
README.md CHANGED
@@ -1,4 +1,15 @@
1
- # LLM Feedback Analyzer - README
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  This application allows you to analyze customer feedback using LLMs (Large Language Models) with custom prompts. You can upload Excel files containing customer feedback, specify analysis instructions, and process the feedback in batches.
4
 
@@ -21,40 +32,19 @@ This application allows you to analyze customer feedback using LLMs (Large Langu
21
  - Pydantic
22
  - OpenPyXL
23
 
24
- ## Installation
25
-
26
- ```bash
27
- pip install streamlit pandas openpyxl pydantic openai python-dotenv
28
- ```
29
-
30
  ## Usage
31
 
32
- 1. Run the Streamlit app:
33
- ```bash
34
- streamlit run app.py
35
- ```
36
-
37
- 2. Open the app in your browser (typically at http://localhost:8501)
38
-
39
- 3. Enter your OpenAI API key in the sidebar
40
-
41
- 4. Upload an Excel file containing customer feedback
42
-
43
- 5. Select the column containing the feedback text
44
 
45
- 6. Customize the analysis prompt as needed
46
 
47
- 7. Click "Process Feedback" to start the analysis
48
 
49
- 8. Download the results when processing is complete
50
 
51
- ## File Structure
52
 
53
- - `app.py`: Main Streamlit application
54
- - `models.py`: Pydantic models for data validation
55
- - `utils.py`: Utility functions for processing and logging
56
- - `data/`: Directory for sample and processed data
57
- - `logs/`: Directory for application logs
58
 
59
  ## Example Prompt Templates
60
 
 
1
+ ---
2
+ title: LLM Feedback Analyzer
3
+ emoji: 📊
4
+ colorFrom: blue
5
+ colorTo: indigo
6
+ sdk: streamlit
7
+ sdk_version: 1.44.1
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
+
12
+ # LLM Feedback Analyzer
13
 
14
  This application allows you to analyze customer feedback using LLMs (Large Language Models) with custom prompts. You can upload Excel files containing customer feedback, specify analysis instructions, and process the feedback in batches.
15
 
 
32
  - Pydantic
33
  - OpenPyXL
34
 
 
 
 
 
 
 
35
  ## Usage
36
 
37
+ 1. Enter your OpenAI API key in the sidebar
 
 
 
 
 
 
 
 
 
 
 
38
 
39
+ 2. Upload an Excel file containing customer feedback
40
 
41
+ 3. Select the column containing the feedback text
42
 
43
+ 4. Customize the analysis prompt as needed
44
 
45
+ 5. Click "Process Feedback" to start the analysis
46
 
47
+ 6. Download the results when processing is complete
 
 
 
 
48
 
49
  ## Example Prompt Templates
50