Skip to main content

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.PoeBot to make a bot:

from fastapi_poe import PoeBot, run

class EchoBot(PoeBot):
    async def get_response(self, query):
        last_message = query.query[-1].content
        yield self.text_event(last_message)

if __name__ == "__main__":
    run(EchoBot())

Enable authentication

Poe servers send requests containing Authorization HTTP header in the format "Bearer <api_key>," where api_key is the API key configured in the bot settings. \

To validate the requests are from Poe Servers, you can either set the environment variable POE_API_KEY or pass the parameter api_key in the run function like:

if __name__ == "__main__":
    run(EchoBot(), api_key=<key>)

Project details


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.14.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

fastapi_poe-0.0.14-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_poe-0.0.14.tar.gz.

File metadata

  • Download URL: fastapi_poe-0.0.14.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for fastapi_poe-0.0.14.tar.gz
Algorithm Hash digest
SHA256 6297a1139081bf0a39e2716e79f846f21bb5bafa317784ea990fa99fda4d7fa6
MD5 dde0edb215504048ce4df3bef9618c54
BLAKE2b-256 5fe77fcd26ece8788fa8011a092d43e78d9779878fde5eb3cf3359bf5d8020ac

See more details on using hashes here.

Provenance

File details

Details for the file fastapi_poe-0.0.14-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_poe-0.0.14-py3-none-any.whl
Algorithm Hash digest
SHA256 c57f362240f4fd5c26d4f4c878da1d072d6d49b7c27b75b4cc62a2a4d20b15e6
MD5 456e0be3e647cbb413913af6966cc788
BLAKE2b-256 3337daa4cf8242f48568eb57fcd01f8003e2adaafd44f0ba63450a30dfda71fa

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page