mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-12 12:39:01 +08:00
Feature/feat1017 (#2872)
### What problem does this PR solve? 1. fix: mid map show error in knowledge graph, juse because ```@antv/g6```version changed 2. feat: concurrent threads configuration support in graph extractor 3. fix: used tokens update failed for tenant 4. feat: timeout configuration support for llm 5. fix: regex error in graph extractor 6. feat: qwen rerank(```gte-rerank```) support 7. fix: timeout deal in knowledge graph index process. Now chat by stream output, also, it is configuratable. 8. feat: ```qwen-long``` model configuration ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: chongchuanbing <chongchuanbing@gmail.com> Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com>
This commit is contained in:
parent
4bdf3fd48e
commit
ac26d09a59
@ -167,11 +167,13 @@ class TenantLLMService(CommonService):
|
|||||||
else:
|
else:
|
||||||
assert False, "LLM type error"
|
assert False, "LLM type error"
|
||||||
|
|
||||||
|
llm_name = mdlnm.split("@")[0] if "@" in mdlnm else mdlnm
|
||||||
|
|
||||||
num = 0
|
num = 0
|
||||||
try:
|
try:
|
||||||
for u in cls.query(tenant_id=tenant_id, llm_name=mdlnm):
|
for u in cls.query(tenant_id=tenant_id, llm_name=llm_name):
|
||||||
num += cls.model.update(used_tokens=u.used_tokens + used_tokens)\
|
num += cls.model.update(used_tokens=u.used_tokens + used_tokens)\
|
||||||
.where(cls.model.tenant_id == tenant_id, cls.model.llm_name == mdlnm)\
|
.where(cls.model.tenant_id == tenant_id, cls.model.llm_name == llm_name)\
|
||||||
.execute()
|
.execute()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
pass
|
pass
|
||||||
@ -207,7 +209,7 @@ class LLMBundle(object):
|
|||||||
if not TenantLLMService.increase_usage(
|
if not TenantLLMService.increase_usage(
|
||||||
self.tenant_id, self.llm_type, used_tokens):
|
self.tenant_id, self.llm_type, used_tokens):
|
||||||
database_logger.error(
|
database_logger.error(
|
||||||
"Can't update token usage for {}/EMBEDDING".format(self.tenant_id))
|
"Can't update token usage for {}/EMBEDDING used_tokens: {}".format(self.tenant_id, used_tokens))
|
||||||
return emd, used_tokens
|
return emd, used_tokens
|
||||||
|
|
||||||
def encode_queries(self, query: str):
|
def encode_queries(self, query: str):
|
||||||
@ -215,7 +217,7 @@ class LLMBundle(object):
|
|||||||
if not TenantLLMService.increase_usage(
|
if not TenantLLMService.increase_usage(
|
||||||
self.tenant_id, self.llm_type, used_tokens):
|
self.tenant_id, self.llm_type, used_tokens):
|
||||||
database_logger.error(
|
database_logger.error(
|
||||||
"Can't update token usage for {}/EMBEDDING".format(self.tenant_id))
|
"Can't update token usage for {}/EMBEDDING used_tokens: {}".format(self.tenant_id, used_tokens))
|
||||||
return emd, used_tokens
|
return emd, used_tokens
|
||||||
|
|
||||||
def similarity(self, query: str, texts: list):
|
def similarity(self, query: str, texts: list):
|
||||||
@ -223,7 +225,7 @@ class LLMBundle(object):
|
|||||||
if not TenantLLMService.increase_usage(
|
if not TenantLLMService.increase_usage(
|
||||||
self.tenant_id, self.llm_type, used_tokens):
|
self.tenant_id, self.llm_type, used_tokens):
|
||||||
database_logger.error(
|
database_logger.error(
|
||||||
"Can't update token usage for {}/RERANK".format(self.tenant_id))
|
"Can't update token usage for {}/RERANK used_tokens: {}".format(self.tenant_id, used_tokens))
|
||||||
return sim, used_tokens
|
return sim, used_tokens
|
||||||
|
|
||||||
def describe(self, image, max_tokens=300):
|
def describe(self, image, max_tokens=300):
|
||||||
@ -231,7 +233,7 @@ class LLMBundle(object):
|
|||||||
if not TenantLLMService.increase_usage(
|
if not TenantLLMService.increase_usage(
|
||||||
self.tenant_id, self.llm_type, used_tokens):
|
self.tenant_id, self.llm_type, used_tokens):
|
||||||
database_logger.error(
|
database_logger.error(
|
||||||
"Can't update token usage for {}/IMAGE2TEXT".format(self.tenant_id))
|
"Can't update token usage for {}/IMAGE2TEXT used_tokens: {}".format(self.tenant_id, used_tokens))
|
||||||
return txt
|
return txt
|
||||||
|
|
||||||
def transcription(self, audio):
|
def transcription(self, audio):
|
||||||
@ -239,7 +241,7 @@ class LLMBundle(object):
|
|||||||
if not TenantLLMService.increase_usage(
|
if not TenantLLMService.increase_usage(
|
||||||
self.tenant_id, self.llm_type, used_tokens):
|
self.tenant_id, self.llm_type, used_tokens):
|
||||||
database_logger.error(
|
database_logger.error(
|
||||||
"Can't update token usage for {}/SEQUENCE2TXT".format(self.tenant_id))
|
"Can't update token usage for {}/SEQUENCE2TXT used_tokens: {}".format(self.tenant_id, used_tokens))
|
||||||
return txt
|
return txt
|
||||||
|
|
||||||
def tts(self, text):
|
def tts(self, text):
|
||||||
@ -254,10 +256,10 @@ class LLMBundle(object):
|
|||||||
|
|
||||||
def chat(self, system, history, gen_conf):
|
def chat(self, system, history, gen_conf):
|
||||||
txt, used_tokens = self.mdl.chat(system, history, gen_conf)
|
txt, used_tokens = self.mdl.chat(system, history, gen_conf)
|
||||||
if not TenantLLMService.increase_usage(
|
if isinstance(txt, int) and not TenantLLMService.increase_usage(
|
||||||
self.tenant_id, self.llm_type, used_tokens, self.llm_name):
|
self.tenant_id, self.llm_type, used_tokens, self.llm_name):
|
||||||
database_logger.error(
|
database_logger.error(
|
||||||
"Can't update token usage for {}/CHAT".format(self.tenant_id))
|
"Can't update token usage for {}/CHAT llm_name: {}, used_tokens: {}".format(self.tenant_id, self.llm_name, used_tokens))
|
||||||
return txt
|
return txt
|
||||||
|
|
||||||
def chat_streamly(self, system, history, gen_conf):
|
def chat_streamly(self, system, history, gen_conf):
|
||||||
@ -266,6 +268,6 @@ class LLMBundle(object):
|
|||||||
if not TenantLLMService.increase_usage(
|
if not TenantLLMService.increase_usage(
|
||||||
self.tenant_id, self.llm_type, txt, self.llm_name):
|
self.tenant_id, self.llm_type, txt, self.llm_name):
|
||||||
database_logger.error(
|
database_logger.error(
|
||||||
"Can't update token usage for {}/CHAT".format(self.tenant_id))
|
"Can't update token usage for {}/CHAT llm_name: {}, content: {}".format(self.tenant_id, self.llm_name, txt))
|
||||||
return
|
return
|
||||||
yield txt
|
yield txt
|
||||||
|
@ -89,9 +89,15 @@
|
|||||||
{
|
{
|
||||||
"name": "Tongyi-Qianwen",
|
"name": "Tongyi-Qianwen",
|
||||||
"logo": "",
|
"logo": "",
|
||||||
"tags": "LLM,TEXT EMBEDDING,SPEECH2TEXT,MODERATION",
|
"tags": "LLM,TEXT EMBEDDING,TEXT RE-RANK,SPEECH2TEXT,MODERATION",
|
||||||
"status": "1",
|
"status": "1",
|
||||||
"llm": [
|
"llm": [
|
||||||
|
{
|
||||||
|
"llm_name": "qwen-long",
|
||||||
|
"tags": "LLM,CHAT,10000K",
|
||||||
|
"max_tokens": 1000000,
|
||||||
|
"model_type": "chat"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"llm_name": "qwen-turbo",
|
"llm_name": "qwen-turbo",
|
||||||
"tags": "LLM,CHAT,8K",
|
"tags": "LLM,CHAT,8K",
|
||||||
@ -139,6 +145,12 @@
|
|||||||
"tags": "LLM,CHAT,IMAGE2TEXT",
|
"tags": "LLM,CHAT,IMAGE2TEXT",
|
||||||
"max_tokens": 765,
|
"max_tokens": 765,
|
||||||
"model_type": "image2text"
|
"model_type": "image2text"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"llm_name": "gte-rerank",
|
||||||
|
"tags": "RE-RANK,4k",
|
||||||
|
"max_tokens": 4000,
|
||||||
|
"model_type": "rerank"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -164,6 +164,7 @@ class GraphExtractor:
|
|||||||
text = perform_variable_replacements(self._extraction_prompt, variables=variables)
|
text = perform_variable_replacements(self._extraction_prompt, variables=variables)
|
||||||
gen_conf = {"temperature": 0.3}
|
gen_conf = {"temperature": 0.3}
|
||||||
response = self._llm.chat(text, [{"role": "user", "content": "Output:"}], gen_conf)
|
response = self._llm.chat(text, [{"role": "user", "content": "Output:"}], gen_conf)
|
||||||
|
if response.find("**ERROR**") >= 0: raise Exception(response)
|
||||||
token_count = num_tokens_from_string(text + response)
|
token_count = num_tokens_from_string(text + response)
|
||||||
|
|
||||||
results = response or ""
|
results = response or ""
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
import os
|
||||||
from concurrent.futures import ThreadPoolExecutor
|
from concurrent.futures import ThreadPoolExecutor
|
||||||
import json
|
import json
|
||||||
from functools import reduce
|
from functools import reduce
|
||||||
@ -64,7 +65,8 @@ def build_knowledge_graph_chunks(tenant_id: str, chunks: List[str], callback, en
|
|||||||
texts, graphs = [], []
|
texts, graphs = [], []
|
||||||
cnt = 0
|
cnt = 0
|
||||||
threads = []
|
threads = []
|
||||||
exe = ThreadPoolExecutor(max_workers=50)
|
max_workers = int(os.environ.get('GRAPH_EXTRACTOR_MAX_WORKERS', 50))
|
||||||
|
exe = ThreadPoolExecutor(max_workers=max_workers)
|
||||||
for i in range(len(chunks)):
|
for i in range(len(chunks)):
|
||||||
tkn_cnt = num_tokens_from_string(chunks[i])
|
tkn_cnt = num_tokens_from_string(chunks[i])
|
||||||
if cnt+tkn_cnt >= left_token_count and texts:
|
if cnt+tkn_cnt >= left_token_count and texts:
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
import collections
|
import collections
|
||||||
import logging
|
import logging
|
||||||
|
import os
|
||||||
import re
|
import re
|
||||||
import logging
|
import logging
|
||||||
import traceback
|
import traceback
|
||||||
@ -89,7 +90,8 @@ class MindMapExtractor:
|
|||||||
prompt_variables = {}
|
prompt_variables = {}
|
||||||
|
|
||||||
try:
|
try:
|
||||||
exe = ThreadPoolExecutor(max_workers=12)
|
max_workers = int(os.environ.get('MINDMAP_EXTRACTOR_MAX_WORKERS', 12))
|
||||||
|
exe = ThreadPoolExecutor(max_workers=max_workers)
|
||||||
threads = []
|
threads = []
|
||||||
token_count = max(self._llm.max_length * 0.8, self._llm.max_length-512)
|
token_count = max(self._llm.max_length * 0.8, self._llm.max_length-512)
|
||||||
texts = []
|
texts = []
|
||||||
|
@ -122,7 +122,8 @@ RerankModel = {
|
|||||||
"TogetherAI": TogetherAIRerank,
|
"TogetherAI": TogetherAIRerank,
|
||||||
"SILICONFLOW": SILICONFLOWRerank,
|
"SILICONFLOW": SILICONFLOWRerank,
|
||||||
"BaiduYiyan": BaiduYiyanRerank,
|
"BaiduYiyan": BaiduYiyanRerank,
|
||||||
"Voyage AI": VoyageRerank
|
"Voyage AI": VoyageRerank,
|
||||||
|
"Tongyi-Qianwen": QWenRerank,
|
||||||
}
|
}
|
||||||
|
|
||||||
Seq2txtModel = {
|
Seq2txtModel = {
|
||||||
|
@ -31,7 +31,8 @@ import asyncio
|
|||||||
|
|
||||||
class Base(ABC):
|
class Base(ABC):
|
||||||
def __init__(self, key, model_name, base_url):
|
def __init__(self, key, model_name, base_url):
|
||||||
self.client = OpenAI(api_key=key, base_url=base_url)
|
timeout = int(os.environ.get('LM_TIMEOUT_SECONDS', 600))
|
||||||
|
self.client = OpenAI(api_key=key, base_url=base_url, timeout=timeout)
|
||||||
self.model_name = model_name
|
self.model_name = model_name
|
||||||
|
|
||||||
def chat(self, system, history, gen_conf):
|
def chat(self, system, history, gen_conf):
|
||||||
@ -216,9 +217,12 @@ class QWenChat(Base):
|
|||||||
self.model_name = model_name
|
self.model_name = model_name
|
||||||
|
|
||||||
def chat(self, system, history, gen_conf):
|
def chat(self, system, history, gen_conf):
|
||||||
|
stream_flag = str(os.environ.get('QWEN_CHAT_BY_STREAM', 'true')).lower() == 'true'
|
||||||
|
if not stream_flag:
|
||||||
from http import HTTPStatus
|
from http import HTTPStatus
|
||||||
if system:
|
if system:
|
||||||
history.insert(0, {"role": "system", "content": system})
|
history.insert(0, {"role": "system", "content": system})
|
||||||
|
|
||||||
response = Generation.call(
|
response = Generation.call(
|
||||||
self.model_name,
|
self.model_name,
|
||||||
messages=history,
|
messages=history,
|
||||||
@ -236,8 +240,16 @@ class QWenChat(Base):
|
|||||||
return ans, tk_count
|
return ans, tk_count
|
||||||
|
|
||||||
return "**ERROR**: " + response.message, tk_count
|
return "**ERROR**: " + response.message, tk_count
|
||||||
|
else:
|
||||||
|
g = self._chat_streamly(system, history, gen_conf, incremental_output=True)
|
||||||
|
result_list = list(g)
|
||||||
|
error_msg_list = [item for item in result_list if str(item).find("**ERROR**") >= 0]
|
||||||
|
if len(error_msg_list) > 0:
|
||||||
|
return "**ERROR**: " + "".join(error_msg_list) , 0
|
||||||
|
else:
|
||||||
|
return "".join(result_list[:-1]), result_list[-1]
|
||||||
|
|
||||||
def chat_streamly(self, system, history, gen_conf):
|
def _chat_streamly(self, system, history, gen_conf, incremental_output=False):
|
||||||
from http import HTTPStatus
|
from http import HTTPStatus
|
||||||
if system:
|
if system:
|
||||||
history.insert(0, {"role": "system", "content": system})
|
history.insert(0, {"role": "system", "content": system})
|
||||||
@ -249,6 +261,7 @@ class QWenChat(Base):
|
|||||||
messages=history,
|
messages=history,
|
||||||
result_format='message',
|
result_format='message',
|
||||||
stream=True,
|
stream=True,
|
||||||
|
incremental_output=incremental_output,
|
||||||
**gen_conf
|
**gen_conf
|
||||||
)
|
)
|
||||||
for resp in response:
|
for resp in response:
|
||||||
@ -267,6 +280,9 @@ class QWenChat(Base):
|
|||||||
|
|
||||||
yield tk_count
|
yield tk_count
|
||||||
|
|
||||||
|
def chat_streamly(self, system, history, gen_conf):
|
||||||
|
return self._chat_streamly(system, history, gen_conf)
|
||||||
|
|
||||||
|
|
||||||
class ZhipuChat(Base):
|
class ZhipuChat(Base):
|
||||||
def __init__(self, key, model_name="glm-3-turbo", **kwargs):
|
def __init__(self, key, model_name="glm-3-turbo", **kwargs):
|
||||||
|
@ -390,3 +390,27 @@ class VoyageRerank(Base):
|
|||||||
for r in res.results:
|
for r in res.results:
|
||||||
rank[r.index] = r.relevance_score
|
rank[r.index] = r.relevance_score
|
||||||
return rank, res.total_tokens
|
return rank, res.total_tokens
|
||||||
|
|
||||||
|
class QWenRerank(Base):
|
||||||
|
def __init__(self, key, model_name='gte-rerank', base_url=None, **kwargs):
|
||||||
|
import dashscope
|
||||||
|
self.api_key = key
|
||||||
|
self.model_name = dashscope.TextReRank.Models.gte_rerank if model_name is None else model_name
|
||||||
|
|
||||||
|
def similarity(self, query: str, texts: list):
|
||||||
|
import dashscope
|
||||||
|
from http import HTTPStatus
|
||||||
|
resp = dashscope.TextReRank.call(
|
||||||
|
api_key=self.api_key,
|
||||||
|
model=self.model_name,
|
||||||
|
query=query,
|
||||||
|
documents=texts,
|
||||||
|
top_n=len(texts),
|
||||||
|
return_documents=False
|
||||||
|
)
|
||||||
|
rank = np.zeros(len(texts), dtype=float)
|
||||||
|
if resp.status_code == HTTPStatus.OK:
|
||||||
|
for r in resp.output.results:
|
||||||
|
rank[r.index] = r.relevance_score
|
||||||
|
return rank, resp.usage.total_tokens
|
||||||
|
return rank, 0
|
Loading…
x
Reference in New Issue
Block a user