genaicode 0.0.37 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (244) hide show
  1. package/bin/genaicode-dev.js +11 -0
  2. package/bin/genaicode.cjs +8 -1
  3. package/dist/ai-service/ai-studio.d.ts +5 -0
  4. package/dist/ai-service/ai-studio.js +135 -0
  5. package/dist/ai-service/ai-studio.js.map +1 -0
  6. package/dist/ai-service/anthropic.d.ts +5 -0
  7. package/dist/ai-service/anthropic.js +133 -0
  8. package/dist/ai-service/anthropic.js.map +1 -0
  9. package/dist/ai-service/chat-gpt.d.ts +5 -0
  10. package/dist/ai-service/chat-gpt.js +131 -0
  11. package/dist/ai-service/chat-gpt.js.map +1 -0
  12. package/dist/ai-service/common.d.ts +57 -0
  13. package/dist/ai-service/common.js +38 -0
  14. package/dist/ai-service/common.js.map +1 -0
  15. package/dist/ai-service/common.test.d.ts +1 -0
  16. package/dist/ai-service/common.test.js +85 -0
  17. package/dist/ai-service/common.test.js.map +1 -0
  18. package/dist/ai-service/dall-e.d.ts +14 -0
  19. package/dist/ai-service/dall-e.js +47 -0
  20. package/dist/ai-service/dall-e.js.map +1 -0
  21. package/dist/ai-service/vertex-ai-claude.d.ts +5 -0
  22. package/dist/ai-service/vertex-ai-claude.js +93 -0
  23. package/dist/ai-service/vertex-ai-claude.js.map +1 -0
  24. package/dist/ai-service/vertex-ai-imagen.d.ts +14 -0
  25. package/dist/ai-service/vertex-ai-imagen.js +74 -0
  26. package/dist/ai-service/vertex-ai-imagen.js.map +1 -0
  27. package/dist/ai-service/vertex-ai.d.ts +7 -0
  28. package/dist/ai-service/vertex-ai.js +147 -0
  29. package/dist/ai-service/vertex-ai.js.map +1 -0
  30. package/dist/cli/cli-options.d.ts +10 -0
  31. package/dist/cli/cli-options.js +124 -0
  32. package/dist/cli/cli-options.js.map +1 -0
  33. package/dist/cli/cli-options.test.d.ts +1 -0
  34. package/dist/cli/cli-options.test.js +34 -0
  35. package/dist/cli/cli-options.test.js.map +1 -0
  36. package/dist/cli/cli-params.d.ts +29 -0
  37. package/dist/cli/cli-params.js +103 -0
  38. package/dist/cli/cli-params.js.map +1 -0
  39. package/dist/cli/cli-params.test.d.ts +1 -0
  40. package/dist/cli/cli-params.test.js +38 -0
  41. package/dist/cli/cli-params.test.js.map +1 -0
  42. package/dist/cli/service-autodetect.d.ts +2 -0
  43. package/dist/cli/service-autodetect.js +17 -0
  44. package/dist/cli/service-autodetect.js.map +1 -0
  45. package/dist/cli/service-autodetect.test.d.ts +1 -0
  46. package/dist/cli/service-autodetect.test.js +38 -0
  47. package/dist/cli/service-autodetect.test.js.map +1 -0
  48. package/dist/cli/validate-cli-params.d.ts +18 -0
  49. package/dist/cli/validate-cli-params.js +128 -0
  50. package/dist/cli/validate-cli-params.js.map +1 -0
  51. package/dist/cli/validate-cli-params.test.d.ts +1 -0
  52. package/dist/cli/validate-cli-params.test.js +106 -0
  53. package/dist/cli/validate-cli-params.test.js.map +1 -0
  54. package/dist/files/file-utils.d.ts +2 -0
  55. package/dist/files/file-utils.js +7 -0
  56. package/dist/files/file-utils.js.map +1 -0
  57. package/dist/files/file-utils.test.d.ts +1 -0
  58. package/dist/files/file-utils.test.js +18 -0
  59. package/dist/files/file-utils.test.js.map +1 -0
  60. package/dist/files/find-files.d.ts +8 -0
  61. package/dist/files/find-files.js +76 -0
  62. package/dist/files/find-files.js.map +1 -0
  63. package/dist/files/read-files.d.ts +13 -0
  64. package/dist/files/read-files.js +61 -0
  65. package/dist/files/read-files.js.map +1 -0
  66. package/dist/files/read-files.test.d.ts +1 -0
  67. package/dist/files/read-files.test.js +89 -0
  68. package/dist/files/read-files.test.js.map +1 -0
  69. package/dist/files/temp-buffer.d.ts +2 -0
  70. package/dist/files/temp-buffer.js +12 -0
  71. package/dist/files/temp-buffer.js.map +1 -0
  72. package/dist/files/update-files.d.ts +5 -0
  73. package/dist/files/update-files.js +197 -0
  74. package/dist/files/update-files.js.map +1 -0
  75. package/dist/images/ensure-alpha.d.ts +1 -0
  76. package/dist/images/ensure-alpha.js +5 -0
  77. package/dist/images/ensure-alpha.js.map +1 -0
  78. package/dist/images/imgly-remove-background.d.ts +2 -0
  79. package/dist/images/imgly-remove-background.js +21 -0
  80. package/dist/images/imgly-remove-background.js.map +1 -0
  81. package/dist/images/resize-image.d.ts +19 -0
  82. package/dist/images/resize-image.js +22 -0
  83. package/dist/images/resize-image.js.map +1 -0
  84. package/dist/images/split-image.d.ts +18 -0
  85. package/dist/images/split-image.js +25 -0
  86. package/dist/images/split-image.js.map +1 -0
  87. package/dist/main/codegen.d.ts +2 -0
  88. package/dist/main/codegen.js +101 -0
  89. package/dist/main/codegen.js.map +1 -0
  90. package/dist/main/codegen.test.d.ts +2 -0
  91. package/dist/main/codegen.test.js +259 -0
  92. package/dist/main/codegen.test.js.map +1 -0
  93. package/dist/main/config-lib.d.ts +8 -0
  94. package/dist/main/config-lib.js +28 -0
  95. package/dist/main/config-lib.js.map +1 -0
  96. package/dist/main/config-lib.test.d.ts +1 -0
  97. package/dist/main/config-lib.test.js +64 -0
  98. package/dist/main/config-lib.test.js.map +1 -0
  99. package/dist/main/config.d.ts +5 -0
  100. package/{src → dist}/main/config.js +16 -22
  101. package/dist/main/config.js.map +1 -0
  102. package/dist/prompt/function-calling-validate.d.ts +3 -0
  103. package/dist/prompt/function-calling-validate.js +27 -0
  104. package/dist/prompt/function-calling-validate.js.map +1 -0
  105. package/dist/prompt/function-calling.d.ts +5 -0
  106. package/{src → dist}/prompt/function-calling.js +25 -24
  107. package/dist/prompt/function-calling.js.map +1 -0
  108. package/dist/prompt/function-defs/ask-question.d.ts +31 -0
  109. package/dist/prompt/function-defs/ask-question.js +32 -0
  110. package/dist/prompt/function-defs/ask-question.js.map +1 -0
  111. package/dist/prompt/function-defs/codegen-summary.d.ts +63 -0
  112. package/dist/prompt/function-defs/codegen-summary.js +80 -0
  113. package/dist/prompt/function-defs/codegen-summary.js.map +1 -0
  114. package/dist/prompt/function-defs/create-directory.d.ts +21 -0
  115. package/dist/prompt/function-defs/create-directory.js +22 -0
  116. package/dist/prompt/function-defs/create-directory.js.map +1 -0
  117. package/dist/prompt/function-defs/create-file.d.ts +25 -0
  118. package/dist/prompt/function-defs/create-file.js +26 -0
  119. package/dist/prompt/function-defs/create-file.js.map +1 -0
  120. package/dist/prompt/function-defs/delete-file.d.ts +21 -0
  121. package/dist/prompt/function-defs/delete-file.js +22 -0
  122. package/dist/prompt/function-defs/delete-file.js.map +1 -0
  123. package/dist/prompt/function-defs/download-file.d.ts +25 -0
  124. package/dist/prompt/function-defs/download-file.js +26 -0
  125. package/dist/prompt/function-defs/download-file.js.map +1 -0
  126. package/dist/prompt/function-defs/explanation.d.ts +17 -0
  127. package/dist/prompt/function-defs/explanation.js +18 -0
  128. package/dist/prompt/function-defs/explanation.js.map +1 -0
  129. package/dist/prompt/function-defs/generate-image.d.ts +48 -0
  130. package/dist/prompt/function-defs/generate-image.js +49 -0
  131. package/dist/prompt/function-defs/generate-image.js.map +1 -0
  132. package/dist/prompt/function-defs/get-image-assets.d.ts +20 -0
  133. package/dist/prompt/function-defs/get-image-assets.js +21 -0
  134. package/dist/prompt/function-defs/get-image-assets.js.map +1 -0
  135. package/dist/prompt/function-defs/get-source-code.d.ts +20 -0
  136. package/dist/prompt/function-defs/get-source-code.js +21 -0
  137. package/dist/prompt/function-defs/get-source-code.js.map +1 -0
  138. package/dist/prompt/function-defs/imgly-remove-background.d.ts +25 -0
  139. package/dist/prompt/function-defs/imgly-remove-background.js +26 -0
  140. package/dist/prompt/function-defs/imgly-remove-background.js.map +1 -0
  141. package/dist/prompt/function-defs/move-file.d.ts +25 -0
  142. package/dist/prompt/function-defs/move-file.js +26 -0
  143. package/dist/prompt/function-defs/move-file.js.map +1 -0
  144. package/dist/prompt/function-defs/patch-file.d.ts +25 -0
  145. package/dist/prompt/function-defs/patch-file.js +39 -0
  146. package/dist/prompt/function-defs/patch-file.js.map +1 -0
  147. package/dist/prompt/function-defs/resize-image.d.ts +36 -0
  148. package/dist/prompt/function-defs/resize-image.js +37 -0
  149. package/dist/prompt/function-defs/resize-image.js.map +1 -0
  150. package/dist/prompt/function-defs/split-image.d.ts +57 -0
  151. package/dist/prompt/function-defs/split-image.js +46 -0
  152. package/dist/prompt/function-defs/split-image.js.map +1 -0
  153. package/dist/prompt/function-defs/update-file.d.ts +25 -0
  154. package/dist/prompt/function-defs/update-file.js +26 -0
  155. package/dist/prompt/function-defs/update-file.js.map +1 -0
  156. package/dist/prompt/limits.d.ts +3 -0
  157. package/dist/prompt/limits.js +19 -0
  158. package/dist/prompt/limits.js.map +1 -0
  159. package/dist/prompt/limits.test.d.ts +1 -0
  160. package/dist/prompt/limits.test.js +35 -0
  161. package/dist/prompt/limits.test.js.map +1 -0
  162. package/dist/prompt/prompt-codegen.d.ts +4 -0
  163. package/dist/prompt/prompt-codegen.js +81 -0
  164. package/dist/prompt/prompt-codegen.js.map +1 -0
  165. package/dist/prompt/prompt-codegen.test.d.ts +1 -0
  166. package/dist/prompt/prompt-codegen.test.js +94 -0
  167. package/dist/prompt/prompt-codegen.test.js.map +1 -0
  168. package/dist/prompt/prompt-consts.d.ts +1 -0
  169. package/{src → dist}/prompt/prompt-consts.js +1 -0
  170. package/dist/prompt/prompt-consts.js.map +1 -0
  171. package/dist/prompt/prompt-service-ask-question.test.d.ts +3 -0
  172. package/dist/prompt/prompt-service-ask-question.test.js +146 -0
  173. package/dist/prompt/prompt-service-ask-question.test.js.map +1 -0
  174. package/dist/prompt/prompt-service.d.ts +13 -0
  175. package/dist/prompt/prompt-service.js +278 -0
  176. package/dist/prompt/prompt-service.js.map +1 -0
  177. package/dist/prompt/prompt-service.test.d.ts +1 -0
  178. package/dist/prompt/prompt-service.test.js +511 -0
  179. package/dist/prompt/prompt-service.test.js.map +1 -0
  180. package/dist/prompt/systemprompt.d.ts +2 -0
  181. package/dist/prompt/systemprompt.js +43 -0
  182. package/dist/prompt/systemprompt.js.map +1 -0
  183. package/dist/prompt/systemprompt.test.d.ts +2 -0
  184. package/dist/prompt/systemprompt.test.js +47 -0
  185. package/dist/prompt/systemprompt.test.js.map +1 -0
  186. package/package.json +13 -4
  187. package/bin/genaicode.js +0 -5
  188. package/src/ai-service/anthropic.js +0 -126
  189. package/src/ai-service/chat-gpt.js +0 -126
  190. package/src/ai-service/common.js +0 -49
  191. package/src/ai-service/common.test.js +0 -107
  192. package/src/ai-service/dall-e.js +0 -50
  193. package/src/ai-service/vertex-ai-claude.js +0 -99
  194. package/src/ai-service/vertex-ai-imagen.js +0 -78
  195. package/src/ai-service/vertex-ai.js +0 -156
  196. package/src/cli/cli-options.js +0 -132
  197. package/src/cli/cli-options.test.js +0 -50
  198. package/src/cli/cli-params.js +0 -114
  199. package/src/cli/cli-params.test.js +0 -43
  200. package/src/cli/service-autodetect.js +0 -11
  201. package/src/cli/service-autodetect.test.js +0 -43
  202. package/src/cli/validate-cli-params.js +0 -137
  203. package/src/cli/validate-cli-params.test.js +0 -134
  204. package/src/files/file-utils.js +0 -7
  205. package/src/files/file-utils.test.js +0 -21
  206. package/src/files/find-files.js +0 -86
  207. package/src/files/read-files.js +0 -65
  208. package/src/files/read-files.test.js +0 -103
  209. package/src/files/temp-buffer.js +0 -13
  210. package/src/files/update-files.js +0 -205
  211. package/src/images/ensure-alpha.js +0 -5
  212. package/src/images/imgly-remove-background.js +0 -23
  213. package/src/images/resize-image.js +0 -23
  214. package/src/images/split-image.js +0 -26
  215. package/src/main/codegen.js +0 -120
  216. package/src/main/codegen.test.js +0 -335
  217. package/src/main/config-lib.js +0 -33
  218. package/src/main/config-lib.test.js +0 -80
  219. package/src/prompt/function-calling-validate.js +0 -25
  220. package/src/prompt/function-defs/ask-question.js +0 -33
  221. package/src/prompt/function-defs/codegen-summary.js +0 -87
  222. package/src/prompt/function-defs/create-directory.js +0 -21
  223. package/src/prompt/function-defs/create-file.js +0 -26
  224. package/src/prompt/function-defs/delete-file.js +0 -21
  225. package/src/prompt/function-defs/download-file.js +0 -25
  226. package/src/prompt/function-defs/explanation.js +0 -17
  227. package/src/prompt/function-defs/generate-image.js +0 -51
  228. package/src/prompt/function-defs/get-image-assets.js +0 -21
  229. package/src/prompt/function-defs/get-source-code.js +0 -21
  230. package/src/prompt/function-defs/imgly-remove-background.js +0 -25
  231. package/src/prompt/function-defs/move-file.js +0 -25
  232. package/src/prompt/function-defs/patch-file.js +0 -39
  233. package/src/prompt/function-defs/resize-image.js +0 -36
  234. package/src/prompt/function-defs/split-image.js +0 -45
  235. package/src/prompt/function-defs/update-file.js +0 -26
  236. package/src/prompt/limits.js +0 -23
  237. package/src/prompt/limits.test.js +0 -40
  238. package/src/prompt/prompt-codegen.js +0 -106
  239. package/src/prompt/prompt-codegen.test.js +0 -116
  240. package/src/prompt/prompt-service-ask-question.test.js +0 -163
  241. package/src/prompt/prompt-service.js +0 -335
  242. package/src/prompt/prompt-service.test.js +0 -602
  243. package/src/prompt/systemprompt.js +0 -39
  244. package/src/prompt/systemprompt.test.js +0 -64
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genaicode",
3
- "version": "0.0.37",
3
+ "version": "0.1.1",
4
4
  "author": "Grzegorz Tańczyk",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,17 +19,20 @@
