You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"Create HTTPRequests of type {method} considering the found schemas: {self.schemas} and understand the responses. Ensure that they are correct requests.")
105
+
f"Create HTTPRequests of type {method} considering only the object with id=1 for the endpoint and understand the responses. Ensure that they are correct requests.")
"Make the OpenAPI specification available to developers by incorporating it into your API documentation site and keep the documentation up to date with API changes."
130
127
]
131
128
132
-
http_methods= [ "POST", "DELETE", "PUT"]
129
+
http_methods= [ "PUT", "DELETE"]
133
130
http_phase= {
134
-
6: http_methods[0],
135
-
16: http_methods[1], # Delete one of instance of this:{self.llm_handler.get_created_objects()}",
136
-
20: http_methods[2]
131
+
5: http_methods[0],
132
+
10: http_methods[1]
137
133
}
138
134
139
135
ifdoc:
140
-
ifself.round<=5:
136
+
ifself.round<5:
141
137
142
138
chain_of_thought_steps= [
143
139
f"Identify all available endpoints via GET Requests. Exclude those in this list: {self.found_endpoints}", f"Note down the response structures, status codes, and headers for each endpoint.",
144
140
f"For each endpoint, document the following details: URL, HTTP method, "
145
141
f"query parameters and path variables, expected request body structure for requests, response structure for successful and error responses."
0 commit comments