Skip to content
Closed
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
2 changes: 1 addition & 1 deletion core/request_option.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (r *RequestOptions) cloneHeader() http.Header {
headers := r.HTTPHeader.Clone()
headers.Set("X-Fern-Language", "Go")
headers.Set("X-Fern-SDK-Name", "github.com/vellum-ai/vellum-client-go")
headers.Set("X-Fern-SDK-Version", "v1.13.6")
headers.Set("X-Fern-SDK-Version", "v0.0.4029")
return headers
}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/vellum-ai/vellum-client-go

// Version: v1.13.6
// Version: v1.13.7

go 1.18

Expand Down
7 changes: 4 additions & 3 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1971,7 +1971,8 @@ type ChatMessage struct {
Role ChatMessageRole `json:"role" url:"role"`
Content *ChatMessageContent `json:"content,omitempty" url:"content,omitempty"`
// An optional identifier representing who or what generated this message.
Source *string `json:"source,omitempty" url:"source,omitempty"`
Source *string `json:"source,omitempty" url:"source,omitempty"`
Metadata map[string]interface{} `json:"metadata,omitempty" url:"metadata,omitempty"`

extraProperties map[string]interface{}
_rawJSON json.RawMessage
Expand Down Expand Up @@ -2307,7 +2308,8 @@ type ChatMessageRequest struct {
Role ChatMessageRole `json:"role" url:"role"`
Content *ChatMessageContentRequest `json:"content,omitempty" url:"content,omitempty"`
// An optional identifier representing who or what generated this message.
Source *string `json:"source,omitempty" url:"source,omitempty"`
Source *string `json:"source,omitempty" url:"source,omitempty"`
Metadata map[string]interface{} `json:"metadata,omitempty" url:"metadata,omitempty"`

extraProperties map[string]interface{}
_rawJSON json.RawMessage
Expand Down Expand Up @@ -25394,7 +25396,6 @@ func (w *WorkflowExecutionFulfilledEvent) String() string {
type WorkflowExecutionInitiatedBody struct {
WorkflowDefinition *VellumCodeResourceDefinition `json:"workflow_definition" url:"workflow_definition"`
Inputs map[string]interface{} `json:"inputs" url:"inputs"`
Trigger *VellumCodeResourceDefinition `json:"trigger,omitempty" url:"trigger,omitempty"`

extraProperties map[string]interface{}
_rawJSON json.RawMessage
Expand Down