19
19
  "license": "Apache-2.0",
20
20
  "files": [
21
21
  "bin",
22
- "src",
22
+ "dist",
23
23
  "media",
24
24
  "README.md",
25
25
  "LICENSE"
26
26
  ],
27
27
  "scripts": {
28
- "lint": "eslint . --ext js --report-unused-disable-directives --max-warnings 0",
28
+ "lint": "eslint . --ext js,ts --report-unused-disable-directives --max-warnings 0",
29
29
  "test": "vitest",
30
30
  "coverage": "vitest run --coverage",
31
31
  "prepare": "husky install",
32
- "postinstall": "node ./bin/vertex-monkey-patch.cjs"
32
+ "postinstall": "node ./bin/vertex-monkey-patch.cjs",
33
+ "type-check": "tsc --noEmit",
34
+ "build": "tsc",
35
+ "prepublishOnly": "npm run build"
33
36
  },
34
37
  "devDependencies": {
35
38
  "@typescript-eslint/eslint-plugin": "^7.17.0",
@@ -40,6 +43,8 @@
40
43
  "husky": "^9.1.1",
41
44
  "lint-staged": "^15.2.7",
42
45
  "prettier": "^3.1.0",
46
+ "ts-node": "^10.9.2",
47
+ "typescript": "^5.0.0",
43
48
  "vitest": "^2.0.4"
44
49
  },
