Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,7 +13,47 @@ short_description: Deep Research Evaluator for Long Horizon Learning Tasks
|
|
| 13 |
|
| 14 |
# ๐ต', '๐ถ', '๐ธ', '๐น', '๐บ', '๐ท', '๐ฅ', '๐ป
|
| 15 |
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
Key Topics and Related Papers:
|
| 19 |
|
|
|
|
| 13 |
|
| 14 |
# ๐ต', '๐ถ', '๐ธ', '๐น', '๐บ', '๐ท', '๐ฅ', '๐ป
|
| 15 |
|
| 16 |
+
Deep Research Evaluator is a conceptual AI system designed to analyze and synthesize information from extensive research literature, such as arXiv papers, to learn about specific topics and generate code applicable to long-horizon tasks in AI. This involves understanding complex subjects, identifying relevant methodologies, and implementing solutions that require planning and execution over extended sequences.
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
# Project Architecture
|
| 20 |
+
|
| 21 |
+
- ๐ **Root Folder**
|
| 22 |
+
- **app.py** (๐ค *Streamlit App*)
|
| 23 |
+
- Main entry point for your Streamlit application.
|
| 24 |
+
- **requirements.txt** (๐ *Dependencies*)
|
| 25 |
+
- Lists all the Python packages needed to run the app.
|
| 26 |
+
- ๐ **mycomponent** (๐ง *HTML Component*)
|
| 27 |
+
- A subdirectory containing your custom Streamlit component code.
|
| 28 |
+
- **\_\_init\_\_.py** (๐ *Python Init*)
|
| 29 |
+
- Tells Python this folder is a module/package.
|
| 30 |
+
- **index.html** (๐ *Custom HTML*)
|
| 31 |
+
- Front-end HTML/JS/CSS for the custom component.
|
| 32 |
+
|
| 33 |
+
```mermaid
|
| 34 |
+
flowchart TB
|
| 35 |
+
A[๐ Root Folder] --> B[app.py ๐ค<br>(Streamlit App)]
|
| 36 |
+
A --> C[requirements.txt ๐<br>(Dependencies)]
|
| 37 |
+
A --> D[๐ mycomponent ๐ง<br>(HTML Component)]
|
| 38 |
+
D --> E[__init__.py ๐<br>(Python Init)]
|
| 39 |
+
D --> F[index.html ๐<br>(Custom HTML)]
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
---
|
| 43 |
+
|
| 44 |
+
**Usage Flow**:
|
| 45 |
+
|
| 46 |
+
1. You run `streamlit run app.py`.
|
| 47 |
+
2. **app.py** imports **mycomponent** to load the HTML from **index.html**.
|
| 48 |
+
3. **requirements.txt** ensures needed dependencies are installed.
|
| 49 |
+
4. The **\_\_init\_\_.py** file ensures the custom component folder is recognized as a Python package.
|
| 50 |
+
|
| 51 |
+
**Notes**:
|
| 52 |
+
- **app.py** hosts your Streamlit logic and references the **mycomponent**.
|
| 53 |
+
- **index.html** supplies the interface for any front-end custom elements.
|
| 54 |
+
- **requirements.txt** keeps the environment consistent.
|
| 55 |
+
|
| 56 |
+
|
| 57 |
|
| 58 |
Key Topics and Related Papers:
|
| 59 |
|