Skip to content

Commit dbe746c

Browse files
committed
Change userMessage property to public.
1 parent fb43570 commit dbe746c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def _requires_from_file(filename):
1212

1313
setup(
1414
name="chatai-stream",
15-
version="0.0.2",
15+
version="0.0.3",
1616
license="MIT",
1717
description="ChatGPT reacts YouTube chat messages.",
1818
author="General Yadoc",

src/ChatAIStream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import StreamChatAgent as sca
66
import ChatAIAgent as ca
77

8-
98
streamParams = sca.params
9+
userMessage = ca.userMessage
1010
aiParams = ca.params
1111

1212
@dataclass

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .ChatAIStream import *
22

3-
__version__ = '0.0.2'
3+
__version__ = '0.0.3'

0 commit comments

Comments
 (0)