Feedback
Create a Feedback
from orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.feedback.post_v2_feedback()
# Handle response
print(res)
Show Parameters
Show Parameters
Unique identifier for the feedback
A string describing the specific property or aspect rated.
The feedback value. For single selection of multiple choice, the value should be an array of strings. For
correction, the value should be a string.The id returned by the
get_config or invoke endpointsShow Response
Show Response
Unique identifier for the feedback
A string describing the specific property or aspect rated.
The feedback value. For single selection of multiple choice, the value should be an array of strings. For
correction, the value should be a string.The id returned by the
get_config or invoke endpointsFeedback Remove
from orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.feedback.post_v2_feedback_remove()
# Handle response
print(res)