forked from reVrost/go-openrouter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessages.go
More file actions
85 lines (79 loc) · 1.94 KB
/
messages.go
File metadata and controls
85 lines (79 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package openrouter
// SystemMessage creates a new system message with the given text content.
func SystemMessage(content string) ChatCompletionMessage {
return ChatCompletionMessage{
Role: ChatMessageRoleSystem,
Content: Content{
Text: content,
},
}
}
// UserMessage creates a new user message with the given text content.
func UserMessage(content string) ChatCompletionMessage {
return ChatCompletionMessage{
Role: ChatMessageRoleUser,
Content: Content{
Text: content,
},
}
}
// AssistantMessage creates a new assistant message with the given text content.
func AssistantMessage(content string) ChatCompletionMessage {
return ChatCompletionMessage{
Role: ChatMessageRoleAssistant,
Content: Content{
Text: content,
},
}
}
// ToolMessage creates a new tool (response) message with a call ID and content.
func ToolMessage(callID string, content string) ChatCompletionMessage {
return ChatCompletionMessage{
Role: ChatMessageRoleTool,
Content: Content{
Text: content,
},
ToolCallID: callID,
}
}
// UserMessageWithPDF creates a new user message with text and PDF file content.
func UserMessageWithPDF(text, filename, fileData string) ChatCompletionMessage {
return ChatCompletionMessage{
Role: ChatMessageRoleUser,
Content: Content{
Multi: []ChatMessagePart{
{
Type: ChatMessagePartTypeText,
Text: text,
},
{
Type: ChatMessagePartTypeFile,
File: &FileContent{
Filename: filename,
FileData: fileData,
},
},
},
},
}
}
// UserMessageWithImage creates a new user message with text and image URL.
func UserMessageWithImage(text, imageURL string) ChatCompletionMessage {
return ChatCompletionMessage{
Role: ChatMessageRoleUser,
Content: Content{
Multi: []ChatMessagePart{
{
Type: ChatMessagePartTypeText,
Text: text,
},
{
Type: ChatMessagePartTypeImageURL,
ImageURL: &ChatMessageImageURL{
URL: imageURL,
},
},
},
},
}
}