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.")
110
+
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
132
]
131
133
132
-
http_methods= [ "POST", "DELETE", "PUT"]
134
+
http_methods= [ "PUT", "DELETE"]
133
135
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]
136
+
5: http_methods[0],
137
+
10: http_methods[1]
137
138
}
138
139
139
140
ifdoc:
140
-
ifself.round<=5:
141
+
ifself.round<5:
141
142
142
143
chain_of_thought_steps= [
143
144
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
145
f"For each endpoint, document the following details: URL, HTTP method, "
145
146
f"query parameters and path variables, expected request body structure for requests, response structure for successful and error responses."
0 commit comments