Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement UnmarshalJSON method for custom types #22133

Merged
merged 3 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions sdk/ai/azopenai/custom_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,3 +327,8 @@ func NewChatRequestUserMessageContent[T string | []ChatCompletionRequestMessageC
func (c ChatRequestUserMessageContent) MarshalJSON() ([]byte, error) {
return json.Marshal(c.value)
}

// UnmarshalJSON implements the json.Unmarshaller interface for type ChatRequestUserMessageContent.
func (c *ChatRequestUserMessageContent) UnmarshalJSON(data []byte) error {
return json.Unmarshal(data, &c.value)
}
5 changes: 5 additions & 0 deletions sdk/ai/azopenai/custom_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,3 +185,8 @@ func (tf ChatCompletionsToolChoiceFunction) MarshalJSON() ([]byte, error) {
func (tc ChatCompletionsToolChoice) MarshalJSON() ([]byte, error) {
return json.Marshal(tc.value)
}

// UnmarshalJSON implements the json.Unmarshaller interface for type ChatCompletionsToolChoice.
func (tc *ChatCompletionsToolChoice) UnmarshalJSON(data []byte) error {
return json.Unmarshal(data, &tc.value)
}