File size: 1,028 Bytes
494c9e4 | 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 | ---
title: Info Lens
emoji: 🔭
colorFrom: blue
colorTo: red
sdk: docker
short_description: Explore the informational nature of LLMs and language.
tags:
- nlp
- text-analysis
- information
- visualization
- reading-tools
app_port: 7860
pinned: false
license: apache-2.0
---
# Info Lens
**Info Lens** is a small toolbox for exploring the informational nature of LLMs and language.
## Legacy name: InfoRadar
InfoRadar is the former project and repo name. It still appears in parts of the codebase.
## 📦 Quick Start
### Using Docker (Recommended)
This is the simplest way to run Info Lens:
```bash
# 1. Build the image
docker build -t inforadar .
# 2. Run the container (Map port to 7860)
docker run -p 7860:7860 inforadar
```
Once running, visit `http://localhost:7860` in your browser.
### Local Development
**Backend Environment**:
```bash
pip install -r requirements.txt
python server.py
```
**Frontend Build**:
```bash
cd client/src && npm install && npm run build
```
## 📜 License
Apache 2.0
|