45
50
  "dependencies": {
@@ -47,7 +52,11 @@
47
52
  "@anthropic-ai/vertex-sdk": "^0.4.1",
48
53
  "@google-cloud/aiplatform": "^3.25.0",
49
54
  "@google-cloud/vertexai": "^1.3.0",
55
+ "@google/generative-ai": "^0.17.1",
50
56
  "@imgly/background-removal-node": "^1.4.5",
57
+ "@types/diff": "^5.2.1",
58
+ "@types/mime-types": "^2.1.4",
59
+ "@types/node": "^18.0.0",
51
60
  "diff": "^5.2.0",
52
61
  "glob-regex": "^0.3.2",
53
62
  "image-size": "^1.1.1",
package/bin/genaicode.js DELETED
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- import { runCodegen } from '../src/main/codegen.js';
4
-
5
- await runCodegen();
@@ -1,126 +0,0 @@
1
- import Anthropic from '@anthropic-ai/sdk';
2
- import { printTokenUsageAndCost, processFunctionCalls } from './common.js';
3
- import { disableCache } from '../cli/cli-params.js';
4
-
5
- /**
6
- * This function generates content using the Anthropic Claude model.
7
- */
8
- export async function generateContent(prompt, functionDefs, requiredFunctionName, temperature, cheap = false) {
9
- const anthropic = new Anthropic({
10
- defaultHeaders: {
11
- 'anthropic-beta': 'max-tokens-3-5-sonnet-2024-07-15' + (!disableCache ? ',prompt-caching-2024-07-31' : ''),
12
- },
13
- });
14
-
15
- const messages = prompt
16
- .filter((item) => item.type !== 'systemPrompt')
17
- .map((item) => {
18
- if (item.type === 'user') {
19
- return {
20
- role: 'user',
21
- content: [
22
- ...(item.functionResponses ?? []).map((response) => ({
23
- tool_use_id: response.call_id ?? response.name,
24
- content: response.content,
25
- type: 'tool_result',
26
- is_error: response.isError === true,
27
- })),
28
- ...(item.images ?? []).map((image) => ({
29
- type: 'image',
30
- source: {
31
- type: 'base64',
32
- media_type: image.mediaType,
33
- data: image.base64url,
34
- },
35
- })),
36
- {
37
- type: 'text',
38
- text: item.text,
39
- ...(item.cache && !disableCache ? { cache_control: { type: 'ephemeral' } } : {}),
40
- },
41
- ],
42
- };
43
- } else if (item.type === 'assistant') {
44
- return {
45
- role: 'assistant',
46
- content: [
47
- ...(item.text ? [{ type: 'text', text: item.text }] : []),
48
- ...item.functionCalls.map((call) => ({
49
- id: call.id ?? call.name,
50
- name: call.name,
51
- input: call.args ?? {},
52
- type: 'tool_use',
53
- })),
54
- ],
55
- };
56
- }
57
- });
58
-
59
- const model = cheap ? 'claude-3-haiku-20240307' : 'claude-3-5-sonnet-20240620';
60
- console.log(`Using Anthropic model: ${model}`);
61
-
62
- let retryCount = 0;
63
- let response;
64
- while (retryCount < 3) {
65
- try {
66
- response = await anthropic.beta.promptCaching.messages.create({
67
- model: model,
68
- system: prompt.find((item) => item.type === 'systemPrompt').systemPrompt,
69
- messages,
70
- tools: functionDefs.map((fd) => ({
71
- name: fd.name,
72
- description: fd.description,
73
- input_schema: fd.parameters,
74
- })),
75
- tool_choice: requiredFunctionName ? { type: 'tool', name: requiredFunctionName } : { type: 'any' },
76
- max_tokens: cheap ? 4096 : 8192,
77
- temperature: temperature,
78
- });
79
- break; // Exit loop if successful
80
- } catch (error) {
81
- if (error.headers?.['retry-after']) {
82
- let retryAfter;
83
- if (error.headers['retry-after'] === '0') {
84
- retryAfter = (new Date(error.headers['anthropic-ratelimit-tokens-reset']).getTime() - Date.now()) / 1000;
85
- } else {
86
- retryAfter = Math.max(parseInt(error.headers['retry-after'], 10), 10);
87
- }
88
- console.log(`Rate limited. Retrying after ${retryAfter} seconds. Attempt ${retryCount + 1} of 3.`);
89
- await new Promise((resolve) => setTimeout(resolve, retryAfter * 1000));
90
- retryCount++;
91
- } else {
92
- console.error('An error occurred:', error);
93
- throw error; // Re-throw the error if it's not a rate limit error
94
- }
95
- }
96
- }
97
-
98
- if (retryCount === 3) {
99
- console.error('Failed to complete request after 3 attempts due to rate limiting.');
100
- throw new Error('Rate limit exceeded. Operation aborted.');
101
- }
102
-
103
- // Print token usage for Anthropic
104
- const usage = {
105
- cacheCreateTokens: response.usage.cache_creation_input_tokens,
106
- cacheReadTokens: response.usage.cache_read_input_tokens,
107
- inputTokens: response.usage.input_tokens,
108
- outputTokens: response.usage.output_tokens,
109
- totalTokens: response.usage.input_tokens + response.usage.output_tokens,
110
- };
111
- printTokenUsageAndCost(usage, 3 / 1000 / 1000, 15 / 1000 / 1000);
112
-
113
- const responseMessages = response.content.filter((item) => item.type !== 'tool_use');
114
- if (responseMessages.length > 0) {
115
- console.log('Response messages', responseMessages);
116
- }
117
-
118
- const functionCalls = response.content
119
- .filter((item) => item.type === 'tool_use')
120
- .map((item) => ({
121
- name: item.name,
122
- args: item.input,
123
- }));
124
-
125
- return processFunctionCalls(functionCalls);
126
- }
@@ -1,126 +0,0 @@
1
- import OpenAI from 'openai';
2
- import { printTokenUsageAndCost, processFunctionCalls } from './common.js';
3
-
4
- /**
5
- * This function generates content using the OpenAI chat model.
6
- */
7
- export async function generateContent(prompt, functionDefs, requiredFunctionName, temperature, cheap = false) {
8
- const openai = new OpenAI();
9
-
10
- const messages = prompt
11
- .map((item) => {
12
- if (item.type === 'systemPrompt') {
13
- return {
14
- role: 'system',
15
- content: item.systemPrompt,
16
- };
17
- } else if (item.type === 'user') {
18
- return [
19
- ...(item.functionResponses ?? []).map((response) => ({
20
- role: 'tool',
21
- name: response.name,
22
- content: response.content ?? '',
23
- tool_call_id: response.name,
24
- })),
25
- {
26
- role: 'user',
27
- content:
28
- item.images?.length > 0
29
- ? [
30
- ...item.images.map((image) => ({
31
- type: 'image_url',
32
- image_url: {
33
- url: 'data:' + image.mediaType + ';base64,' + image.base64url,
34
- },
35
- })),
36
- {
37
- type: 'text',
38
- text: item.text,
39
- },
40
- ]
41
- : item.text,
42
- },
43
- ];
44
- } else if (item.type === 'assistant') {
45
- return {
46
- role: 'assistant',
47
- ...(item.text ? { content: item.text } : {}),
48
- tool_calls: item.functionCalls.map((call) => ({
49
- type: 'function',
50
- function: { name: call.name, arguments: JSON.stringify(call.args ?? {}) },
51
- id: call.name,
52
- })),
53
- };
54
- }
55
- })
56
- .flat();
57
-
58
- const model = cheap ? 'gpt-4o-mini' : 'gpt-4o-2024-08-06';
59
- console.log(`Using OpenAI model: ${model}`);
60
-
61
- let retryCount = 0;
62
- let response;
63
- while (retryCount < 3) {
64
- try {
65
- response = await openai.chat.completions.create({
66
- model: model,
67
- messages,
68
- tools: functionDefs.map((funDef) => ({ type: 'function', function: funDef })),
69
- tool_choice: requiredFunctionName ? { type: 'function', function: { name: requiredFunctionName } } : 'required',
70
- temperature: temperature,
71
- });
72
- break; // Exit loop if successful
73
- } catch (error) {
74
- if (error.response?.headers?.['x-ratelimit-limit-tokens']) {
75
- const rateLimitTokens = parseInt(error.response.headers['x-ratelimit-limit-tokens'], 10);
76
- const retryAfter = error.response.headers['retry-after']
77
- ? parseInt(error.response.headers['retry-after'], 10)
78
- : 1;
79
- console.log(
80
- `Rate limited. Token limit: ${rateLimitTokens}. Retrying after ${retryAfter} seconds. Attempt ${retryCount + 1} of 3.`,
81
- );
82
- await new Promise((resolve) => setTimeout(resolve, retryAfter * 1000));
83
- retryCount++;
84
- } else {
85
- console.error('An error occurred:', error);
86
- throw error; // Re-throw the error if it's not a rate limit error
87
- }
88
- }
89
- }
90
-
91
- if (retryCount === 3) {
92
- console.error('Failed to complete request after 3 attempts due to rate limiting.');
93
- throw new Error('Rate limit exceeded. Operation aborted.');
94
- }
95
-
96
- // Print token usage for chat gpt
97
- const usage = {
98
- inputTokens: response.usage.prompt_tokens,
99
- outputTokens: response.usage.completion_tokens,
100
- totalTokens: response.usage.total_tokens,
101
- };
102
- printTokenUsageAndCost(usage, 0.000005, 0.000015);
103
-
104
- const responseMessage = response.choices[0].message;
105
-
106
- if (responseMessage.content?.message) {
107
- console.log('Message', responseMessage.content.message);
108
- }
109
-
110
- const toolCalls = responseMessage.tool_calls;
111
- if (responseMessage.tool_calls) {
112
- const functionCalls = toolCalls.map((call) => {
113
- const name = call.function.name;
114
- const args = JSON.parse(call.function.arguments);
115
-
116
- return {
117
- name,
118
- args,
119
- };
120
- });
121
-
122
- return processFunctionCalls(functionCalls);
123
- } else {
124
- throw new Error('No tool calls found in response');
125
- }
126
- }
@@ -1,49 +0,0 @@
1
- import assert from 'node:assert';
2
- import { functionDefs } from '../prompt/function-calling.js';
3
-
4
- /**
5
- * Common function to print token usage and estimated cost
6
- * @param {Object} usage Token usage object
7
- * @param {number} inputCostPerToken Cost per input token
8
- * @param {number} outputCostPerToken Cost per output token
9
- */
10
- export function printTokenUsageAndCost(usage, inputCostPerToken, outputCostPerToken) {
11
- console.log('Token Usage:');
12
- console.log(' - Input tokens: ', usage.inputTokens);
13
- console.log(' - Output tokens: ', usage.outputTokens);
14
- console.log(' - Total tokens: ', usage.totalTokens);
15
- if (usage.cacheCreateTokens) {
16
- console.log(' - Cache create tokens: ', usage.cacheCreateTokens);
17
- }
18
- if (usage.cacheReadTokens) {
19
- console.log(' - Cache read tokens: ', usage.cacheReadTokens);
20
- }
21
-
22
- const inputCost =
23
- usage.inputTokens * inputCostPerToken +
24
- (usage.cacheCreateTokens ?? 0) * inputCostPerToken * 1.25 +
25
- (usage.cacheReadTokens ?? 0) * inputCostPerToken * 0.2;
26
- const outputCost = usage.outputTokens * outputCostPerToken;
27
- const totalCost = inputCost + outputCost;
28
- console.log(' - Estimated cost: ', totalCost.toFixed(6), ' USD');
29
- }
30
-
31
- /**
32
- * Common function to process function calls and explanations
33
- * @param {Array} functionCalls Array of function calls
34
- * @returns {Array} Processed function calls
35
- */
36
- export function processFunctionCalls(functionCalls) {
37
- const unknownFunctionCalls = functionCalls.filter((call) => !functionDefs.some((fd) => fd.name === call.name));
38
- assert(
39
- unknownFunctionCalls.length === 0,
40
- 'Unknown function name: ' + unknownFunctionCalls.map((call) => call.name).join(', '),
41
- );
42
-
43
- console.log(
44
- 'Explanations:',
45
- functionCalls.filter((fn) => fn.name === 'explanation').map((call) => call.args.text),
46
- );
47
-
48
- return functionCalls; //.filter((fn) => fn.name !== 'explanation');
49
- }
@@ -1,107 +0,0 @@
1
- import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
2
- import { printTokenUsageAndCost, processFunctionCalls } from './common.js';
3
- import { functionDefs } from '../prompt/function-calling.js';
4
-
5
- // Mock cli-params.js
6
- vi.mock('../cli/cli-params.js', () => ({
7
- chatGpt: true,
8
- anthropic: false,
9
- vertexAi: false,
10
- vertexAiClaude: false,
11
- temperature: 0.7,
12
- cheap: false,
13
- geminiBlockNone: false,
14
- requireExplanations: false,
15
- vision: false,
16
- }));
17
-
18
- describe('printTokenUsageAndCost', () => {
19
- let consoleLogSpy;
20
-
21
- beforeEach(() => {
22
- consoleLogSpy = vi.spyOn(console, 'log').mockImplementation(() => {});
23
- });
24
-
25
- afterEach(() => {
26
- consoleLogSpy.mockRestore();
27
- });
28
-
29
- it('should correctly log token usage and estimated cost', () => {
30
- const usage = {
31
- inputTokens: 100,
32
- outputTokens: 50,
33
- totalTokens: 150,
34
- };
35
- const inputCostPerToken = 0.0001;
36
- const outputCostPerToken = 0.0002;
37
-
38
- printTokenUsageAndCost(usage, inputCostPerToken, outputCostPerToken);
39
-
40
- expect(consoleLogSpy).toHaveBeenCalledTimes(5);
41
- expect(consoleLogSpy).toHaveBeenCalledWith('Token Usage:');
42
- expect(consoleLogSpy).toHaveBeenCalledWith(' - Input tokens: ', 100);
43
- expect(consoleLogSpy).toHaveBeenCalledWith(' - Output tokens: ', 50);
44
- expect(consoleLogSpy).toHaveBeenCalledWith(' - Total tokens: ', 150);
45
- expect(consoleLogSpy).toHaveBeenCalledWith(' - Estimated cost: ', '0.020000', ' USD');
46
- });
47
-
48
- it('should handle zero tokens correctly', () => {
49
- const usage = {
50
- inputTokens: 0,
51
- outputTokens: 0,
52
- totalTokens: 0,
53
- };
54
- const inputCostPerToken = 0.0001;
55
- const outputCostPerToken = 0.0002;
56
-
57
- printTokenUsageAndCost(usage, inputCostPerToken, outputCostPerToken);
58
-
59
- expect(consoleLogSpy).toHaveBeenCalledWith(' - Estimated cost: ', '0.000000', ' USD');
60
- });
61
- });
62
-
63
- describe('processFunctionCalls', () => {
64
- it('should process valid function calls correctly', () => {
65
- const validFunctionCalls = [
66
- { name: 'explanation', args: { text: 'This is an explanation' } },
67
- { name: functionDefs[0].name, args: {} },
68
- ];
69
-
70
- const result = processFunctionCalls(validFunctionCalls);
71
-
72
- expect(result).toEqual(validFunctionCalls);
73
- });
74
-
75
- it('should throw an error for unknown function names', () => {
76
- const invalidFunctionCalls = [{ name: 'unknownFunction', args: {} }];
77
-
78
- expect(() => processFunctionCalls(invalidFunctionCalls)).toThrow('Unknown function name: unknownFunction');
79
- });
80
-
81
- it('should correctly handle explanations', () => {
82
- const consoleLogSpy = vi.spyOn(console, 'log').mockImplementation(() => {});
83
-
84
- const functionCallsWithExplanation = [
85
- { name: 'explanation', args: { text: 'This is an explanation' } },
86
- { name: functionDefs[0].name, args: {} },
87
- ];
88
-
89
- processFunctionCalls(functionCallsWithExplanation);
90
-
91
- expect(consoleLogSpy).toHaveBeenCalledWith('Explanations:', ['This is an explanation']);
92
-
93
- consoleLogSpy.mockRestore();
94
- });
95
-
96
- it('should return all function calls including explanations', () => {
97
- const functionCalls = [
98
- { name: 'explanation', args: { text: 'This is an explanation' } },
99
- { name: functionDefs[0].name, args: {} },
100
- ];
101
-
102
- const result = processFunctionCalls(functionCalls);
103
-
104
- expect(result).toEqual(functionCalls);
105
- expect(result.length).toBe(2);
106
- });
107
- });
@@ -1,50 +0,0 @@
1
- import OpenAI, { toFile } from 'openai';
2
-
3
- import { setTempBuffer } from '../files/temp-buffer.js';
4
- import { resizeImageBuffer } from '../images/resize-image.js';
5
- import { ensureAlpha } from '../images/ensure-alpha.js';
6
-
7
- /**
8
- * Generate an image using OpenAI's DALL-E model and save it to a file
9
- * @param {string} prompt - The description of the image to generate
10
- * @param {string|undefined} contextImagePath - The image to be used as a context
11
- * @param {{width: number, height: number}} size - The size of the image to generate
12
- * @param {boolean} cheap - Whether to use a cheaper model
13
- * @returns {Promise<string>} - The url of the image
14
- */
15
- export async function generateImage(prompt, contextImagePath, size, cheap = false) {
16
- const openai = new OpenAI();
17
-
18
- try {
19
- const model = contextImagePath ? 'dall-e-2' : cheap ? 'dall-e-2' : 'dall-e-3';
20
- console.log(`Using DALL-E model: ${model}`);
21
-
22
- const options = {
23
- model: model,
24
- prompt: prompt,
25
- n: 1,
26
- size: '1024x1024',
27
- response_format: 'url',
28
- };
29
- const response = contextImagePath
30
- ? await openai.images.edit({ ...options, image: await toFile(await ensureAlpha(contextImagePath)) })
31
- : await openai.images.generate(options);
32
-
33
- let imageUrl = response.data[0].url;
34
-
35
- if ((size.width !== 1024) | (size.height !== 1024)) {
36
- console.log('Resizing image to desired size', size);
37
- const imageResponse = await fetch(imageUrl);
38
- const arrayBuffer = await imageResponse.arrayBuffer();
39
- const buffer = Buffer.from(arrayBuffer);
40
-
41
- imageUrl = setTempBuffer(await resizeImageBuffer(buffer, size));
42
- }
43
-
44
- console.log(`Image generated, url: ${imageUrl}`);
45
- return imageUrl;
46
- } catch (error) {
47
- console.error('Error generating image:', error);
48
- throw error;
49
- }
50
- }
@@ -1,99 +0,0 @@
1
- import { AnthropicVertex } from '@anthropic-ai/vertex-sdk';
2
- import { printTokenUsageAndCost, processFunctionCalls } from './common.js';
3
-
4
- /**
5
- * This function generates content using the Anthropic Claude model via Vertex AI.
6
- */
7
- export async function generateContent(prompt, functionDefs, requiredFunctionName, temperature, cheap = false) {
8
- const projectId = process.env.GOOGLE_CLOUD_PROJECT;
9
- const region = process.env.GOOGLE_CLOUD_REGION;
10
-
11
- if (!projectId || !region) {
12
- throw new Error('GOOGLE_CLOUD_PROJECT and GOOGLE_CLOUD_REGION environment variables must be set');
13
- }
14
-
15
- const client = new AnthropicVertex({
16
- projectId,
17
- region,
18
- });
19
-
20
- const messages = prompt
21
- .filter((item) => item.type !== 'systemPrompt')
22
- .map((item) => {
23
- if (item.type === 'user') {
24
- return {
25
- role: 'user',
26
- content: [
27
- ...(item.functionResponses ?? []).map((response) => ({
28
- type: 'tool_result',
29
- tool_use_id: response.call_id ?? response.name,
30
- content: response.content,
31
- is_error: response.isError === true,
32
- })),
33
- ...(item.images ?? []).map((image) => ({
34
- type: 'image',
35
- source: {
36
- type: 'base64',
37
- media_type: image.mediaType,
38
- data: image.base64url,
39
- },
40
- })),
41
- { type: 'text', text: item.text },
42
- ],
43
- };
44
- } else if (item.type === 'assistant') {
45
- return {
46
- role: 'assistant',
47
- content: [
48
- ...(item.text ? [{ type: 'text', text: item.text }] : []),
49
- ...item.functionCalls.map((call) => ({
50
- type: 'tool_use',
51
- id: call.id ?? call.name,
52
- name: call.name,
53
- input: call.args ?? {},
54
- })),
55
- ],
56
- };
57
- }
58
- });
59
-
60
- const model = cheap ? 'claude-3-haiku@20240307' : 'claude-3-5-sonnet@20240620';
61
- console.log(`Using Vertex AI Claude model: ${model}`);
62
-
63
- const response = await client.messages.create({
64
- model: model,
65
- max_tokens: 4096,
66
- temperature: temperature,
67
- system: prompt.find((item) => item.type === 'systemPrompt').systemPrompt,
68
- messages,
69
- tools: functionDefs.map((fd) => ({
70
- name: fd.name,
71
- description: fd.description,
72
- input_schema: fd.parameters,
73
- })),
74
- tool_choice: requiredFunctionName ? { type: 'tool', name: requiredFunctionName } : { type: 'any' },
75
- });
76
-
77
- // Print token usage for Anthropic Vertex AI
78
- const usage = {
79
- inputTokens: response.usage.input_tokens,
80
- outputTokens: response.usage.output_tokens,
81
- totalTokens: response.usage.input_tokens + response.usage.output_tokens,
82
- };
83
- printTokenUsageAndCost(usage, 3 / 1000 / 1000, 15 / 1000 / 1000);
84
-
85
- const responseMessages = response.content.filter((item) => item.type !== 'tool_use');
86
- if (responseMessages.length > 0) {
87
- console.log('Response messages', responseMessages);
88
- }
89
-
90
- const functionCalls = response.content
91
- .filter((item) => item.type === 'tool_use')
92
- .map((item) => ({
93
- id: item.id,
94
- name: item.name,
95
- args: item.input,
96
- }));
97
-
98
- return processFunctionCalls(functionCalls);
99
- }