Update app.py
Browse files
app.py
CHANGED
@@ -1477,22 +1477,18 @@ with gr.Blocks(title="π Consilium: Visual AI Consensus Platform", theme=gr.th
|
|
1477 |
- **Mistral:** [console.mistral.ai](https://console.mistral.ai)
|
1478 |
- **SambaNova:** [cloud.sambanova.ai](https://cloud.sambanova.ai)
|
1479 |
|
1480 |
-
|
|
|
|
|
1481 |
```bash
|
1482 |
export MISTRAL_API_KEY=your_key_here
|
1483 |
export SAMBANOVA_API_KEY=your_key_here
|
1484 |
export MODERATOR_MODEL=mistral
|
1485 |
```
|
1486 |
|
1487 |
-
### π¦ SambaNova Expert Models (with Function Calling)
|
1488 |
-
The platform includes **3 SambaNova specialists**:
|
1489 |
-
- **DeepSeek-R1**: Advanced reasoning and strategic analysis
|
1490 |
-
- **Meta-Llama-3.3-70B-Instruct**: Fast, efficient collaborative analysis + research calls
|
1491 |
-
- **QwQ-32B**: Large-scale comprehensive evaluation
|
1492 |
-
|
1493 |
### π Dependencies
|
1494 |
```bash
|
1495 |
-
pip install
|
1496 |
```
|
1497 |
### Start
|
1498 |
```bash
|
@@ -1511,12 +1507,6 @@ with gr.Blocks(title="π Consilium: Visual AI Consensus Platform", theme=gr.th
|
|
1511 |
}
|
1512 |
}
|
1513 |
```
|
1514 |
-
|
1515 |
-
### π Privacy & Security
|
1516 |
-
- **Session Isolation**: Each user gets their own private analysis space
|
1517 |
-
- **API Key Protection**: Keys are stored only in your browser session
|
1518 |
-
- **No Global State**: Your analyses are not visible to other users
|
1519 |
-
- **Secure Communication**: All API calls use HTTPS encryption
|
1520 |
""")
|
1521 |
|
1522 |
with gr.Tab("π Documentation"):
|
|
|
1477 |
- **Mistral:** [console.mistral.ai](https://console.mistral.ai)
|
1478 |
- **SambaNova:** [cloud.sambanova.ai](https://cloud.sambanova.ai)
|
1479 |
|
1480 |
+
## Local Setups
|
1481 |
+
|
1482 |
+
### π Environment Variables
|
1483 |
```bash
|
1484 |
export MISTRAL_API_KEY=your_key_here
|
1485 |
export SAMBANOVA_API_KEY=your_key_here
|
1486 |
export MODERATOR_MODEL=mistral
|
1487 |
```
|
1488 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1489 |
### π Dependencies
|
1490 |
```bash
|
1491 |
+
pip install -r requirements.txt
|
1492 |
```
|
1493 |
### Start
|
1494 |
```bash
|
|
|
1507 |
}
|
1508 |
}
|
1509 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
1510 |
""")
|
1511 |
|
1512 |
with gr.Tab("π Documentation"):
|