MCPcopy Create free account
hub / github.com/TaskingAI/TaskingAI / updateModels

Function updateModels

frontend/src/axios/models.ts:47–50  ·  view source on GitHub ↗
(model_id: string, params: object)

Source from the content-addressed store, hash-verified

45 }
46}
47const updateModels = async (model_id: string, params: object) => {
48 const project_base_url = `api/v1`
49 return await request.post(`${project_base_url}/models/${model_id}`, params)
50}
51const deleteModels = async (model_id: string) => {
52 const project_base_url = `api/v1`
53 return await request.delete(`${project_base_url}/models/${model_id}`)

Callers 1

handleConfirmFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected