pycoze 0.1.2__tar.gz → 0.1.3__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.
- {pycoze-0.1.2 → pycoze-0.1.3}/PKG-INFO +4 -1
- {pycoze-0.1.2 → pycoze-0.1.3}/README.md +3 -0
- pycoze-0.1.3/pycoze/__init__.py +2 -0
- pycoze-0.1.3/pycoze/bot/__init__.py +1 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/bot.py +2 -2
- pycoze-0.1.3/pycoze/utils/__init__.py +1 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze.egg-info/PKG-INFO +4 -1
- {pycoze-0.1.2 → pycoze-0.1.3}/setup.py +2 -2
- pycoze-0.1.2/pycoze/__init__.py +0 -2
- pycoze-0.1.2/pycoze/bot/__init__.py +0 -0
- pycoze-0.1.2/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/LICENSE +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/agent/agent_types/react_agent.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/agent/agent_types/react_prompt.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/bot/base.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/module.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze.egg-info/SOURCES.txt +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.2 → pycoze-0.1.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pycoze
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
4
4
|
Summary: Package for pycoze only!
|
5
5
|
Author: Yuan Jie Xiong
|
6
6
|
Author-email: aiqqqqqqq@qq.com
|
@@ -19,5 +19,8 @@ Package for pycoze only!
|
|
19
19
|
|
20
20
|
<!-- For author only -->
|
21
21
|
<!-- pip install twine -->
|
22
|
+
|
23
|
+
<!-- 递增版本 -->
|
24
|
+
<!-- 删除build和dist文件夹 -->
|
22
25
|
<!-- python setup.py sdist bdist_wheel -->
|
23
26
|
<!-- twine upload dist/* -->
|
@@ -0,0 +1 @@
|
|
1
|
+
from .bot import chat
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import json
|
2
2
|
from langchain_openai import ChatOpenAI
|
3
|
-
from base import import_tools
|
4
|
-
from agent import run_agent, Runnable, INPUT_MESSAGE, output
|
3
|
+
from .base import import_tools
|
4
|
+
from .agent import run_agent, Runnable, INPUT_MESSAGE, output
|
5
5
|
import asyncio
|
6
6
|
from langchain_core.messages import HumanMessage
|
7
7
|
|
@@ -0,0 +1 @@
|
|
1
|
+
from .arg import read_arg
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pycoze
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
4
4
|
Summary: Package for pycoze only!
|
5
5
|
Author: Yuan Jie Xiong
|
6
6
|
Author-email: aiqqqqqqq@qq.com
|
@@ -19,5 +19,8 @@ Package for pycoze only!
|
|
19
19
|
|
20
20
|
<!-- For author only -->
|
21
21
|
<!-- pip install twine -->
|
22
|
+
|
23
|
+
<!-- 递增版本 -->
|
24
|
+
<!-- 删除build和dist文件夹 -->
|
22
25
|
<!-- python setup.py sdist bdist_wheel -->
|
23
26
|
<!-- twine upload dist/* -->
|
@@ -2,13 +2,13 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="pycoze",
|
5
|
-
version="0.1.
|
5
|
+
version="0.1.3",
|
6
6
|
packages=find_packages(),
|
7
7
|
install_requires=[],
|
8
8
|
author="Yuan Jie Xiong",
|
9
9
|
author_email="aiqqqqqqq@qq.com",
|
10
10
|
description="Package for pycoze only!",
|
11
|
-
long_description=open('README.md').read(),
|
11
|
+
long_description=open('README.md', encoding="utf-8").read(),
|
12
12
|
long_description_content_type='text/markdown',
|
13
13
|
classifiers=[
|
14
14
|
"Programming Language :: Python :: 3",
|
pycoze-0.1.2/pycoze/__init__.py
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|