A demonstration of the Poe protocol using FastAPI
Project description
fastapi_poe
An implementation of the Poe protocol using FastAPI.
To run it:
- Create a virtual environment (Python 3.7 or higher)
pip install .
python -m fastapi_poe
- In a different terminal, run ngrok to make it publicly accessible
Write your own bot
This package can also be used as a base to write your own bot. You can
inherit from fastapi_poe.PoeHandler
to make a bot:
from fastapi_poe import PoeHandler, run
class EchoHandler(PoeHandler):
async def get_response(self, query):
last_message = query.query[-1].content
yield self.text_event(last_message)
yield self.done_event()
if __name__ == "__main__":
run(EchoHandler())
For a more advanced example that exercises more of the Poe protocol, see Altaibot.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fastapi_poe-0.0.1.tar.gz
(3.9 kB
view details)
Built Distribution
File details
Details for the file fastapi_poe-0.0.1.tar.gz
.
File metadata
- Download URL: fastapi_poe-0.0.1.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 063989dfe5c7331b7b6fb2e7839f238f32bcae5b228ccbec2e72ed7996d8692b |
|
MD5 | b7b1dfd60298d7a71855b6d3f83dd8c1 |
|
BLAKE2b-256 | 876a6b8d2eebfc0d545d94dfba94f061222f739a76e5cfb6699985f23aa6b650 |
Provenance
File details
Details for the file fastapi_poe-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: fastapi_poe-0.0.1-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a34d03aad449fd1309deed8da6bdbc6c41d966e1f0888d9d8d6893a932e9fea8 |
|
MD5 | f3ec11a5af300ad7940c22d8d6844afc |
|
BLAKE2b-256 | eba58a24d5096f21fdc463f1ab5c4488e04c1a958f9a1145deb649ce46fb4775 |