mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-21 20:18:52 +00:00
In-progress: e2e notebook with partial Eval integration
This commit is contained in:
parent
861962fa80
commit
c04ab0133d
19 changed files with 832 additions and 624 deletions
|
@ -95,7 +95,9 @@ class NvidiaPostTrainingAdapter(ModelRegistryHelper):
|
|||
|
||||
for _ in range(self.config.max_retries):
|
||||
# TODO: Remove `verify_ssl=False`. Added for testing purposes to call NMP int environment from `docs/notebooks/nvidia/`
|
||||
async with self.session.request(method, url, params=params, json=json, verify_ssl=False, **kwargs) as response:
|
||||
async with self.session.request(
|
||||
method, url, params=params, json=json, verify_ssl=False, **kwargs
|
||||
) as response:
|
||||
if response.status >= 400:
|
||||
error_data = await response.json()
|
||||
raise Exception(f"API request failed: {error_data}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue