chatgpt-mirai-qq-bot-web-search 0.1.13__py3-none-any.whl → 0.1.14__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: chatgpt-mirai-qq-bot-web-search
3
- Version: 0.1.13
3
+ Version: 0.1.14
4
4
  Summary: WebSearch adapter for lss233/chatgpt-mirai-qq-bot
5
5
  Home-page: https://github.com/chuanSir123/web_search
6
6
  Author: chuanSir
@@ -0,0 +1,11 @@
1
+ web_search/__init__.py,sha256=zVZLb5A-im5XETwohgxyE-UCxjSvYl6I2OC3LnEQhdQ,4360
2
+ web_search/blocks.py,sha256=F1XJt7n1mHqMhkoU5Du1IB7NEVCx3Cl9vHkoY7plwls,3611
3
+ web_search/config.py,sha256=DhLiERBJR2V5Boglf7Aq9Rbc4vsvLIh67CrLDIPeqA0,398
4
+ web_search/web_searcher.py,sha256=HsXs5ctvBryupK4hX8qbJspx1-rWEPnMYfulEkC1WMw,9707
5
+ web_search/example/roleplayWithWebSearch.yaml,sha256=C-dGy3z8gcRcmxzurssP-kPRLqMf1TYR-nnNUaJjISE,7468
6
+ chatgpt_mirai_qq_bot_web_search-0.1.14.dist-info/LICENSE,sha256=ILBn-G3jdarm2w8oOrLmXeJNU3czuJvVhDLBASWdhM8,34522
7
+ chatgpt_mirai_qq_bot_web_search-0.1.14.dist-info/METADATA,sha256=6UNFYoIQXPBsJ1efkuD7UtKr5R1BRJ_9XnGI-dqdRUE,1739
8
+ chatgpt_mirai_qq_bot_web_search-0.1.14.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
9
+ chatgpt_mirai_qq_bot_web_search-0.1.14.dist-info/entry_points.txt,sha256=o3kRDSdSmSdnCKlK6qS57aN0WpI4ab-Nxub2NwUrjf0,64
10
+ chatgpt_mirai_qq_bot_web_search-0.1.14.dist-info/top_level.txt,sha256=PoNm8MJYw_y8RTMaNlY0ePLoNHxVUAE2IHDuL5fFubI,11
11
+ chatgpt_mirai_qq_bot_web_search-0.1.14.dist-info/RECORD,,
web_search/blocks.py CHANGED
@@ -1,11 +1,11 @@
1
1
  from typing import Any, Dict, List, Optional
2
2
  import asyncio
3
- from framework.workflow.core.block import Block
4
- from framework.workflow.core.block.input_output import Input, Output
3
+ from kirara_ai.workflow.core.block import Block
4
+ from kirara_ai.workflow.core.block.input_output import Input, Output
5
5
  from .web_searcher import WebSearcher
6
6
  from .config import WebSearchConfig
7
- from framework.llm.format.message import LLMChatMessage
8
- from framework.llm.format.response import LLMChatResponse
7
+ from kirara_ai.llm.format.message import LLMChatMessage
8
+ from kirara_ai.llm.format.response import LLMChatResponse
9
9
 
10
10
  class WebSearchBlock(Block):
11
11
  """Web搜索Block"""
@@ -6,7 +6,7 @@ import urllib.parse
6
6
  import asyncio
7
7
  import subprocess
8
8
  import sys
9
- from framework.logger import get_logger
9
+ from kirara_ai.logger import get_logger
10
10
 
11
11
  logger = get_logger("WebSearchPlugin")
12
12
 
@@ -1,11 +0,0 @@
1
- web_search/__init__.py,sha256=zVZLb5A-im5XETwohgxyE-UCxjSvYl6I2OC3LnEQhdQ,4360
2
- web_search/blocks.py,sha256=bVLn5kg-OMqWQsDrJLvA43AoV_eMEcZ3nrjqponHHX4,3611
3
- web_search/config.py,sha256=DhLiERBJR2V5Boglf7Aq9Rbc4vsvLIh67CrLDIPeqA0,398
4
- web_search/web_searcher.py,sha256=dmN1R4iyFvaPNpyBjFLWujvQ6_I3oD1GRlRyC03egpo,9707
5
- web_search/example/roleplayWithWebSearch.yaml,sha256=C-dGy3z8gcRcmxzurssP-kPRLqMf1TYR-nnNUaJjISE,7468
6
- chatgpt_mirai_qq_bot_web_search-0.1.13.dist-info/LICENSE,sha256=ILBn-G3jdarm2w8oOrLmXeJNU3czuJvVhDLBASWdhM8,34522
7
- chatgpt_mirai_qq_bot_web_search-0.1.13.dist-info/METADATA,sha256=ICD-hdrx6ERNCfaT6U5RRGvysF2GarMtNpzWniMGwuo,1739
8
- chatgpt_mirai_qq_bot_web_search-0.1.13.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
9
- chatgpt_mirai_qq_bot_web_search-0.1.13.dist-info/entry_points.txt,sha256=o3kRDSdSmSdnCKlK6qS57aN0WpI4ab-Nxub2NwUrjf0,64
10
- chatgpt_mirai_qq_bot_web_search-0.1.13.dist-info/top_level.txt,sha256=PoNm8MJYw_y8RTMaNlY0ePLoNHxVUAE2IHDuL5fFubI,11
11
- chatgpt_mirai_qq_bot_web_search-0.1.13.dist-info/RECORD,,