mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
HUGE PROGRE$$
This commit is contained in:
parent
2e66d0e715
commit
29acd1fae6
7 changed files with 66 additions and 21 deletions
|
@ -13,4 +13,3 @@ available_exception_stars = [
|
||||||
|
|
||||||
# Don't change this, it should automatically generate __all__
|
# Don't change this, it should automatically generate __all__
|
||||||
__all__ = [command.__name__ for command in [*available_page_stars, *available_exception_stars]]
|
__all__ = [command.__name__ for command in [*available_page_stars, *available_exception_stars]]
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ from starlette.responses import *
|
||||||
from royalnet.constellation import *
|
from royalnet.constellation import *
|
||||||
from royalnet.utils import *
|
from royalnet.utils import *
|
||||||
from ..tables import *
|
from ..tables import *
|
||||||
from ..utils import Emotion
|
from ..utils import *
|
||||||
|
|
||||||
|
|
||||||
class ApiKei(PageStar):
|
class ApiKei(PageStar):
|
||||||
|
@ -14,25 +14,45 @@ class ApiKei(PageStar):
|
||||||
|
|
||||||
methods = ["POST"]
|
methods = ["POST"]
|
||||||
|
|
||||||
async def _generate(self, person, form, session) -> Tuple[Emotion, str]:
|
def __init__(self, config: Dict[str, Any], constellation: "Constellation"):
|
||||||
return Emotion.NEUTRAL, "..."
|
super().__init__(config, constellation)
|
||||||
|
self._conversations: Dict[str, Conversation] = {}
|
||||||
|
|
||||||
async def page(self, request: Request) -> JSONResponse:
|
async def page(self, request: Request) -> JSONResponse:
|
||||||
async with self.session_acm() as session:
|
async with self.session_acm() as session:
|
||||||
form = await request.form()
|
form = await request.form()
|
||||||
person = session.query(self.alchemy.get(KeiPerson)).filter_by(kpid=form["kpid"]).one_or_none()
|
|
||||||
|
kpid = form["kpid"]
|
||||||
|
convid = form["convid"]
|
||||||
|
message = form.get("message")
|
||||||
|
first = form.get("first", False)
|
||||||
|
|
||||||
|
person = await asyncify(session.query(self.alchemy.get(KeiPerson)).filter_by(kpid=kpid).one_or_none)
|
||||||
if person is None:
|
if person is None:
|
||||||
person = self.alchemy.get(KeiPerson)(kpid=form["kpid"])
|
person = self.alchemy.get(KeiPerson)(kpid=kpid)
|
||||||
session.add(person)
|
session.add(person)
|
||||||
message = self.alchemy.get(KeiMessage)(kei_person=person, message=form["message"])
|
message = self.alchemy.get(KeiMessage)(kei_person=person, message=message)
|
||||||
session.add(message)
|
session.add(message)
|
||||||
await asyncify(session.commit)
|
await asyncify(session.commit)
|
||||||
try:
|
# Find conversation
|
||||||
emotion, text = await self._generate(person, form, session)
|
while True:
|
||||||
except Exception as e:
|
if convid not in self._conversations:
|
||||||
print(e)
|
# Create a new conversation
|
||||||
emotion, text = Emotion.NEUTRAL, "...?"
|
self._conversations[convid] = await ExampleConversation.create()
|
||||||
|
conv: Conversation = self._conversations[convid]
|
||||||
|
try:
|
||||||
|
emotion, text = await conv.next(session=session, person=person, message=message)
|
||||||
|
except StopAsyncIteration:
|
||||||
|
del self._conversations[convid]
|
||||||
|
continue
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
emotion, text = Emotion.NEUTRAL, "...?"
|
||||||
|
else:
|
||||||
|
break
|
||||||
return JSONResponse({
|
return JSONResponse({
|
||||||
"emotion": str(emotion),
|
"emotion": str(emotion),
|
||||||
"text": text,
|
"text": text,
|
||||||
|
}, headers={
|
||||||
|
"Access-Control-Allow-Origin": "https://kei.steffo.eu",
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
from .emotion import Emotion
|
from .emotion import Emotion
|
||||||
|
from .conversation import Conversation, ExampleConversation
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Emotion",
|
"Emotion",
|
||||||
|
"Conversation",
|
||||||
|
"ExampleConversation",
|
||||||
]
|
]
|
28
keipack/utils/conversation.py
Normal file
28
keipack/utils/conversation.py
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
from .emotion import Emotion
|
||||||
|
|
||||||
|
class Conversation:
|
||||||
|
def __init__(self):
|
||||||
|
self.generator = self._generator()
|
||||||
|
|
||||||
|
async def _generator(self):
|
||||||
|
yield
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
async def create(cls):
|
||||||
|
conv = cls()
|
||||||
|
await conv.generator.asend(None)
|
||||||
|
return conv
|
||||||
|
|
||||||
|
async def next(self, session, person, message):
|
||||||
|
reply = await self.generator.asend((session, person, message))
|
||||||
|
return reply
|
||||||
|
|
||||||
|
|
||||||
|
# noinspection PyTupleAssignmentBalance
|
||||||
|
class ExampleConversation(Conversation):
|
||||||
|
async def _generator(self):
|
||||||
|
session, person, message = yield
|
||||||
|
session, person, message = yield Emotion.HAPPY, "Ciao!"
|
||||||
|
session, person, message = yield Emotion.NEUTRAL, "Questa è una conversazione di prova."
|
||||||
|
session, person, message = yield Emotion.X, "X_X"
|
|
@ -1 +1 @@
|
||||||
semantic = "0.1"
|
semantic = "23.12"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "keipack"
|
name = "keipack"
|
||||||
version = "0.1"
|
version = "23.12"
|
||||||
description = "A mysterious AI assistant"
|
description = "A mysterious AI assistant"
|
||||||
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
||||||
license = "AGPL-3.0+"
|
license = "AGPL-3.0+"
|
||||||
|
|
|
@ -6,15 +6,10 @@
|
||||||
# * 'ptr' and 'ptrp' create a POST request with a simple or parameter-like body;
|
# * 'ptr' and 'ptrp' create a POST request with a simple or parameter-like body;
|
||||||
# * 'mptr' and 'fptr' create a POST request to submit a form with a text or file field (multipart/form-data);
|
# * 'mptr' and 'fptr' create a POST request to submit a form with a text or file field (multipart/form-data);
|
||||||
|
|
||||||
POST http://localhost:44445/api/kei
|
|
||||||
Accept: application/json
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
POST http://localhost:44445/api/kei
|
POST http://localhost:44445/api/kei
|
||||||
Accept: application/json
|
Accept: application/json
|
||||||
Content-Type: application/x-www-form-urlencoded
|
Content-Type: application/x-www-form-urlencoded
|
||||||
|
|
||||||
first=true
|
kpid=test&convid=1&first=true&message=lul
|
||||||
|
|
||||||
###
|
###
|
Loading…
Reference in a new issue