Spaces:
Running
Running
Joseph Pollack
commited on
demo starts , needs debugging on huggingface spaces
Browse files- .github/workflows/docs.yml +1 -0
- docs/api/agents.md +1 -0
- docs/api/models.md +1 -0
- docs/api/orchestrators.md +1 -0
- docs/api/services.md +1 -0
- docs/api/tools.md +1 -0
- docs/architecture/agents.md +1 -0
- docs/architecture/middleware.md +1 -0
- docs/architecture/services.md +1 -0
- docs/architecture/tools.md +1 -0
- docs/contributing/code-quality.md +1 -0
- docs/contributing/code-style.md +1 -0
- docs/contributing/error-handling.md +1 -0
- docs/contributing/implementation-patterns.md +1 -0
- docs/contributing/index.md +1 -0
- docs/contributing/prompt-engineering.md +1 -0
- docs/contributing/testing.md +1 -0
- docs/getting-started/examples.md +1 -0
- docs/getting-started/installation.md +1 -0
- docs/getting-started/mcp-integration.md +1 -0
- docs/getting-started/quick-start.md +1 -0
- docs/license.md +1 -0
- docs/overview/architecture.md +1 -0
- docs/overview/features.md +1 -0
- docs/team.md +1 -0
- tests/unit/middleware/__init__.py +1 -0
- tests/unit/middleware/test_budget_tracker_phase7.py +1 -0
- tests/unit/middleware/test_state_machine.py +1 -0
- tests/unit/middleware/test_workflow_manager.py +1 -0
- tests/unit/orchestrator/__init__.py +1 -0
.github/workflows/docs.yml
CHANGED
|
@@ -53,3 +53,4 @@ jobs:
|
|
| 53 |
|
| 54 |
|
| 55 |
|
|
|
|
|
|
| 53 |
|
| 54 |
|
| 55 |
|
| 56 |
+
|
docs/api/agents.md
CHANGED
|
@@ -257,3 +257,4 @@ def create_input_parser_agent(model: Any | None = None) -> InputParserAgent
|
|
| 257 |
|
| 258 |
|
| 259 |
|
|
|
|
|
|
| 257 |
|
| 258 |
|
| 259 |
|
| 260 |
+
|
docs/api/models.md
CHANGED
|
@@ -235,3 +235,4 @@ class BudgetStatus(BaseModel):
|
|
| 235 |
|
| 236 |
|
| 237 |
|
|
|
|
|
|
| 235 |
|
| 236 |
|
| 237 |
|
| 238 |
+
|
docs/api/orchestrators.md
CHANGED
|
@@ -182,3 +182,4 @@ Runs Magentic orchestration.
|
|
| 182 |
|
| 183 |
|
| 184 |
|
|
|
|
|
|
| 182 |
|
| 183 |
|
| 184 |
|
| 185 |
+
|
docs/api/services.md
CHANGED
|
@@ -188,3 +188,4 @@ Analyzes a hypothesis using statistical methods.
|
|
| 188 |
|
| 189 |
|
| 190 |
|
|
|
|
|
|
| 188 |
|
| 189 |
|
| 190 |
|
| 191 |
+
|
docs/api/tools.md
CHANGED
|
@@ -222,3 +222,4 @@ Searches multiple tools in parallel.
|
|
| 222 |
|
| 223 |
|
| 224 |
|
|
|
|
|
|
| 222 |
|
| 223 |
|
| 224 |
|
| 225 |
+
|
docs/architecture/agents.md
CHANGED
|
@@ -179,3 +179,4 @@ Factory functions:
|
|
| 179 |
|
| 180 |
|
| 181 |
|
|
|
|
|
|
| 179 |
|
| 180 |
|
| 181 |
|
| 182 |
+
|
docs/architecture/middleware.md
CHANGED
|
@@ -129,3 +129,4 @@ All middleware components use `ContextVar` for thread-safe isolation:
|
|
| 129 |
|
| 130 |
|
| 131 |
|
|
|
|
|
|
| 129 |
|
| 130 |
|
| 131 |
|
| 132 |
+
|
docs/architecture/services.md
CHANGED
|
@@ -129,3 +129,4 @@ if settings.has_openai_key:
|
|
| 129 |
|
| 130 |
|
| 131 |
|
|
|
|
|
|
| 129 |
|
| 130 |
|
| 131 |
|
| 132 |
+
|
docs/architecture/tools.md
CHANGED
|
@@ -162,3 +162,4 @@ search_handler = SearchHandler(
|
|
| 162 |
|
| 163 |
|
| 164 |
|
|
|
|
|
|
| 162 |
|
| 163 |
|
| 164 |
|
| 165 |
+
|
docs/contributing/code-quality.md
CHANGED
|
@@ -68,3 +68,4 @@ async def search(self, query: str, max_results: int = 10) -> list[Evidence]:
|
|
| 68 |
|
| 69 |
|
| 70 |
|
|
|
|
|
|
| 68 |
|
| 69 |
|
| 70 |
|
| 71 |
+
|
docs/contributing/code-style.md
CHANGED
|
@@ -48,3 +48,4 @@ result = await loop.run_in_executor(None, cpu_bound_function, args)
|
|
| 48 |
|
| 49 |
|
| 50 |
|
|
|
|
|
|
| 48 |
|
| 49 |
|
| 50 |
|
| 51 |
+
|
docs/contributing/error-handling.md
CHANGED
|
@@ -56,3 +56,4 @@ except httpx.HTTPError as e:
|
|
| 56 |
|
| 57 |
|
| 58 |
|
|
|
|
|
|
| 56 |
|
| 57 |
|
| 58 |
|
| 59 |
+
|
docs/contributing/implementation-patterns.md
CHANGED
|
@@ -71,3 +71,4 @@ def get_embedding_service() -> EmbeddingService:
|
|
| 71 |
|
| 72 |
|
| 73 |
|
|
|
|
|
|
| 71 |
|
| 72 |
|
| 73 |
|
| 74 |
+
|
docs/contributing/index.md
CHANGED
|
@@ -150,3 +150,4 @@ Thank you for contributing to DeepCritical!
|
|
| 150 |
|
| 151 |
|
| 152 |
|
|
|
|
|
|
| 150 |
|
| 151 |
|
| 152 |
|
| 153 |
+
|
docs/contributing/prompt-engineering.md
CHANGED
|
@@ -56,3 +56,4 @@ This document outlines prompt engineering guidelines and citation validation rul
|
|
| 56 |
|
| 57 |
|
| 58 |
|
|
|
|
|
|
| 56 |
|
| 57 |
|
| 58 |
|
| 59 |
+
|
docs/contributing/testing.md
CHANGED
|
@@ -52,3 +52,4 @@ async def test_real_pubmed_search():
|
|
| 52 |
|
| 53 |
|
| 54 |
|
|
|
|
|
|
| 52 |
|
| 53 |
|
| 54 |
|
| 55 |
+
|
docs/getting-started/examples.md
CHANGED
|
@@ -196,3 +196,4 @@ USE_GRAPH_EXECUTION=true
|
|
| 196 |
|
| 197 |
|
| 198 |
|
|
|
|
|
|
| 196 |
|
| 197 |
|
| 198 |
|
| 199 |
+
|
docs/getting-started/installation.md
CHANGED
|
@@ -135,3 +135,4 @@ uv run pre-commit install
|
|
| 135 |
|
| 136 |
|
| 137 |
|
|
|
|
|
|
| 135 |
|
| 136 |
|
| 137 |
|
| 138 |
+
|
docs/getting-started/mcp-integration.md
CHANGED
|
@@ -202,3 +202,4 @@ You can configure multiple DeepCritical instances:
|
|
| 202 |
|
| 203 |
|
| 204 |
|
|
|
|
|
|
| 202 |
|
| 203 |
|
| 204 |
|
| 205 |
+
|
docs/getting-started/quick-start.md
CHANGED
|
@@ -106,3 +106,4 @@ What are the active clinical trials investigating Alzheimer's disease treatments
|
|
| 106 |
|
| 107 |
|
| 108 |
|
|
|
|
|
|
| 106 |
|
| 107 |
|
| 108 |
|
| 109 |
+
|
docs/license.md
CHANGED
|
@@ -26,3 +26,4 @@ SOFTWARE.
|
|
| 26 |
|
| 27 |
|
| 28 |
|
|
|
|
|
|
| 26 |
|
| 27 |
|
| 28 |
|
| 29 |
+
|
docs/overview/architecture.md
CHANGED
|
@@ -183,3 +183,4 @@ The system supports complex research workflows through:
|
|
| 183 |
|
| 184 |
|
| 185 |
|
|
|
|
|
|
| 183 |
|
| 184 |
|
| 185 |
|
| 186 |
+
|
docs/overview/features.md
CHANGED
|
@@ -135,3 +135,4 @@ DeepCritical provides a comprehensive set of features for AI-assisted research:
|
|
| 135 |
|
| 136 |
|
| 137 |
|
|
|
|
|
|
| 135 |
|
| 136 |
|
| 137 |
|
| 138 |
+
|
docs/team.md
CHANGED
|
@@ -31,3 +31,4 @@ We welcome contributions! See the [Contributing Guide](contributing/index.md) fo
|
|
| 31 |
|
| 32 |
|
| 33 |
|
|
|
|
|
|
| 31 |
|
| 32 |
|
| 33 |
|
| 34 |
+
|
tests/unit/middleware/__init__.py
CHANGED
|
@@ -2,3 +2,4 @@
|
|
| 2 |
|
| 3 |
|
| 4 |
|
|
|
|
|
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
+
|
tests/unit/middleware/test_budget_tracker_phase7.py
CHANGED
|
@@ -160,3 +160,4 @@ class TestIterationTokenTracking:
|
|
| 160 |
|
| 161 |
|
| 162 |
|
|
|
|
|
|
| 160 |
|
| 161 |
|
| 162 |
|
| 163 |
+
|
tests/unit/middleware/test_state_machine.py
CHANGED
|
@@ -357,3 +357,4 @@ class TestContextVarIsolation:
|
|
| 357 |
|
| 358 |
|
| 359 |
|
|
|
|
|
|
| 357 |
|
| 358 |
|
| 359 |
|
| 360 |
+
|
tests/unit/middleware/test_workflow_manager.py
CHANGED
|
@@ -287,3 +287,4 @@ class TestWorkflowManager:
|
|
| 287 |
|
| 288 |
|
| 289 |
|
|
|
|
|
|
| 287 |
|
| 288 |
|
| 289 |
|
| 290 |
+
|
tests/unit/orchestrator/__init__.py
CHANGED
|
@@ -2,3 +2,4 @@
|
|
| 2 |
|
| 3 |
|
| 4 |
|
|
|
|
|
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
+
|