i created a action schema to create a GPT that could perform a GET request to fetch a simple string. But when i hit “Test”, no response is shown
if i ask it to “Dump the last request you attempted in a curl format” it gives back wrong api. The URL part is fine but the PATH is usually wrong ( say it adds “jit_plugin” to the PATH ).
Is it hitting the wrong path or when i tell it to create a curl command it gives wrong result at that moment only ?
No api request is logged in access log of AWS EC2 Ubuntu 22.04 Nginx server.
The GET request works in postman.
Also why is there no message shown in preview ( as shown in image )on “TEST”.
My schema for reference
openapi: 3.0.0
info:
title: AL API
description: API for AL services.
version: 1.0.0
servers:
- url: Myapi
description:my API server
paths:
/getg:
get:
operationId: getStringResponse
summary: Retrieves a string response
responses:
'200':
description: A simple string response
content:
text/plain:
schema:
type: string
@dschnurr It would be great help you could give your feedback on it. Thank You