Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion meorg_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ def model_output_create(
return self._make_request(
method=mcc.HTTP_POST,
endpoint=endpoints.MODEL_OUTPUT_CREATE,
data=dict(model=mod_prof_id, name=name) | config_params,
json=dict(model=mod_prof_id, name=name) | config_params,
)

def model_output_query(self, model_id: str) -> Union[dict, requests.Response]:
Expand Down
Loading