mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
fix translating response
This commit is contained in:
parent
0e70aca776
commit
db3b2a3ee0
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class VertexFineTuningAPI(VertexLLM):
|
|||
"validating_files", "queued", "running", "succeeded", "failed", "cancelled"
|
||||
] = "queued"
|
||||
if response["state"] == "JOB_STATE_PENDING":
|
||||
status = "validating_files"
|
||||
status = "queued"
|
||||
if response["state"] == "JOB_STATE_SUCCEEDED":
|
||||
status = "succeeded"
|
||||
if response["state"] == "JOB_STATE_FAILED":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue