Skip to content

Commit

Permalink
feat(model): added model run logging endpoint (#231)
Browse files Browse the repository at this point in the history
Because

- FE needs to access model run logging endpoint

This commit

- added model run logging endpoint
  • Loading branch information
joremysh authored Aug 14, 2024
1 parent a26a077 commit e7c3232
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,4 @@ krakend.json
# air related files and folders
.air.toml
tmp
.idea
13 changes: 13 additions & 0 deletions config/settings-env/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -1912,6 +1912,19 @@
"timeout": "600s",
"input_query_strings": []
},
{
"endpoint": "/v1beta/namespaces/{namespace_id}/models/{model_id}/runs",
"url_pattern": "/v1beta/namespaces/{namespace_id}/models/{model_id}/runs",
"method": "GET",
"timeout": "30s",
"input_query_strings": [
"view",
"pageSize",
"pageToken",
"filter",
"orderBy"
]
},
{
"endpoint": "/v1alpha/users/{user_id}/models",
"url_pattern": "/v1alpha/users/{user_id}/models",
Expand Down

0 comments on commit e7c3232

Please sign in to comment.