lin.yunfan

Results 6 comments of lin.yunfan

related issue https://github.com/hwchase17/langchain/issues/3114

I have the same problem. not work with streaming = True

> Hi @Wohoholo we don't have a feature supporting Chinese tokenization right now but would be open to adding it. Would adding a `tokenization: "chinese"` option using https://github.com/go-ego/gse suit? This...

> do the whitespaces also be embedded by embedding model? could this effect the search performance in vector seach aspect?

> whitespace will be embedded if your input text with whitespace. In my method, raw text will be embbed and keyword with whitespace will be saved. Like this: raw_text =...

> yep,like this response = ( client.query .get("JeopardyQuestion", ["question", "answer"]) .with_hybrid( query="food", vector=vector ) .with_limit(3) .do() ) Thank you