mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
bump
This commit is contained in:
parent
c5b6e712d8
commit
f79b016e33
3 changed files with 4 additions and 5 deletions
|
@ -50,7 +50,7 @@ class ApiKei(PageStar):
|
|||
if first:
|
||||
self._conversations[convid] = await FirstConversation.create(self.interface)
|
||||
else:
|
||||
self._conversations[convid] = await MainConversation.create(self.interface)
|
||||
self._conversations[convid] = await StartConversation.create(self.interface)
|
||||
log.info(f"[{convid}] SYSTEM: New conversation created - {self._conversations[convid]}")
|
||||
conv: Conversation = self._conversations[convid]
|
||||
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
from .emotion import Emotion
|
||||
from .conversation import Conversation, ExampleConversation, FirstConversation, MainConversation
|
||||
from .conversation import Conversation, FirstConversation, StartConversation
|
||||
from .anyinstring import any_in_string
|
||||
|
||||
__all__ = [
|
||||
"Emotion",
|
||||
"Conversation",
|
||||
"ExampleConversation",
|
||||
"FirstConversation",
|
||||
"MainConversation",
|
||||
"StartConversation",
|
||||
"any_in_string",
|
||||
]
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[tool.poetry]
|
||||
name = "keipack"
|
||||
version = "0.3.8"
|
||||
version = "0.3.9"
|
||||
description = "A mysterious AI assistant"
|
||||
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
||||
license = "AGPL-3.0+"
|
||||
|
|
Loading…
Reference in a new issue