-
Notifications
You must be signed in to change notification settings - Fork 191
/
prompt_bot.py
47 lines (34 loc) · 1.25 KB
/
prompt_bot.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
"""
Sample bot that wraps Claude-3-Haiku but makes responses Haikus
"""
from __future__ import annotations
from typing import AsyncIterable
import fastapi_poe as fp
from modal import App, Image, asgi_app
SYSTEM_PROMPT = """
All your replies are Haikus.
""".strip()
class PromptBot(fp.PoeBot):
async def get_response(
self, request: fp.QueryRequest
) -> AsyncIterable[fp.PartialResponse]:
request.query = [
fp.ProtocolMessage(role="system", content=SYSTEM_PROMPT)
] + request.query
async for msg in fp.stream_request(
request, "Claude-3-Haiku", request.access_key
):
yield msg
async def get_settings(self, setting: fp.SettingsRequest) -> fp.SettingsResponse:
return fp.SettingsResponse(server_bot_dependencies={"Claude-3-Haiku": 1})
REQUIREMENTS = ["fastapi-poe==0.0.48"]
image = Image.debian_slim().pip_install(*REQUIREMENTS)
app = App("prompt-bot-poe")
@app.function(image=image)
@asgi_app()
def fastapi_app():
bot = PromptBot()
# 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