-
Improvement
-
Resolution: Fixed
-
Minor
-
Future Dev
-
MOODLE_500_STABLE
-
MDL-83154-main -
-
-
-
2
-
Team Hedgehog 2024 Sprint 3.3, Team Hedgehog 2024 Review 4, Team Hedgehog 2024 Sprint 4.1
Improve the site registration data capture to include the model used in the actions.
Currently only the name of the provider is captured, however with the addition of MDL-82609 each provider can support multiple models.
Adding this data will also help admins and other users report on functionality within LMS
The action database tables will also need to be upgraded to store the model data.
Proposed data structure for model info:
{
|
"Azure":{ |
"generate_text":{ |
"success_count":3, |
"fail_count":1, |
"predominant_error":403, |
"average_time":2, |
"models" { |
[
|
{
|
"name": "gpt-4o", |
"count": 4 |
}
|
],
|
[
|
{
|
"name": "llama-3", |
"count": 5 |
}
|
]
|
}
|
|
},
|
"generate_image":{ |
"success_count":1, |
"fail_count":1, |
"predominant_error":403, |
"average_time":20 |
}
|
},
|
"time_range":{ |
"timefrom":1723001586, |
"timeto":1723606386 |
}
|
}
|