MCPcopy Create free account
hub / github.com/OpenPipe/OpenPipe / _get_kwargs

Function _get_kwargs

trainer/src/api_client/api/default/get_training_info.py:12–27  ·  view source on GitHub ↗
(
    *,
    fine_tune_id: str,
)

Source from the content-addressed store, hash-verified

10
11
12def _get_kwargs(
13 *,
14 fine_tune_id: str,
15) -> Dict[str, Any]:
16 pass
17
18 params: Dict[str, Any] = {}
19 params["fineTuneId"] = fine_tune_id
20
21 params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
22
23 return {
24 "method": "get",
25 "url": "/training-info",
26 "params": params,
27 }
28
29
30def _parse_response(

Callers 2

sync_detailedFunction · 0.70
asyncio_detailedFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected