Hello! So I created my own AI agent in a python code and I can call it via an API.
This is the python code to call it:
import requests
print(
requests.post(
"my_link_here",
json = {
"query":"message"
}
).json()
)
I want to add it to botpress and put the bot on my website. Can you help me?
(btw I don't know other programming languages exept python)