Skip to content

Commit d65aa47

Browse files
committed
chore: update internal references from research_uet to docs
1 parent 9958154 commit d65aa47

File tree

74 files changed

+1876
-1876
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1876
-1876
lines changed

.claude/settings.local.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"Bash(if [ ! -d \"research_v3\" ])",
88
"Bash(then unzip -q research_v3.zip)",
99
"Bash(fi)",
10-
"Bash(if [ ! -d \"research_uet\" ])",
11-
"Bash(then unzip -q research_uet.zip)",
10+
"Bash(if [ ! -d \"docs\" ])",
11+
"Bash(then unzip -q docs.zip)",
1212
"Bash(python global_economy_test.py:*)",
1313
"Bash(python:*)",
1414
"mcp__research-theory__list_directory",

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Every Topic must follow this EXACT folder structure:
9191
### 1. Robust Path Finding (`UETPathManager`)
9292
**NEVER** use hardcoded paths (e.g., `C:/Users/...`). Use the Glass Box Path Manager:
9393
```python
94-
from research_uet.core.uet_glass_box import UETPathManager
94+
from docs.core.uet_glass_box import UETPathManager
9595

9696
# Correct way to save a result
9797
result_dir = UETPathManager.get_result_dir("0.1", "Experiment_Name")

README.md

Lines changed: 80 additions & 80 deletions
Large diffs are not rendered by default.

uet_agents/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
ProceduralMemoryStore,
1111
)
1212

13-
# Components that depend on research_uet.knowledge_base (optional)
13+
# Components that depend on docs.knowledge_base (optional)
1414
try:
1515
from .base_agent import BaseAgent
1616
from .research_agent import ResearchAgent

uet_agents/base_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import List, Dict, Optional, Any
22
import logging
3-
from research_uet.knowledge_base.api_client import OpenRouterClient, CostTracker
3+
from docs.knowledge_base.api_client import OpenRouterClient, CostTracker
44

55

66
class BaseAgent:

uet_agents/ingest_docs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
# Docs directories to ingest (relative to repo root)
1515
DOCS_DIRS = [
16-
"research_uet/Docs",
17-
"research_uet/Doc",
16+
"docs/Docs",
17+
"docs/Doc",
1818
]
1919

2020
EXTENSIONS = {".md", ".txt", ".rst"}

uet_agents/main.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
PROJECT_ROOT = Path(__file__).resolve().parent.parent
77
sys.path.append(str(PROJECT_ROOT))
88

9-
from research_uet.knowledge_base.config import CONFIG
10-
from research_uet.knowledge_base.api_client import OpenRouterClient, CostTracker
11-
from research_uet.knowledge_base.vector_store import VectorStore
12-
from research_uet.knowledge_base.tensorizer import UetTensorizer
13-
from research_uet.knowledge_base.omega_search import OmegaSearch
9+
from docs.knowledge_base.config import CONFIG
10+
from docs.knowledge_base.api_client import OpenRouterClient, CostTracker
11+
from docs.knowledge_base.vector_store import VectorStore
12+
from docs.knowledge_base.tensorizer import UetTensorizer
13+
from docs.knowledge_base.omega_search import OmegaSearch
1414
from uet_agents.base_agent import BaseAgent
1515
from uet_agents.research_agent import ResearchAgent
1616
from uet_agents.marketing_agent import MarketingAgent

uet_agents/research_agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import Optional, List
22
from .base_agent import BaseAgent
3-
from research_uet.knowledge_base.omega_search import OmegaSearch
4-
from research_uet.knowledge_base.api_client import OpenRouterClient
3+
from docs.knowledge_base.omega_search import OmegaSearch
4+
from docs.knowledge_base.api_client import OpenRouterClient
55

66

77
class ResearchAgent(BaseAgent):

uet_history/equations/2026-01/.md/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> **"One Equation to Rule Them All."**
44
5-
This folder (`research_uet/`) contains the **Core Physics Logic** that powers all 25 research topics.
5+
This folder (`docs/`) contains the **Core Physics Logic** that powers all 25 research topics.
66

77
At the heart of everything is the **UET Master Equation** (sometimes referred to as the Unified Framework or Dyer-Derivative form).
88

@@ -42,32 +42,32 @@ The universe runs a global optimization loop (Lyapunov Stability):
4242

4343
## 📂 System Architecture (Directory Map)
4444

45-
Navigation guide for the `research_uet/` ecosystem:
45+
Navigation guide for the `docs/` ecosystem:
4646

4747
### 1. The Engine (`/core`)
48-
* **Path**: [`research_uet/core/`](./core/)
48+
* **Path**: [`docs/core/`](./core/)
4949
* **Purpose**: Contains the **Source Code** of the Master Equation.
5050
* **Key File**: `uet_master_equation.py` (The Python implementation of $\Omega$).
5151
* **Role**: All 25 research topics import logic from here. If you change this, you change the universe.
5252

5353
### 2. The Evidence (`/topics`)
54-
* **Path**: [`research_uet/topics/`](./topics/)
54+
* **Path**: [`docs/topics/`](./topics/)
5555
* **Purpose**: The **25 Research Domains** (Galaxy Rotation, AI, Economics, etc.).
5656
* **Structure**: Each folder contains `Code/` (Proof), `Doc/` (Analysis), and `Result/` (Logs).
5757
* **Style Guide**: See [`how to README.md`](./topics/Work/how%20to%20README.md) for the "Platinum Standard" layout.
5858

5959
### 3. The Documentation (`/docs`)
60-
* **Path**: [`research_uet/docs/`](./docs/)
60+
* **Path**: [`docs/docs/`](./docs/)
6161
* **Purpose**: Detailed technical manuals, API references, and theoretical backgrounders.
6262
* **Use Case**: For developers wanting to fork or extend the framework.
6363

6464
### 4. The Paper (`/paper`)
65-
* **Path**: [`research_uet/paper/`](./paper/)
65+
* **Path**: [`docs/paper/`](./paper/)
6666
* **Purpose**: The LaTeX source for the academic publication.
6767
* **Goal**: Generates the final PDF for submission (e.g., arXiv).
6868

6969
### 5. The Tools (`/scripts`)
70-
* **Path**: [`research_uet/scripts/`](./scripts/)
70+
* **Path**: [`docs/scripts/`](./scripts/)
7171
* **Purpose**: Utility scripts for global tasks.
7272
* **Examples**:
7373
* `audit_documentation_coverage.py`: Checks for missing docs.
@@ -78,7 +78,7 @@ Navigation guide for the `research_uet/` ecosystem:
7878
To run a simulation using the Master Equation:
7979

8080
```python
81-
from research_uet.core.uet_master_equation import UETMasterEquation
81+
from docs.core.uet_master_equation import UETMasterEquation
8282
import numpy as np
8383

8484
# 1. Initialize Engine

0 commit comments

Comments
 (0)