Skip to content
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

fix(chat): fix max headers size (Issue #2983) #3015

Merged
merged 26 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
753a8ec
chore(chat): add `bypass_ort`
IlyaBondar Dec 10, 2024
0612dd7
use ort_version: 42.1.0
IlyaBondar Dec 10, 2024
44872fc
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Dec 12, 2024
9e979d7
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Dec 12, 2024
9e185f6
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Dec 12, 2024
96a239a
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Dec 13, 2024
ae2825c
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Dec 15, 2024
1677ee5
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Dec 20, 2024
71cd3fa
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Dec 25, 2024
88202b9
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Dec 26, 2024
54d0f31
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Dec 27, 2024
cc97dd8
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 3, 2025
c7d7ca8
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 3, 2025
f8f705d
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 7, 2025
2730576
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 8, 2025
5be6ecf
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 21, 2025
6f6ec43
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 22, 2025
dc56e53
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 23, 2025
9e3e340
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 24, 2025
3014f61
fix(chat): fix max headers size (Issue #2852)
Derikyan Jan 24, 2025
7ae0f74
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 27, 2025
c667560
set max header size in env.development
Derikyan Jan 27, 2025
717b814
Merge branch 'development' into fix/2852-max-header-size
IlyaBondar Jan 27, 2025
7423e17
Merge branch 'development' of https://github.com/epam/ai-dial-chat in…
Derikyan Jan 27, 2025
0a33210
add comment
Derikyan Jan 27, 2025
ce70a73
Merge branch 'fix/2852-max-header-size' of https://github.com/epam/ai…
Derikyan Jan 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.24.0-rc",
"private": true,
"scripts": {
"nx": "nx",
"nx": "cross-env NODE_OPTIONS=--max-http-header-size=32768 nx",
"postinstall": "patch-package && node tools/patch-nextjs.js",
"graph": "nx graph",
"build": "nx run-many -t build",
Expand Down Expand Up @@ -126,6 +126,7 @@
"@vitest/coverage-v8": "^1.2.1",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
IlyaBondar marked this conversation as resolved.
Show resolved Hide resolved
"dotenv": "^16.3.1",
"endent": "^2.1.0",
"esbuild": "^0.19.12",
Expand Down
Loading