chore: bump circuitforge-core dep to >=0.8.0; fix stale resources imports

- pyproject.toml: circuitforge-core>=0.6.0 → >=0.8.0 (orch split)
- vl_model.py: circuitforge_core.resources → circuitforge_orch.client
- llm_recipe.py: circuitforge_core.resources → circuitforge_orch.client
This commit is contained in:
pyr0ball 2026-04-04 22:39:04 -07:00
parent ed6813713e
commit e605954254
3 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ def _try_docuvision(image_path: str | Path) -> str | None:
if not cf_orch_url: if not cf_orch_url:
return None return None
try: try:
from circuitforge_core.resources import CFOrchClient from circuitforge_orch.client import CFOrchClient
from app.services.ocr.docuvision_client import DocuvisionClient from app.services.ocr.docuvision_client import DocuvisionClient
client = CFOrchClient(cf_orch_url) client = CFOrchClient(cf_orch_url)

View file

@ -143,7 +143,7 @@ class LLMRecipeGenerator:
cf_orch_url = os.environ.get("CF_ORCH_URL") cf_orch_url = os.environ.get("CF_ORCH_URL")
if cf_orch_url: if cf_orch_url:
try: try:
from circuitforge_core.resources import CFOrchClient from circuitforge_orch.client import CFOrchClient
client = CFOrchClient(cf_orch_url) client = CFOrchClient(cf_orch_url)
return client.allocate( return client.allocate(
service="vllm", service="vllm",

View file

@ -23,7 +23,7 @@ dependencies = [
"httpx>=0.27", "httpx>=0.27",
"requests>=2.31", "requests>=2.31",
# CircuitForge shared scaffold # CircuitForge shared scaffold
"circuitforge-core>=0.6.0", "circuitforge-core>=0.8.0",
] ]
[tool.setuptools.packages.find] [tool.setuptools.packages.find]