-
Notifications
You must be signed in to change notification settings - Fork 2
feat(ai): added base for ai integration #589
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
2b848d2
init openai
slaveeks bfbd273
Merge branch 'master' of github.com:codex-team/hawk.api.nodejs into f…
slaveeks 349094c
feat(ai): added base for ai suggestions
slaveeks c6dfb77
Merge branch 'master' of github.com:codex-team/hawk.api.nodejs into f…
slaveeks 1b1d83d
fixes
slaveeks f70a64f
Bump version up to 1.2.23
github-actions[bot] 3c3f335
rm redundant packages
slaveeks 46f2b74
fix zod
slaveeks baffb2b
fixes
slaveeks a63f88a
review changes
slaveeks 018b70a
add todo
slaveeks ee14c20
added ai service, some refactorng
slaveeks 0c245b2
improve docs
slaveeks 57dae6e
improve prompts
slaveeks ac48e5c
improve prompts
slaveeks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| declare module 'ai' { | ||
| /** | ||
| * Minimal type for generateText used in server-side integration. | ||
| */ | ||
| export function generateText(input: { | ||
| model: any; | ||
| system?: string; | ||
| prompt: string; | ||
| }): Promise<{ text: string }>; | ||
| } | ||
|
|
||
| declare module '@ai-sdk/openai' { | ||
| /** | ||
| * Minimal types for OpenAI provider. | ||
| */ | ||
| export function createOpenAI(config?: { apiKey?: string }): (model: string) => any; | ||
| export const openai: (model: string) => any; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| declare module 'zod/v4' { | ||
| export * from 'zod'; | ||
| import z from 'zod'; | ||
| export default z; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| import { EventAddons, EventData } from '@hawk.so/types'; | ||
| import { generateText } from 'ai'; | ||
| import { openai } from '@ai-sdk/openai'; | ||
| import { eventSolvingInput } from './inputs/eventSolving'; | ||
| import { ctoInstruction } from './instructions/cto'; | ||
|
|
||
| /** | ||
| * Vercel AI API | ||
| */ | ||
| class VercelAIApi { | ||
| /** | ||
| * Model ID | ||
| */ | ||
| private readonly modelId: string; | ||
|
|
||
| constructor() { | ||
| /** | ||
| * @todo make it dynamic, get from project settings | ||
| */ | ||
| this.modelId = 'gpt-4o'; | ||
| } | ||
|
|
||
| /** | ||
| * Generate AI suggestion for the event | ||
| * | ||
| * @param {EventData<EventAddons>} payload - event data | ||
| * @returns {Promise<string>} AI suggestion for the event | ||
| */ | ||
| public async generateSuggestion(payload: EventData<EventAddons>) { | ||
| const { text } = await generateText({ | ||
| model: openai(this.modelId), | ||
| system: ctoInstruction, | ||
| prompt: eventSolvingInput(payload), | ||
| }); | ||
|
|
||
| return text; | ||
| } | ||
| } | ||
|
|
||
| export const vercelAIApi = new VercelAIApi(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import { EventData, EventAddons } from '@hawk.so/types'; | ||
|
|
||
| export const eventSolvingInput = (payload: EventData<EventAddons>) => ` | ||
|
|
||
| Проанализируй ошибку и предложи решение | ||
|
|
||
| Payload: ${JSON.stringify(payload)} | ||
|
|
||
| Response: | ||
|
|
||
| { | ||
| "solution": "...", | ||
| "explanation": "..." | ||
| } | ||
| `; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| export const ctoInstruction = 'Ты технический директор ИТ компании, тебе нужно пояснить ошибку и предложить решение'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,39 @@ | |
| # yarn lockfile v1 | ||
|
|
||
|
|
||
| "@ai-sdk/[email protected]": | ||
| version "2.0.7" | ||
| resolved "https://registry.yarnpkg.com/@ai-sdk/gateway/-/gateway-2.0.7.tgz#e3b77ef01658b47a19956313fc2a36b9e5a951f3" | ||
| integrity sha512-/AI5AKi4vOK9SEb8Z1dfXkhsJ5NAfWsoJQc96B/mzn2KIrjw5occOjIwD06scuhV9xWlghCoXJT1sQD9QH/tyg== | ||
| dependencies: | ||
| "@ai-sdk/provider" "2.0.0" | ||
| "@ai-sdk/provider-utils" "3.0.16" | ||
| "@vercel/oidc" "3.0.3" | ||
|
|
||
| "@ai-sdk/openai@^2.0.64": | ||
| version "2.0.64" | ||
| resolved "https://registry.yarnpkg.com/@ai-sdk/openai/-/openai-2.0.64.tgz#d8746bd341c277b440d2ed54179bfe1b43e7853c" | ||
| integrity sha512-+1mqxn42uB32DPZ6kurSyGAmL3MgCaDpkYU7zNDWI4NLy3Zg97RxTsI1jBCGIqkEVvRZKJlIMYtb89OvMnq3AQ== | ||
| dependencies: | ||
| "@ai-sdk/provider" "2.0.0" | ||
| "@ai-sdk/provider-utils" "3.0.16" | ||
|
|
||
| "@ai-sdk/[email protected]": | ||
| version "3.0.16" | ||
| resolved "https://registry.yarnpkg.com/@ai-sdk/provider-utils/-/provider-utils-3.0.16.tgz#17b7170bf51a7a690bf0186490ce29a8ce50a961" | ||
| integrity sha512-lsWQY9aDXHitw7C1QRYIbVGmgwyT98TF3MfM8alNIXKpdJdi+W782Rzd9f1RyOfgRmZ08gJ2EYNDhWNK7RqpEA== | ||
| dependencies: | ||
| "@ai-sdk/provider" "2.0.0" | ||
| "@standard-schema/spec" "^1.0.0" | ||
| eventsource-parser "^3.0.6" | ||
|
|
||
| "@ai-sdk/[email protected]": | ||
| version "2.0.0" | ||
| resolved "https://registry.yarnpkg.com/@ai-sdk/provider/-/provider-2.0.0.tgz#b853c739d523b33675bc74b6c506b2c690bc602b" | ||
| integrity sha512-6o7Y2SeO9vFKB8lArHXehNuusnpddKPk7xqL7T2/b+OvXMRIXUO1rR4wcv1hAFUAT9avGZshty3Wlua/XA7TvA== | ||
| dependencies: | ||
| json-schema "^0.4.0" | ||
|
|
||
| "@amplitude/identify@^1.10.0": | ||
| version "1.10.0" | ||
| resolved "https://registry.yarnpkg.com/@amplitude/identify/-/identify-1.10.0.tgz#d62b8b6785c29350c368810475a6fc7b04985210" | ||
|
|
@@ -725,7 +758,7 @@ | |
| resolved "https://registry.yarnpkg.com/@n1ru4l/json-patch-plus/-/json-patch-plus-0.2.0.tgz#b8fa09fd980c3460dfdc109a7c4cc5590157aa6b" | ||
| integrity sha512-pLkJy83/rVfDTyQgDSC8GeXAHEdXNHGNJrB1b7wAyGQu0iv7tpMXntKVSqj0+XKNVQbco40SZffNfVALzIt0SQ== | ||
|
|
||
| "@opentelemetry/api@^1.4.0": | ||
| "@opentelemetry/api@1.9.0", "@opentelemetry/api@^1.4.0": | ||
| version "1.9.0" | ||
| resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz#d03eba68273dc0f7509e2a3d5cba21eae10379fe" | ||
| integrity sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg== | ||
|
|
@@ -811,6 +844,11 @@ | |
| dependencies: | ||
| "@sinonjs/commons" "^1.7.0" | ||
|
|
||
| "@standard-schema/spec@^1.0.0": | ||
| version "1.0.0" | ||
| resolved "https://registry.yarnpkg.com/@standard-schema/spec/-/spec-1.0.0.tgz#f193b73dc316c4170f2e82a881da0f550d551b9c" | ||
| integrity sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA== | ||
|
|
||
| "@tootallnate/once@1": | ||
| version "1.1.2" | ||
| resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" | ||
|
|
@@ -1149,14 +1187,6 @@ | |
| "@types/node" "*" | ||
| form-data "^4.0.0" | ||
|
|
||
| "@types/node-fetch@^2.5.4": | ||
| version "2.6.2" | ||
| resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.2.tgz#d1a9c5fd049d9415dce61571557104dec3ec81da" | ||
| integrity sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A== | ||
| dependencies: | ||
| "@types/node" "*" | ||
| form-data "^3.0.0" | ||
|
|
||
| "@types/node@*": | ||
| version "18.6.2" | ||
| resolved "https://registry.yarnpkg.com/@types/node/-/node-18.6.2.tgz#ffc5f0f099d27887c8d9067b54e55090fcd54126" | ||
|
|
@@ -1305,6 +1335,11 @@ | |
| semver "^7.3.2" | ||
| tsutils "^3.17.1" | ||
|
|
||
| "@vercel/[email protected]": | ||
| version "3.0.3" | ||
| resolved "https://registry.yarnpkg.com/@vercel/oidc/-/oidc-3.0.3.tgz#82c2b6dd4d5c3b37dcb1189718cdeb9db402d052" | ||
| integrity sha512-yNEQvPcVrK9sIe637+I0jD6leluPxzwJKx/Haw6F4H77CdDsszUn5V3o96LPziXkSNE2B83+Z3mjqGKBK/R6Gg== | ||
|
|
||
| abab@^2.0.3, abab@^2.0.5: | ||
| version "2.0.6" | ||
| resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" | ||
|
|
@@ -1363,6 +1398,16 @@ agent-base@6: | |
| dependencies: | ||
| debug "4" | ||
|
|
||
| ai@^5.0.89: | ||
| version "5.0.89" | ||
| resolved "https://registry.yarnpkg.com/ai/-/ai-5.0.89.tgz#8929fbc18f247aa9e4442836a12aa84191edf2a4" | ||
| integrity sha512-8Nq+ZojGacQrupoJEQLrTDzT5VtR3gyp5AaqFSV3tzsAXlYQ9Igb7QE3yeoEdzOk5IRfDwWL7mDCUD+oBg1hDA== | ||
| dependencies: | ||
| "@ai-sdk/gateway" "2.0.7" | ||
| "@ai-sdk/provider" "2.0.0" | ||
| "@ai-sdk/provider-utils" "3.0.16" | ||
| "@opentelemetry/api" "1.9.0" | ||
|
|
||
| ajv@^6.10.0, ajv@^6.10.2: | ||
| version "6.12.6" | ||
| resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" | ||
|
|
@@ -2928,6 +2973,11 @@ [email protected]: | |
| resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" | ||
| integrity sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw== | ||
|
|
||
| eventsource-parser@^3.0.6: | ||
| version "3.0.6" | ||
| resolved "https://registry.yarnpkg.com/eventsource-parser/-/eventsource-parser-3.0.6.tgz#292e165e34cacbc936c3c92719ef326d4aeb4e90" | ||
| integrity sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg== | ||
|
|
||
| exec-sh@^0.3.2: | ||
| version "0.3.6" | ||
| resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" | ||
|
|
@@ -4526,6 +4576,11 @@ json-schema-traverse@^0.4.1: | |
| resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" | ||
| integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== | ||
|
|
||
| json-schema@^0.4.0: | ||
| version "0.4.0" | ||
| resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" | ||
| integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== | ||
|
|
||
| json-stable-stringify-without-jsonify@^1.0.1: | ||
| version "1.0.1" | ||
| resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" | ||
|
|
@@ -7154,3 +7209,8 @@ [email protected]: | |
| version "3.1.1" | ||
| resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" | ||
| integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== | ||
|
|
||
| zod@^3.25.76: | ||
| version "3.25.76" | ||
| resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34" | ||
| integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ== | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems goofy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed