-
Notifications
You must be signed in to change notification settings - Fork 192
/
catbot.py
106 lines (92 loc) · 4.04 KB
/
catbot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
"""
Demo bot: catbot.
This bot uses all options provided by the Poe protocol. You can use it to get examples
of all the protocol has to offer.
"""
from __future__ import annotations
import asyncio
from typing import AsyncIterable
import fastapi_poe as fp
from modal import App, Image, asgi_app
class CatBot(fp.PoeBot):
async def get_response(
self, request: fp.QueryRequest
) -> AsyncIterable[fp.PartialResponse]:
"""Return an async iterator of events to send to the user."""
last_message = request.query[-1].content.lower()
response_content_type = (
"text/plain" if "plain" in last_message else "text/markdown"
)
yield fp.MetaResponse(
text="",
content_type=response_content_type,
linkify=True,
refetch_settings=False,
suggested_replies="dog" not in last_message,
)
if "markdown" in last_message:
yield fp.PartialResponse(text="# Heading 1\n\n")
yield fp.PartialResponse(text="*Bold text* ")
yield fp.PartialResponse(text="**More bold text**\n")
yield fp.PartialResponse(text="\n")
yield fp.PartialResponse(text="A list:\n")
yield fp.PartialResponse(text="- Item 1\n")
yield fp.PartialResponse(text="- Item 2\n")
yield fp.PartialResponse(text="- An item with [a link](https://poe.com)\n")
yield fp.PartialResponse(text="\n")
yield fp.PartialResponse(text="A table:\n\n")
yield fp.PartialResponse(text="| animal | cuteness |\n")
yield fp.PartialResponse(text="|--------|----------|\n")
yield fp.PartialResponse(text="| cat | 10 |\n")
yield fp.PartialResponse(text="| dog | 1 |\n")
yield fp.PartialResponse(text="\n")
if "cardboard" in last_message:
yield fp.PartialResponse(text="crunch ")
yield fp.PartialResponse(text="crunch")
elif (
"kitchen" in last_message
or "meal" in last_message
or "food" in last_message
):
yield fp.PartialResponse(text="meow ")
yield fp.PartialResponse(text="meow")
yield fp.PartialResponse(text="feed the cat", is_suggested_reply=True)
elif "stranger" in last_message:
for _ in range(10):
yield fp.PartialResponse(text="peek ")
await asyncio.sleep(1)
elif "square" in last_message:
yield fp.ErrorResponse(text="Square snacks are not tasty.")
elif "cube" in last_message:
yield fp.ErrorResponse(
text="Cube snacks are even less tasty.", allow_retry=False
)
elif "count" in last_message:
for i in range(1, 11):
yield fp.PartialResponse(text=str(i), is_replace_response=True)
if "quickly" not in last_message:
await asyncio.sleep(1)
else:
yield fp.PartialResponse(text="zzz")
async def on_feedback(self, feedback_request: fp.ReportFeedbackRequest) -> None:
"""Called when we receive user feedback such as likes."""
print(
f"User {feedback_request.user_id} gave feedback on {feedback_request.conversation_id}"
f"message {feedback_request.message_id}: {feedback_request.feedback_type}"
)
async def get_settings(self, setting: fp.SettingsRequest) -> fp.SettingsResponse:
"""Return the settings for this bot."""
return fp.SettingsResponse(
allow_user_context_clear=True, allow_attachments=True
)
REQUIREMENTS = ["fastapi-poe==0.0.48"]
image = Image.debian_slim().pip_install(*REQUIREMENTS)
app = App("catbot-poe")
@app.function(image=image)
@asgi_app()
def fastapi_app():
bot = CatBot()
# see https://creator.poe.com/docs/quick-start#configuring-the-access-credentials
# app = fp.make_app(bot, access_key=<YOUR_ACCESS_KEY>, bot_name=<YOUR_BOT_NAME>)
app = fp.make_app(bot, allow_without_key=True)
return app