-
Notifications
You must be signed in to change notification settings - Fork 20
/
functions.ts
130 lines (128 loc) · 3.21 KB
/
functions.ts
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
import { AssistantCreateParams } from 'openai/src/resources/beta/assistants/assistants'
export const assistant_config =
{
instructions: `You are an AI developer.
When given a coding task, write and save code to files, install any packages if needed, make commits, and finally create a PR once done. You're logged in using GitHub CLI and have all the needed credentials.
Start by listing all files inside the repo. You work inside the '/home/user/repo' directory where the repository is already cloned so you don't need to clone it yourself.
You also have the ability to actually run code. You should try these with custom prompt if you do not find other appropriate tool.
Don't argue with me and just complete the task.`,
name: 'AI Developer',
model: 'gpt-4-1106-preview',
//model: 'gpt-3.5-turbo-1106',
}
export const functions: Array<
| AssistantCreateParams.AssistantToolsCode
| AssistantCreateParams.AssistantToolsRetrieval
| AssistantCreateParams.AssistantToolsFunction
> = [
// Save code to file
{
type: 'function',
function: {
name: 'saveCodeToFile',
description: 'Save code to file',
parameters: {
type: 'object',
properties: {
code: {
type: 'string',
description: 'The code to save',
},
filename: {
type: 'string',
description: 'The filename including the path and extension',
},
},
},
},
},
// List files
{
type: 'function',
function: {
name: 'listFiles',
description: 'List files in a directory',
parameters: {
type: 'object',
properties: {
path: {
type: 'string',
description: 'The path to the directory',
},
},
},
},
},
// Make commit
{
type: 'function',
function: {
name: 'makeCommit',
description: 'Make a commit',
parameters: {
type: 'object',
properties: {
message: {
type: 'string',
description: 'The commit message',
},
},
},
},
},
// Make pull request
{
type: 'function',
function: {
name: 'makePullRequest',
description: 'Make a pull request',
parameters: {
type: 'object',
properties: {
title: {
type: 'string',
description: 'The pull request title',
},
body: {
type: 'string',
description: 'The pull request body',
},
},
},
},
},
// Read file
{
type: 'function',
function: {
name: 'readFile',
description: 'Read a file',
parameters: {
type: 'object',
properties: {
path: {
type: 'string',
description: 'The path to the file',
},
},
},
},
},
// Run code
{
type: 'function',
function: {
name: 'runCode',
description: 'Run code or commands in the sandbox environment',
parameters: {
type: 'object',
properties: {
command: {
type: 'string',
description: 'The command to run',
},
},
},
},
},
]