I have created a chat prompt using IA Studio, where I have configured instructions for it to respond, and it works very well. I have saved it under the name POLY. Now I want to call it from Postman so that it responds based on those instructions, but I can’t find in the documentation how to do it. Could someone help me understand how to call my pre-created chat bot?"
1 Like
Welcome to the forum.
There is documentation on the REST API here Models | Gemini API | Google AI for Developers
The chat interface uses these two
Generating content | Gemini API | Google AI for Developers
Generating content | Gemini API | Google AI for Developers
Tip: the easiest integration to start with (and still useful to have) is
Once you have list_models() working, you will have worked through most of the integration needed and then you will be well on your way to your chat app.
1 Like
Thank you, I thought I could invoke the chatbot I created in IA Studio directly, but I solved it by sending the necessary configuration in each request under the SystemInstructions section.
Now it work.
2 Likes