Spaces:
Sleeping
Sleeping
File size: 2,563 Bytes
c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 6886d4f c26f5b3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | # Text Selection and Comment Feature Guide π
## New Feature Overview
We've added Microsoft Word-like text selection and comment functionality to the evaluation module! Now experts can:
1. **Select Any Text**: Click and drag to select any sentence or phrase in the AI-generated patient summary
2. **Add Precise Comments**: Add comments for specific selected text
3. **Manage Comments**: View all comments, clear comments, etc.
## How to Use
### 1. Select Patient Sample
- In the "π¬ Expert Evaluation" page, select a patient sample to evaluate
- The AI-generated summary will appear in a selectable text area
### 2. Select Text
- In the AI summary area, use mouse to **click and drag** to select text
- Selected text will automatically appear in the "π― Currently Selected Text" box
### 3. Add Comments
- Enter your comment in the "Comment for Selected Text" box
- Click "β Add Comment" button to save comment
- Comment will immediately be added to the "All Text Comments" list
### 4. Manage Comments
- View all comments in "All Text Comments"
- Click "ποΈ Clear All Comments" to clear all comments
- Can add multiple comments for different text segments
### 5. Submit Evaluation
- After completing text comments, fill in other evaluation fields
- Click "Submit Patient Evaluation" to submit complete evaluation
## Technical Features
### β¨ User Experience Improvements
- **Intuitive Text Selection**: Word-like click and drag selection
- **Real-time Feedback**: Selected text displays immediately
- **Clear Interface**: Separate comment display and management areas
### π§ Functionality Features
- **Precise Targeting**: Support for selecting text segments of any length
- **Multi-comment Support**: Can add multiple comments for different parts of the same summary
- **JSON Storage**: Comments saved in structured format for easy analysis
### π Data Format
Comment data storage format:
```json
{
"Selected text segment 1": "Corresponding comment content 1",
"Selected text segment 2": "Corresponding comment content 2"
}
```
## Usage Example
Suppose AI summary contains:
> "Patient presents with fever symptoms, temperature 38.5Β°C. Blood tests recommended to determine infection source."
Expert can:
1. Select "fever symptoms" β Comment: "Symptom description accurate"
2. Select "Blood tests recommended" β Comment: "Appropriate diagnostic approach"
3. Select "38.5Β°C" β Comment: "Should specify measurement method"
This allows for precise, detailed feedback on specific portions of AI-generated medical summaries. |