sycommon-python-lib 0.1.57b5__tar.gz → 0.1.57b7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/PKG-INFO +2 -1
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/pyproject.toml +2 -1
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/embedding.py +8 -3
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/get_llm.py +20 -13
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/struct_token.py +113 -4
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/usage_token.py +5 -3
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/rabbitmq/rabbitmq_client.py +71 -99
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon_python_lib.egg-info/PKG-INFO +2 -1
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon_python_lib.egg-info/requires.txt +1 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/README.md +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/setup.cfg +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/command/cli.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/Config.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/DatabaseConfig.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/EmbeddingConfig.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/LLMConfig.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/LangfuseConfig.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/MQConfig.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/RerankerConfig.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/SentryConfig.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/database/async_base_db_service.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/database/async_database_service.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/database/base_db_service.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/database/database_service.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/health/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/health/health_check.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/health/metrics.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/health/ping.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/llm_logger.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/llm_tokens.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/sy_langfuse.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/async_sql_logger.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/kafka_log.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/logger_levels.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/logger_wrapper.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/sql_logger.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/context.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/cors.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/docs.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/exception.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/middleware.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/monitor_memory.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/mq.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/timeout.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/traceid.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/base_http.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/log.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/mqlistener_config.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/mqmsg_model.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/mqsend_config.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/sso_user.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/notice/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/notice/uvicorn_monitor.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/rabbitmq/rabbitmq_pool.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/rabbitmq/rabbitmq_service.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/rabbitmq/rabbitmq_service_client_manager.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/rabbitmq/rabbitmq_service_connection_monitor.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/rabbitmq/rabbitmq_service_consumer_manager.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/rabbitmq/rabbitmq_service_core.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/rabbitmq/rabbitmq_service_producer_manager.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/sentry/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/sentry/sy_sentry.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/services.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/sse/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/sse/event.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/sse/sse.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/example.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/example2.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/feign.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/feign_client.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/nacos_client_base.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/nacos_config_manager.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/nacos_heartbeat_manager.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/nacos_service.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/nacos_service_discovery.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/nacos_service_registration.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/param.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/tools/__init__.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/tools/docs.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/tools/env.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/tools/merge_headers.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/tools/snowflake.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/tools/timing.py +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon_python_lib.egg-info/SOURCES.txt +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon_python_lib.egg-info/dependency_links.txt +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon_python_lib.egg-info/entry_points.txt +0 -0
- {sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon_python_lib.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sycommon-python-lib
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.57b7
|
|
4
4
|
Summary: Add your description here
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -25,6 +25,7 @@ Requires-Dist: pyyaml>=6.0.3
|
|
|
25
25
|
Requires-Dist: sentry-sdk[fastapi]>=2.49.0
|
|
26
26
|
Requires-Dist: sqlalchemy[asyncio]>=2.0.45
|
|
27
27
|
Requires-Dist: starlette>=0.50.0
|
|
28
|
+
Requires-Dist: tiktoken>=0.12.0
|
|
28
29
|
Requires-Dist: uvicorn>=0.40.0
|
|
29
30
|
|
|
30
31
|
# sycommon-python-lib
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "sycommon-python-lib"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.57b7"
|
|
4
4
|
description = "Add your description here"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -26,6 +26,7 @@ dependencies = [
|
|
|
26
26
|
"sentry-sdk[fastapi]>=2.49.0",
|
|
27
27
|
"sqlalchemy[asyncio]>=2.0.45",
|
|
28
28
|
"starlette>=0.50.0",
|
|
29
|
+
"tiktoken>=0.12.0",
|
|
29
30
|
"uvicorn>=0.40.0",
|
|
30
31
|
]
|
|
31
32
|
|
|
@@ -286,9 +286,12 @@ class Embedding(metaclass=SingletonMeta):
|
|
|
286
286
|
for i in range(0, len(corpus), batch_size):
|
|
287
287
|
batch_texts = corpus[i: i + batch_size]
|
|
288
288
|
|
|
289
|
+
SYLogger.info(
|
|
290
|
+
f"Requesting embeddings for text: {len(batch_texts)} items (model: {actual_model}, timeout: {timeout or 'None'})")
|
|
291
|
+
|
|
289
292
|
# 给每个异步任务传入模型名称和超时配置
|
|
290
293
|
tasks = [self._get_embeddings_http_async(
|
|
291
|
-
text, model=
|
|
294
|
+
text, model=actual_model, timeout=request_timeout) for text in batch_texts]
|
|
292
295
|
results = await asyncio.gather(*tasks)
|
|
293
296
|
|
|
294
297
|
for result in results:
|
|
@@ -345,9 +348,11 @@ class Embedding(metaclass=SingletonMeta):
|
|
|
345
348
|
actual_model = model or self.default_reranker_model
|
|
346
349
|
SYLogger.info(
|
|
347
350
|
f"Requesting reranker for top_results: {top_results} (model: {actual_model}, max_concurrency: {self.max_concurrency}, timeout: {timeout or 'None'})")
|
|
348
|
-
|
|
351
|
+
# 打印请求参数
|
|
352
|
+
SYLogger.info(
|
|
353
|
+
f"Requesting reranker for top_results: {top_results} (model: {actual_model}) (query: {query}) (timeout: {timeout or 'None'})")
|
|
349
354
|
data = await self._get_reranker_http_async(
|
|
350
|
-
top_results, query, model=
|
|
355
|
+
top_results, query, model=actual_model, timeout=request_timeout)
|
|
351
356
|
SYLogger.info(
|
|
352
357
|
f"Reranker for top_results completed (model: {actual_model})")
|
|
353
358
|
return data
|
|
@@ -3,11 +3,15 @@ from langchain.chat_models import init_chat_model
|
|
|
3
3
|
from sycommon.config.LLMConfig import LLMConfig
|
|
4
4
|
from sycommon.llm.sy_langfuse import LangfuseInitializer
|
|
5
5
|
from sycommon.llm.usage_token import LLMWithAutoTokenUsage
|
|
6
|
+
from typing import Any
|
|
6
7
|
|
|
7
8
|
|
|
8
9
|
def get_llm(
|
|
9
10
|
model: str = None,
|
|
10
|
-
|
|
11
|
+
*,
|
|
12
|
+
streaming: bool = False,
|
|
13
|
+
temperature: float = 0.1,
|
|
14
|
+
**kwargs: Any
|
|
11
15
|
) -> LLMWithAutoTokenUsage:
|
|
12
16
|
if not model:
|
|
13
17
|
model = "Qwen2.5-72B"
|
|
@@ -16,22 +20,25 @@ def get_llm(
|
|
|
16
20
|
if not llmConfig:
|
|
17
21
|
raise Exception(f"无效的模型配置:{model}")
|
|
18
22
|
|
|
19
|
-
# 初始化Langfuse
|
|
23
|
+
# 初始化 Langfuse
|
|
20
24
|
langfuse_callbacks, langfuse = LangfuseInitializer.get()
|
|
21
|
-
|
|
22
25
|
callbacks = [LLMLogger()] + langfuse_callbacks
|
|
23
26
|
|
|
24
|
-
|
|
25
|
-
model_provider
|
|
26
|
-
model
|
|
27
|
-
base_url
|
|
28
|
-
api_key
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
27
|
+
init_params = {
|
|
28
|
+
"model_provider": llmConfig.provider,
|
|
29
|
+
"model": llmConfig.model,
|
|
30
|
+
"base_url": llmConfig.baseUrl,
|
|
31
|
+
"api_key": "-",
|
|
32
|
+
"callbacks": callbacks,
|
|
33
|
+
"temperature": temperature,
|
|
34
|
+
"streaming": streaming,
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
init_params.update(kwargs)
|
|
38
|
+
|
|
39
|
+
llm = init_chat_model(**init_params)
|
|
33
40
|
|
|
34
41
|
if llm is None:
|
|
35
42
|
raise Exception(f"初始化原始LLM实例失败:{model}")
|
|
36
43
|
|
|
37
|
-
return LLMWithAutoTokenUsage(llm, langfuse)
|
|
44
|
+
return LLMWithAutoTokenUsage(llm, langfuse, llmConfig)
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/struct_token.py
RENAMED
|
@@ -1,21 +1,109 @@
|
|
|
1
|
+
import tiktoken
|
|
1
2
|
from typing import Dict, List, Optional, Any
|
|
2
3
|
from langfuse import Langfuse, LangfuseSpan, propagate_attributes
|
|
3
4
|
from sycommon.llm.llm_logger import LLMLogger
|
|
4
5
|
from langchain_core.runnables import Runnable, RunnableConfig
|
|
5
|
-
from langchain_core.messages import BaseMessage, HumanMessage
|
|
6
|
+
from langchain_core.messages import BaseMessage, SystemMessage, HumanMessage
|
|
6
7
|
from sycommon.llm.llm_tokens import TokensCallbackHandler
|
|
7
8
|
from sycommon.logging.kafka_log import SYLogger
|
|
9
|
+
from sycommon.config.LLMConfig import LLMConfig
|
|
8
10
|
from sycommon.tools.env import get_env_var
|
|
9
11
|
from sycommon.tools.merge_headers import get_header_value
|
|
10
12
|
|
|
11
13
|
|
|
12
14
|
class StructuredRunnableWithToken(Runnable):
|
|
13
|
-
"""
|
|
15
|
+
"""
|
|
16
|
+
统一功能 Runnable:Trace追踪 + Token统计 + 自动上下文压缩
|
|
17
|
+
"""
|
|
14
18
|
|
|
15
|
-
def __init__(
|
|
19
|
+
def __init__(
|
|
20
|
+
self,
|
|
21
|
+
retry_chain: Runnable,
|
|
22
|
+
langfuse: Optional[Langfuse] = None,
|
|
23
|
+
llmConfig: Optional[LLMConfig] = None,
|
|
24
|
+
model_name: str = "Qwen2.5-72B",
|
|
25
|
+
enable_compression: bool = True,
|
|
26
|
+
threshold_ratio: float = 0.8
|
|
27
|
+
):
|
|
16
28
|
super().__init__()
|
|
17
29
|
self.retry_chain = retry_chain
|
|
18
30
|
self.langfuse = langfuse
|
|
31
|
+
self.llmConfig = llmConfig
|
|
32
|
+
self.model_name = model_name
|
|
33
|
+
self.enable_compression = enable_compression
|
|
34
|
+
self.threshold_ratio = threshold_ratio
|
|
35
|
+
|
|
36
|
+
# 初始化 Tokenizer
|
|
37
|
+
try:
|
|
38
|
+
self.encoding = tiktoken.encoding_for_model(model_name)
|
|
39
|
+
except KeyError:
|
|
40
|
+
self.encoding = tiktoken.get_encoding("cl100k_base")
|
|
41
|
+
|
|
42
|
+
def _count_tokens(self, messages: List[BaseMessage]) -> int:
|
|
43
|
+
"""快速估算 Token 数量"""
|
|
44
|
+
num_tokens = 0
|
|
45
|
+
for message in messages:
|
|
46
|
+
num_tokens += 4 # 每条消息的固定开销
|
|
47
|
+
# 兼容 content 是字符串或者 dict 的情况
|
|
48
|
+
content = message.content
|
|
49
|
+
if isinstance(content, str):
|
|
50
|
+
num_tokens += len(self.encoding.encode(content))
|
|
51
|
+
elif isinstance(content, list): # 多模态或复杂结构
|
|
52
|
+
for item in content:
|
|
53
|
+
if isinstance(item, dict) and "text" in item:
|
|
54
|
+
num_tokens += len(self.encoding.encode(item["text"]))
|
|
55
|
+
elif isinstance(content, dict):
|
|
56
|
+
num_tokens += len(self.encoding.encode(str(content)))
|
|
57
|
+
return num_tokens
|
|
58
|
+
|
|
59
|
+
async def _acompress_context(self, messages: List[BaseMessage]) -> List[BaseMessage]:
|
|
60
|
+
"""执行异步上下文压缩"""
|
|
61
|
+
# 策略:保留 System Prompt + 最近 N 条,中间的摘要
|
|
62
|
+
keep_last_n = 4
|
|
63
|
+
|
|
64
|
+
# 分离系统消息和对话消息
|
|
65
|
+
system_msgs = [m for m in messages if isinstance(m, SystemMessage)]
|
|
66
|
+
conversation = [
|
|
67
|
+
m for m in messages if not isinstance(m, SystemMessage)]
|
|
68
|
+
|
|
69
|
+
if len(conversation) <= keep_last_n:
|
|
70
|
+
return messages
|
|
71
|
+
|
|
72
|
+
to_summarize = conversation[:-keep_last_n]
|
|
73
|
+
keep_recent = conversation[-keep_last_n:]
|
|
74
|
+
|
|
75
|
+
# 构造摘要 Prompt
|
|
76
|
+
# 注意:这里直接使用 retry_chain 进行摘要,防止死循环
|
|
77
|
+
summary_prompt = [
|
|
78
|
+
SystemMessage(
|
|
79
|
+
content="请将上下文内容进行摘要,保留关键信息,将内容压缩到原来长度的50%左右,保留关键信息。"),
|
|
80
|
+
HumanMessage(content=f"历史记录:\n{to_summarize}\n\n摘要:")
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
try:
|
|
84
|
+
SYLogger.info(
|
|
85
|
+
f"🚀 Triggering compression: {len(to_summarize)} messages -> summary")
|
|
86
|
+
|
|
87
|
+
# 调用子链生成摘要
|
|
88
|
+
# 【关键】必须清空 callbacks,否则 Langfuse 会递归追踪,导致死循环或噪音
|
|
89
|
+
summary_result = await self.retry_chain.ainvoke(
|
|
90
|
+
{"messages": summary_prompt},
|
|
91
|
+
config=RunnableConfig(callbacks=[])
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
summary_text = summary_result.content if hasattr(
|
|
95
|
+
summary_result, 'content') else str(summary_result)
|
|
96
|
+
|
|
97
|
+
# 重组消息:System + Summary + Recent
|
|
98
|
+
new_messages = system_msgs + \
|
|
99
|
+
[SystemMessage(
|
|
100
|
+
content=f"[History Summary]: {summary_text}")] + keep_recent
|
|
101
|
+
return new_messages
|
|
102
|
+
|
|
103
|
+
except Exception as e:
|
|
104
|
+
SYLogger.error(
|
|
105
|
+
f"❌ Compression failed: {e}, using original context.")
|
|
106
|
+
return messages
|
|
19
107
|
|
|
20
108
|
def _adapt_input(self, input: Any) -> List[BaseMessage]:
|
|
21
109
|
"""适配输入格式"""
|
|
@@ -25,6 +113,10 @@ class StructuredRunnableWithToken(Runnable):
|
|
|
25
113
|
return [input]
|
|
26
114
|
elif isinstance(input, str):
|
|
27
115
|
return [HumanMessage(content=input)]
|
|
116
|
+
elif isinstance(input, dict) and "messages" in input:
|
|
117
|
+
# 如果已经是标准格式字典,直接提取
|
|
118
|
+
msgs = input["messages"]
|
|
119
|
+
return msgs if isinstance(msgs, list) else [msgs]
|
|
28
120
|
elif isinstance(input, dict) and "input" in input:
|
|
29
121
|
return [HumanMessage(content=str(input["input"]))]
|
|
30
122
|
else:
|
|
@@ -40,7 +132,7 @@ class StructuredRunnableWithToken(Runnable):
|
|
|
40
132
|
token_handler = TokensCallbackHandler()
|
|
41
133
|
|
|
42
134
|
if config is None:
|
|
43
|
-
processed_config =
|
|
135
|
+
processed_config = RunnableConfig(callbacks=[], metadata={})
|
|
44
136
|
else:
|
|
45
137
|
processed_config = config.copy()
|
|
46
138
|
if "callbacks" not in processed_config:
|
|
@@ -59,6 +151,7 @@ class StructuredRunnableWithToken(Runnable):
|
|
|
59
151
|
callbacks.append(LLMLogger())
|
|
60
152
|
callbacks.append(token_handler)
|
|
61
153
|
|
|
154
|
+
# 去重
|
|
62
155
|
callback_types = {}
|
|
63
156
|
unique_callbacks = []
|
|
64
157
|
for cb in callbacks:
|
|
@@ -131,6 +224,8 @@ class StructuredRunnableWithToken(Runnable):
|
|
|
131
224
|
user_id=user_id
|
|
132
225
|
)
|
|
133
226
|
|
|
227
|
+
# 【同步模式下不建议触发压缩,因为压缩本身是异步调用 LLM】
|
|
228
|
+
# 如果同步也要压缩,需要用 asyncio.run(...),这里暂时保持原逻辑直接透传
|
|
134
229
|
adapted_input = self._adapt_input(input)
|
|
135
230
|
input_data = {"messages": adapted_input}
|
|
136
231
|
|
|
@@ -169,12 +264,26 @@ class StructuredRunnableWithToken(Runnable):
|
|
|
169
264
|
user_id=user_id
|
|
170
265
|
)
|
|
171
266
|
|
|
267
|
+
# 1. 适配输入
|
|
172
268
|
adapted_input = self._adapt_input(input)
|
|
269
|
+
|
|
270
|
+
# 2. 检查并执行上下文压缩 (仅在异步模式且开启时)
|
|
271
|
+
if self.enable_compression:
|
|
272
|
+
max_tokens = self.llmConfig.maxTokens
|
|
273
|
+
current_tokens = self._count_tokens(adapted_input)
|
|
274
|
+
|
|
275
|
+
if current_tokens > max_tokens * self.threshold_ratio:
|
|
276
|
+
SYLogger.warning(
|
|
277
|
+
f"⚠️ Context limit reached: {current_tokens}/{max_tokens}")
|
|
278
|
+
# 执行压缩,替换 adapted_input
|
|
279
|
+
adapted_input = await self._acompress_context(adapted_input)
|
|
280
|
+
|
|
173
281
|
input_data = {"messages": adapted_input}
|
|
174
282
|
|
|
175
283
|
if span:
|
|
176
284
|
span.update_trace(input=input_data)
|
|
177
285
|
|
|
286
|
+
# 3. 调用子链
|
|
178
287
|
structured_result = await self.retry_chain.ainvoke(
|
|
179
288
|
input_data,
|
|
180
289
|
config=processed_config
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/usage_token.py
RENAMED
|
@@ -6,6 +6,7 @@ from langchain_core.output_parsers import PydanticOutputParser
|
|
|
6
6
|
from langchain_core.messages import BaseMessage, HumanMessage
|
|
7
7
|
from langchain_core.prompts import ChatPromptTemplate, MessagesPlaceholder
|
|
8
8
|
from pydantic import BaseModel, ValidationError, Field
|
|
9
|
+
from sycommon.config.LLMConfig import LLMConfig
|
|
9
10
|
from sycommon.llm.struct_token import StructuredRunnableWithToken
|
|
10
11
|
|
|
11
12
|
|
|
@@ -13,9 +14,10 @@ class LLMWithAutoTokenUsage(BaseChatModel):
|
|
|
13
14
|
"""自动为结构化调用返回token_usage的LLM包装类"""
|
|
14
15
|
llm: BaseChatModel = Field(default=None)
|
|
15
16
|
langfuse: Optional[Langfuse] = Field(default=None, exclude=True)
|
|
17
|
+
llmConfig: Optional[LLMConfig] = Field(default=None, exclude=True)
|
|
16
18
|
|
|
17
|
-
def __init__(self, llm: BaseChatModel, langfuse: Langfuse, **kwargs):
|
|
18
|
-
super().__init__(llm=llm, langfuse=langfuse, **kwargs)
|
|
19
|
+
def __init__(self, llm: BaseChatModel, langfuse: Langfuse, llmConfig: LLMConfig, **kwargs):
|
|
20
|
+
super().__init__(llm=llm, langfuse=langfuse, llmConfig=llmConfig, **kwargs)
|
|
19
21
|
|
|
20
22
|
def with_structured_output(
|
|
21
23
|
self,
|
|
@@ -106,7 +108,7 @@ class LLMWithAutoTokenUsage(BaseChatModel):
|
|
|
106
108
|
"initial": 0.1, "max": 3.0, "exp_base": 2.0, "jitter": 1.0}
|
|
107
109
|
)
|
|
108
110
|
|
|
109
|
-
return StructuredRunnableWithToken(retry_chain, self.langfuse)
|
|
111
|
+
return StructuredRunnableWithToken(retry_chain, self.langfuse, self.llmConfig)
|
|
110
112
|
|
|
111
113
|
# ========== 实现BaseChatModel抽象方法 ==========
|
|
112
114
|
def _generate(self, messages, stop=None, run_manager=None, ** kwargs):
|
|
@@ -117,112 +117,112 @@ class RabbitMQClient:
|
|
|
117
117
|
logger.info(f"队列重建成功: {self.queue_name}")
|
|
118
118
|
|
|
119
119
|
async def connect(self) -> None:
|
|
120
|
+
"""连接方法(修复恢复消费失效问题)"""
|
|
120
121
|
if self._closed:
|
|
121
122
|
raise RuntimeError("客户端已关闭,无法重新连接")
|
|
122
123
|
|
|
123
|
-
# 1.
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
# 1. 获取 Condition 锁
|
|
125
|
+
await self._connect_condition.acquire()
|
|
126
|
+
|
|
127
|
+
try:
|
|
128
|
+
# ===== 阶段 A: 快速检查与等待 =====
|
|
129
|
+
if await self.is_connected:
|
|
130
|
+
self._connect_condition.release()
|
|
131
|
+
return
|
|
132
|
+
|
|
126
133
|
if self._connecting:
|
|
127
|
-
logger.debug("连接正在进行中,等待现有连接完成...")
|
|
128
134
|
try:
|
|
129
|
-
|
|
130
|
-
await asyncio.wait_for(
|
|
131
|
-
self._connect_condition.wait_for(
|
|
132
|
-
lambda: not self._connecting),
|
|
133
|
-
timeout=60.0
|
|
134
|
-
)
|
|
135
|
+
logger.debug("连接正在进行中,等待现有连接完成...")
|
|
136
|
+
await asyncio.wait_for(self._connect_condition.wait(), timeout=60.0)
|
|
135
137
|
except asyncio.TimeoutError:
|
|
138
|
+
self._connect_condition.release()
|
|
136
139
|
raise RuntimeError("等待连接超时")
|
|
137
140
|
|
|
138
|
-
|
|
139
|
-
|
|
141
|
+
if await self.is_connected:
|
|
142
|
+
self._connect_condition.release()
|
|
143
|
+
return
|
|
144
|
+
else:
|
|
145
|
+
self._connect_condition.release()
|
|
140
146
|
raise RuntimeError("等待重连后,连接状态依然无效")
|
|
141
|
-
return
|
|
142
147
|
|
|
143
|
-
# 标记开始连接
|
|
148
|
+
# ===== 阶段 B: 标记开始连接 =====
|
|
144
149
|
self._connecting = True
|
|
150
|
+
# 【关键】释放锁,允许其他协程进入等待逻辑
|
|
151
|
+
self._connect_condition.release()
|
|
145
152
|
|
|
146
|
-
|
|
147
|
-
|
|
153
|
+
except Exception as e:
|
|
154
|
+
if self._connect_condition.locked():
|
|
155
|
+
self._connect_condition.release()
|
|
156
|
+
raise
|
|
148
157
|
|
|
158
|
+
# === 阶段 C: 执行耗时的连接逻辑 (此时已释放锁,不阻塞其他协程) ===
|
|
149
159
|
try:
|
|
150
|
-
# ---
|
|
151
|
-
#
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
160
|
+
# --- 步骤 1: 记录旧状态并清理资源 ---
|
|
161
|
+
# 必须在清理前记录状态
|
|
162
|
+
was_consuming = self._consumer_tag is not None
|
|
163
|
+
|
|
164
|
+
# 清理连接回调,防止旧的连接关闭触发新的重连
|
|
165
|
+
if self._channel_conn:
|
|
166
|
+
try:
|
|
167
|
+
if self._channel_conn.close_callbacks:
|
|
168
|
+
self._channel_conn.close_callbacks.clear()
|
|
169
|
+
except Exception:
|
|
170
|
+
pass
|
|
171
|
+
|
|
172
|
+
# 统一重置资源状态
|
|
173
|
+
self._channel = None
|
|
174
|
+
self._channel_conn = None
|
|
175
|
+
self._exchange = None
|
|
176
|
+
self._queue = None
|
|
177
|
+
self._consumer_tag = None
|
|
178
|
+
|
|
179
|
+
# --- 步骤 2: 获取新连接 ---
|
|
169
180
|
self._channel, self._channel_conn = await self.connection_pool.acquire_channel()
|
|
170
181
|
|
|
171
|
-
#
|
|
182
|
+
# 设置连接关闭回调
|
|
172
183
|
def on_conn_closed(conn, exc):
|
|
173
|
-
logger.warning(f"
|
|
184
|
+
logger.warning(f"检测到底层连接关闭: {exc}")
|
|
174
185
|
if not self._closed and not self._connecting:
|
|
175
186
|
asyncio.create_task(self._safe_reconnect())
|
|
176
187
|
|
|
177
|
-
self._conn_close_callback = on_conn_closed
|
|
178
188
|
if self._channel_conn:
|
|
179
|
-
self._channel_conn.close_callbacks.add(
|
|
180
|
-
self._conn_close_callback)
|
|
189
|
+
self._channel_conn.close_callbacks.add(on_conn_closed)
|
|
181
190
|
|
|
182
|
-
#
|
|
191
|
+
# --- 步骤 3: 重建基础资源 (交换机和队列) ---
|
|
183
192
|
await self._rebuild_resources()
|
|
184
193
|
|
|
185
|
-
# ---
|
|
186
|
-
if was_consuming and self._message_handler
|
|
187
|
-
logger.info("🔄
|
|
194
|
+
# --- 步骤 4: 恢复消费 ---
|
|
195
|
+
if was_consuming and self._message_handler:
|
|
196
|
+
logger.info("🔄 检测到重连前处于消费状态,尝试自动恢复消费...")
|
|
188
197
|
try:
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
durable=self.durable,
|
|
192
|
-
auto_delete=self.auto_delete,
|
|
193
|
-
passive=False,
|
|
194
|
-
)
|
|
195
|
-
await self._queue.bind(exchange=self._exchange, routing_key=self.routing_key)
|
|
196
|
-
self._consumer_tag = await self._queue.consume(self._process_message_callback)
|
|
198
|
+
# 直接调用 start_consuming 来恢复,它内部包含了完整的队列检查和绑定逻辑
|
|
199
|
+
self._consumer_tag = await self.start_consuming()
|
|
197
200
|
logger.info(f"✅ 消费已自动恢复: {self._consumer_tag}")
|
|
198
201
|
except Exception as e:
|
|
199
202
|
logger.error(f"❌ 自动恢复消费失败: {e}")
|
|
200
203
|
self._consumer_tag = None
|
|
201
|
-
else:
|
|
202
|
-
self._consumer_tag = None
|
|
203
204
|
|
|
204
205
|
logger.info("客户端连接初始化完成")
|
|
205
206
|
|
|
206
207
|
except Exception as e:
|
|
207
208
|
logger.error(f"客户端连接失败: {str(e)}", exc_info=True)
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
self._channel_conn = None
|
|
216
|
-
self._consumer_tag = None
|
|
217
|
-
|
|
209
|
+
# 异常时彻底清理
|
|
210
|
+
if self._channel_conn and self._channel_conn.close_callbacks:
|
|
211
|
+
self._channel_conn.close_callbacks.clear()
|
|
212
|
+
self._channel = None
|
|
213
|
+
self._channel_conn = None
|
|
214
|
+
self._queue = None
|
|
215
|
+
self._consumer_tag = None
|
|
218
216
|
raise
|
|
219
217
|
|
|
220
218
|
finally:
|
|
221
|
-
#
|
|
222
|
-
|
|
223
|
-
|
|
219
|
+
# === 阶段 D: 恢复状态并通知 ===
|
|
220
|
+
await self._connect_condition.acquire()
|
|
221
|
+
try:
|
|
224
222
|
self._connecting = False
|
|
225
223
|
self._connect_condition.notify_all()
|
|
224
|
+
finally:
|
|
225
|
+
self._connect_condition.release()
|
|
226
226
|
|
|
227
227
|
async def _safe_reconnect(self):
|
|
228
228
|
"""安全重连任务(仅用于被动监听连接关闭)"""
|
|
@@ -256,11 +256,6 @@ class RabbitMQClient:
|
|
|
256
256
|
self._message_handler = handler
|
|
257
257
|
|
|
258
258
|
async def _process_message_callback(self, message: AbstractIncomingMessage):
|
|
259
|
-
# 记录消息的原始追踪ID
|
|
260
|
-
original_trace_id = message.headers.get(
|
|
261
|
-
"trace-id") if message.headers else None
|
|
262
|
-
current_retry = 0
|
|
263
|
-
|
|
264
259
|
try:
|
|
265
260
|
msg_obj: MQMsgModel
|
|
266
261
|
|
|
@@ -278,44 +273,21 @@ class RabbitMQClient:
|
|
|
278
273
|
body=message.body.decode("utf-8"),
|
|
279
274
|
routing_key=message.routing_key,
|
|
280
275
|
delivery_tag=message.delivery_tag,
|
|
281
|
-
traceId=
|
|
276
|
+
traceId=message.headers.get(
|
|
277
|
+
"trace-id") if message.headers else SYLogger.get_trace_id(),
|
|
282
278
|
)
|
|
283
279
|
|
|
284
|
-
# 2. 设置日志上下文
|
|
285
|
-
# 注意:如果 header 中有 x-last-retry-ts,说明之前重试过
|
|
286
|
-
current_retry = int(message.headers.get("x-retry-count", 0))
|
|
287
280
|
SYLogger.set_trace_id(msg_obj.traceId)
|
|
288
281
|
|
|
289
282
|
# 3. 执行业务逻辑
|
|
290
283
|
if self._message_handler:
|
|
291
284
|
await self._message_handler(msg_obj, message)
|
|
292
285
|
|
|
293
|
-
# 4. 业务成功,Ack (移除 finally 中的 ack,成功即确认)
|
|
294
286
|
await message.ack()
|
|
295
287
|
|
|
296
288
|
except Exception as e:
|
|
297
|
-
logger.error(f"
|
|
298
|
-
|
|
299
|
-
# 【核心修复】使用原生 Nack + Requeue
|
|
300
|
-
if current_retry >= 3:
|
|
301
|
-
# 超过重试次数,丢弃消息(或进入死信队列)
|
|
302
|
-
logger.warning(f"重试次数超限 (3次),丢弃消息: {message.delivery_tag}")
|
|
303
|
-
await message.reject(requeue=False)
|
|
304
|
-
else:
|
|
305
|
-
# 还没到重试上限,重新入队
|
|
306
|
-
# 为了防止立即重试导致的死循环,我们需要人为增加一点延迟
|
|
307
|
-
# 但 Nack 本身不支持延迟,所以这里只能快速 Nack 让它尽快回来,
|
|
308
|
-
# 并在业务层(或外层)做好限流保护。
|
|
309
|
-
|
|
310
|
-
# 如果你有延迟队列插件,可以 publish 到延迟交换机。
|
|
311
|
-
# 如果没有,直接 requeue 是最安全的不丢包方案。
|
|
312
|
-
logger.info(f"消息处理失败,重新入队等待重试... (当前重试: {current_retry})")
|
|
313
|
-
|
|
314
|
-
# 技巧:如果你不想立即重试,可以 Nack(False) 然后手动 Publish 延迟消息
|
|
315
|
-
# 但为了解决你当前的“死循环”问题,直接 Nack(True) 是最有效的
|
|
316
|
-
# 延迟5秒
|
|
317
|
-
await asyncio.sleep(5)
|
|
318
|
-
await message.nack(requeue=True)
|
|
289
|
+
logger.error(f"消息处理异常: {e}", exc_info=True)
|
|
290
|
+
await message.ack()
|
|
319
291
|
|
|
320
292
|
async def start_consuming(self) -> Optional[ConsumerTag]:
|
|
321
293
|
if self._closed:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sycommon-python-lib
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.57b7
|
|
4
4
|
Summary: Add your description here
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -25,6 +25,7 @@ Requires-Dist: pyyaml>=6.0.3
|
|
|
25
25
|
Requires-Dist: sentry-sdk[fastapi]>=2.49.0
|
|
26
26
|
Requires-Dist: sqlalchemy[asyncio]>=2.0.45
|
|
27
27
|
Requires-Dist: starlette>=0.50.0
|
|
28
|
+
Requires-Dist: tiktoken>=0.12.0
|
|
28
29
|
Requires-Dist: uvicorn>=0.40.0
|
|
29
30
|
|
|
30
31
|
# sycommon-python-lib
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/DatabaseConfig.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/EmbeddingConfig.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/LLMConfig.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/LangfuseConfig.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/MQConfig.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/RerankerConfig.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/SentryConfig.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/config/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/health/__init__.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/health/health_check.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/health/metrics.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/llm_logger.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/llm_tokens.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/llm/sy_langfuse.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/kafka_log.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/logger_levels.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/logger_wrapper.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/logging/sql_logger.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/__init__.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/context.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/cors.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/docs.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/exception.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/middleware.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/timeout.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/middleware/traceid.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/__init__.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/base_http.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/mqmsg_model.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/mqsend_config.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/models/sso_user.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/notice/__init__.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/notice/uvicorn_monitor.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/rabbitmq/rabbitmq_pool.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/sentry/__init__.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/sentry/sy_sentry.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/__init__.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/example.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/example2.py
RENAMED
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/feign_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/synacos/nacos_service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/tools/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/tools/merge_headers.py
RENAMED
|
File without changes
|
{sycommon_python_lib-0.1.57b5 → sycommon_python_lib-0.1.57b7}/src/sycommon/tools/snowflake.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|