From 32b3070b247d8c18af1862098b0138492d46ec7c Mon Sep 17 00:00:00 2001 From: Ikk Anmol Singh Hundal <5581466+anmolsingh95@users.noreply.github.com> Date: Tue, 5 Mar 2024 14:59:00 -0800 Subject: [PATCH] migrate to new documentation (#71) Co-authored-by: Anmol Singh --- README.md | 3 +-- pyproject.toml | 2 +- src/fastapi_poe/client.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 529f329..fb40550 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ # fastapi_poe An implementation of the -[Poe protocol](https://developer.poe.com/server-bots/poe-protocol-specification) using -FastAPI. +[Poe protocol](https://creator.poe.com/docs/poe-protocol-specification) using FastAPI. ### Write your own bot diff --git a/pyproject.toml b/pyproject.toml index 960f419..47b87a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ ] [project.urls] -"Homepage" = "https://developer.poe.com/" +"Homepage" = "https://creator.poe.com/" [tool.pyright] pythonVersion = "3.7" diff --git a/src/fastapi_poe/client.py b/src/fastapi_poe/client.py index 885c4d2..fbbb0df 100644 --- a/src/fastapi_poe/client.py +++ b/src/fastapi_poe/client.py @@ -1,7 +1,7 @@ """ Client for talking to other Poe bots through the Poe bot query API. -For more details, see: https://developer.poe.com/server-bots/accessing-other-bots-on-poe +For more details, see: https://creator.poe.com/docs/accessing-other-bots-on-poe """