Open liku-amare opened 5 months ago
Hi @liku-amare , apologies for the super late response. From your code, I do not see
async def get_settings(self, setting: fp.SettingsRequest) -> fp.SettingsResponse:
return fp.SettingsResponse(server_bot_dependencies={"GPT-3.5-Turbo": 1})
defined anywhere. Do you have this defined in your PoeBot code? see https://creator.poe.com/docs/server-bots-functional-guides#accessing-other-bots-on-poe for details. If you still see issues, please provide the error_id and I can help take a look at the stack trace.
I have created a bot with
GPT-3.5-Turbo
dependency using the code provided here. It works well on the web (poe.com). But I wanted to call my bot through this library and tried with the following code (from here). But it keeps giving thefastapi_poe.client.BotError: {"allow_retry": true, "text": "Internal server error"}
error.The error on my VS Code is:
The error on the
Modal
console is:It seems the GPT-3.5-Turbo dependency is working just fine on the web interface, but not working when using the API. Why is that?