-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathname codette function.txt
More file actions
149 lines (147 loc) · 4.27 KB
/
Copy pathname codette function.txt
File metadata and controls
149 lines (147 loc) · 4.27 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "codette_function_execution",
"description": "Executes functions via OpenAI's Codette assistant with advanced capabilities.",
"strict": false,
"parameters": {
"type": "object",
"required": [
"model",
"messages",
"tools",
"response_format",
"temperature",
"max_completion_tokens",
"top_p",
"frequency_penalty",
"presence_penalty",
"store"
],
"properties": {
"model": {
"type": "string",
"description": "Identifier for the AI model to be used for generating responses."
},
"messages": {
"type": "array",
"description": "Array of message objects forming the conversation history.",
"items": {
"type": "object",
"required": [
"role",
"content"
],
"properties": {
"role": {
"type": "string",
"description": "Role of the message sender, either 'system', 'user', or 'assistant'."
},
"content": {
"type": "array",
"description": "Array of content objects for the message.",
"items": {
"type": "object",
"required": [
"type",
"text"
],
"properties": {
"type": {
"type": "string",
"description": "Type of content, e.g. 'text'."
},
"text": {
"type": "string",
"description": "The actual text of the message."
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
}
},
"tools": {
"type": "array",
"description": "Array of available tools with their respective functions and parameters.",
"items": {
"type": "object",
"required": [
"type",
"function"
],
"properties": {
"type": {
"type": "string",
"description": "Type of tool being utilized, e.g. 'function'."
},
"function": {
"type": "object",
"required": [
"name",
"parameters",
"description"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the function to be called."
},
"parameters": {
"type": "object",
"description": "Parameters for the function call.",
"properties": {},
"additionalProperties": false
},
"description": {
"type": "string",
"description": "Detailed description of what the function does."
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"response_format": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Format of the response to be generated, such as 'text'."
}
},
"additionalProperties": false,
"required": [
"type"
]
},
"temperature": {
"type": "number",
"description": "Sampling temperature controlling randomness in responses."
},
"max_completion_tokens": {
"type": "number",
"description": "Maximum number of tokens in the generated response."
},
"top_p": {
"type": "number",
"description": "Cumulative probability for nucleus sampling."
},
"frequency_penalty": {
"type": "number",
"description": "Penalty for token repetition in responses."
},
"presence_penalty": {
"type": "number",
"description": "Penalty for introducing new topics."
},
"store": {
"type": "boolean",
"description": "Flag to indicate if responses should be stored."
}
},
"additionalProperties": false
}
}