mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-02 11:52:37 +02:00
Fix token chunker, broken API invocation (#454)
This commit is contained in:
parent
6c681967ab
commit
a7de175b33
1 changed files with 2 additions and 2 deletions
|
|
@ -9,7 +9,7 @@ from langchain_text_splitters import TokenTextSplitter
|
||||||
from prometheus_client import Histogram
|
from prometheus_client import Histogram
|
||||||
|
|
||||||
from ... schema import TextDocument, Chunk
|
from ... schema import TextDocument, Chunk
|
||||||
from ... base import FlowProcessor
|
from ... base import FlowProcessor, ConsumerSpec, ProducerSpec
|
||||||
|
|
||||||
# Module logger
|
# Module logger
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
@ -20,7 +20,7 @@ class Processor(FlowProcessor):
|
||||||
|
|
||||||
def __init__(self, **params):
|
def __init__(self, **params):
|
||||||
|
|
||||||
id = params.get("id")
|
id = params.get("id", default_ident)
|
||||||
chunk_size = params.get("chunk_size", 250)
|
chunk_size = params.get("chunk_size", 250)
|
||||||
chunk_overlap = params.get("chunk_overlap", 15)
|
chunk_overlap = params.get("chunk_overlap", 15)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue