Skip to content

Commit 78645b5

Browse files
committed
fix(pipeline): add missing asyncio import in llm_adapters and pipeline to prevent NameError in async fallback branches
1 parent 0550dc0 commit 78645b5

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

json_ld_extractor/llm_adapters.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""Multi-provider LLM inference adapters (Ollama, Gemini, Groq, OpenAI, DeepSeek, Custom) with async support and SSRF protection."""
3-
1+
import asyncio
42
import html
53
import ipaddress
64
import json

json_ld_extractor/pipeline.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
# -*- coding: utf-8 -*-
2-
"""Orkestrator Multi-Agent utama (Agent 1-5) dan Section-Wise Map-Reduce Extraction Engine (CorpusLD v3.0)."""
3-
1+
import asyncio
2+
import concurrent.futures
43
import html
54
import json
65
import logging

0 commit comments

Comments
 (0)