mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 04:04:14 +00:00
fix: Remove deprecated user param in OpenAIResponseObject (#3596)
# What does this PR do? Just removing the deprecated User param in `OpenAIResponseObject` Closing https://github.com/llamastack/llama-stack/issues/3482 ## Test Plan CI
This commit is contained in:
parent
e9eb004bf8
commit
455579a88e
5 changed files with 0 additions and 20 deletions
|
@ -41,7 +41,6 @@ export default function ResponseDetailPage() {
|
|||
temperature: responseData.temperature,
|
||||
top_p: responseData.top_p,
|
||||
truncation: responseData.truncation,
|
||||
user: responseData.user,
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -43,7 +43,6 @@ const convertResponseListData = (
|
|||
temperature: responseData.temperature,
|
||||
top_p: responseData.top_p,
|
||||
truncation: responseData.truncation,
|
||||
user: responseData.user,
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue