Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8aa2f1c
feat: the kb is working in create and list
giuliannocappellari Sep 26, 2025
d71e5bf
feat: editting and update working
giuliannocappellari Sep 26, 2025
0f876b3
bug: login not working
giuliannocappellari Sep 29, 2025
865b855
fix: codeeditor border and emptyblock with height (#2798)
robsongajunior Sep 25, 2025
fa44981
fix: adjust import for workload deployment and add parameter workload…
lucasmendes21 Sep 25, 2025
731d4c6
Revert "[UXE-7210] feat: remove export button for non-online/trial ac…
robsongajunior Sep 25, 2025
bf4fe4a
[NO-ISSUE] fix: login with CLI (#2784)
gdsantana Sep 26, 2025
a815606
[UXE-9033] fix: adjusted sso login and cache duration (#2809)
HerbertJulio Sep 26, 2025
a5dcb5c
[UXE-9094] fix: allow wildcard (*) as valid subdomain value in worklo…
gdsantana Sep 26, 2025
8732c55
[UXE-9094] fix: asterisks as subdomain in workloads (#2810)
gdsantana Sep 26, 2025
6cf7983
feat: kb interactions using cookies
giuliannocappellari Sep 30, 2025
4febdae
feat: upload of documents screen working but the worker is faling wit…
giuliannocappellari Oct 2, 2025
6776248
feat: the kb is working in create, documents working, but the delete …
giuliannocappellari Oct 10, 2025
7ec0354
fix: the kb is working in create and list
giulianoazion Oct 10, 2025
f42453a
[AI 157] fix: UI KB
alew3 Oct 14, 2025
da41a44
[AI 157] fix: show filename when deleting refresh screen after upload
alew3 Oct 14, 2025
3688b83
Merge branch 'dev' of https://github.com/giulianoazion/azion-console-…
alew3 Oct 20, 2025
fcdc81f
feat: ai kb screens
alew3 Oct 20, 2025
e03c224
fix: kb
alew3 Oct 29, 2025
6df51ad
Merge branch 'dev' into kb
alew3 Oct 29, 2025
686e8b6
Merge branch 'aziontech:dev' into kb
alew3 Nov 4, 2025
b0cc094
feat: enhance Knowledge Base UI and functionality
alew3 Nov 13, 2025
ff8d423
feat: enhance Knowledge Base UI and functionality.
alew3 Nov 13, 2025
dbafbc2
feat: implement knowledge base chat functionality and UI enhancements
alew3 Nov 13, 2025
8b9cbd7
Merge branch 'kb' of https://github.com/giulianoazion/azion-console-k…
alew3 Dec 15, 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
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,13 @@ src/views/Playground/PlaygroundView.vue
.edge/
.vulcan
specs.json

.claude/
.serena/
claude.md
.z.sh#Paths added by Azion CLI
.edge/
.vulcan
.open-next
src/services/v2/knowledge-base/ai-studio-api.yaml
docs/*
34 changes: 34 additions & 0 deletions azion.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,40 @@ const config = {
rewrite: `/index.html`
}
},
{
name: 'Route Knowledge Base API Requests',
description:
'Routes Knowledge Base API requests to the API origin, forwarding cookies and bypassing cache. Must be before generic /api rule.',
match: '^/api/v4/workspace/ai/kbs',
behavior: {
setOrigin: {
name: 'origin-api',
type: 'single_origin'
},
forwardCookies: true,
capture: {
match: '/api/(.*)',
captured: 'captured',
subject: 'request_uri'
},
rewrite: `/%{captured[1]}`,
bypassCache: true
}
},
{
name: 'Route Knowledge Base API Direct V4 Requests',
description:
'Routes direct Knowledge Base v4 API requests to the API origin, forwarding cookies and bypassing cache.',
match: '^/v4/workspace/ai/kbs',
behavior: {
setOrigin: {
name: 'origin-api',
type: 'single_origin'
},
forwardCookies: true,
bypassCache: true
}
},
{
name: 'Route API Default Requests to API Origin',
description: 'Routes all default API requests to the specific API origin.',
Expand Down
1 change: 0 additions & 1 deletion azion/production/args.json

This file was deleted.

217 changes: 0 additions & 217 deletions azion/production/azion.json

This file was deleted.

1 change: 0 additions & 1 deletion azion/stage/args.json

This file was deleted.

Loading
Loading