Pavel
83372f674c
define conversation_id and initial_user_id on BaseAgent
...
These attributes were only set by StreamProcessor after agent creation,
causing an AttributeError in _perform_mid_execution_compression when
the context limit was hit through other code paths (e.g. worker).
Declaring them as None in init lets the handler fall through to
in-memory compression gracefully.
2026-05-15 16:12:53 +03:00
Alex
e351f45d88
Feat notification system ( #2472 )
...
* feat: SSE notification system
Adds a per-user SSE pipe (GET /api/events) plus a per-message
chat-stream reconnect endpoint (GET /api/messages/<id>/events).
Backend substrate:
- application/events/ — durable journal (Redis Streams) + live
pub/sub for user-scoped events, with publish_user_event() as
the worker-side entrypoint.
- application/streaming/ — broadcast_channel for pub/sub fanout
and event_replay for the per-message snapshot+tail path.
- application/storage/db/repositories/message_events.py +
alembic 0007 — Postgres journal for chat-stream events.
- application/worker.py — ingest/reingest/remote/connector/
attachment/mcp_oauth tasks publish queued/progress/completed/
failed envelopes alongside their existing status updates.
Frontend client:
- frontend/src/events/ — connect/reconnect, Last-Event-ID cursor,
backoff with jitter. Each tab runs its own connection; no
cross-tab dedup (future work).
- frontend/src/notifications/ — recentEvents ring, cursor
tracking, tool-approval toast.
- frontend/src/upload/uploadSlice.ts — extraReducers for
source.ingest.* and attachment.* events.
Coverage: 132 SSE tests across events substrate, replay, journal,
routes, and worker publishes.
* refactor(attachments): remove polling, SSE-only
frontend/src/components/MessageInput.tsx no longer runs a 2s
setInterval against getTaskStatus for every processing
attachment. The attachment.* SSE reducers in uploadSlice.ts are
now the sole driver of attachment state transitions.
* feat(connector): consume source.ingest.* SSE, remove polling
frontend/src/components/ConnectorTree.tsx now mirrors FileTree's
slice-walking pattern: it watches notifications.recentEvents
for source.ingest.{completed,failed} envelopes matching the
sync's source id, and no longer polls /task_status every 2s.
* refactor(source-ingest): remove polling, SSE-only
frontend/src/upload/Upload.tsx and
frontend/src/components/FileTree.tsx no longer run getTaskStatus
polling fallbacks. The source.ingest.* SSE reducers in
uploadSlice.ts and FileTree's slice walk are now the sole
drivers of upload/reingest state transitions.
* refactor(mcp-oauth): carry authorization_url in SSE, remove polling
application/worker.py::mcp_oauth now publishes
authorization_url on the mcp.oauth.awaiting_redirect envelope.
frontend/src/modals/MCPServerModal.tsx consumes it from SSE
instead of polling /oauth_status/<task_id> every 1s.
The URL is generated inside DocsGPTOAuth.redirect_handler when
the FastMCP client triggers OAuth. The worker now plumbs a
publish callback through tool_config -> MCPTool -> DocsGPTOAuth
so the awaiting_redirect publish fires from inside the handler
at the exact point the URL becomes known. The legacy Redis
mcp_oauth_status setex writes and the GET
/api/mcp_server/oauth_status/<task_id> endpoint are kept as
belt-and-suspenders; nothing in the frontend reads them now.
* feat(source-ingest): plumb limited flag through SSE for token-cap UX
application/worker.py::ingest_worker and remote_worker now publish
``limited: bool`` on the source.ingest.completed envelope.
uploadSlice routes ``payload.limited === true`` to a failed status
with a ``tokenLimitReached`` flag, and UploadToast surfaces the
translated tokenLimit i18n string. No worker code path sets
limited=true today; this is a forward-looking contract so when
token-cap detection lands, the UX is already wired.
* refactor(mcp-oauth): read status from SSE journal, drop polling endpoint
MCPOAuthManager.get_oauth_status now walks the per-user SSE Streams
journal (user:{user_id}:stream) for the latest mcp.oauth.* envelope
matching the task id, returning the status string derived from the
event type suffix and the payload fields. The worker is the single
source of truth — its publish_user_event calls write the same
record the SSE client receives live.
Removed:
- /api/mcp_server/oauth_status/<task_id> route in
application/api/user/tools/mcp.py
- mcp_oauth_status worker function and mcp_oauth_status_task Celery
wrapper
- All mcp_oauth_status:{task_id} Redis setex writes (4 in mcp_oauth,
2 in DocsGPTOAuth.redirect_handler / callback_handler)
- The update_status closure in mcp_oauth that wrote the polling
payload
Tests updated:
- get_oauth_status now takes (task_id, user_id); new coverage walks
a fake xrevrange response for the completed envelope, the no-match
case, and a Redis-down case
- Removed TestMCPOAuthStatus route tests and TestMcpOauthStatusTask
celery-wrapper test
- Removed the two oauth_status methods from the integration runner
mcp_oauth:auth_url/state/code/error Redis keys remain — they are
the OAuth flow's own state (not the dropped polling payload).
* chore(mcp-oauth): delete orphaned getMCPOAuthStatus client
The /api/mcp_server/oauth_status/<task_id> endpoint was removed in
the prior commit; the corresponding userService method and the
MCP_OAUTH_STATUS endpoint constant had no remaining callers in the
frontend, so they're deleted along with it.
* fix(events): drop live publish when journal write fails
application/events/publisher.py returned an envelope to live
pubsub subscribers even when the XADD to the durable journal
failed. The envelope had no ``id`` field, which bypassed the SSE
route's dedup floor and broke ``Last-Event-ID`` semantics for any
reconnecting client.
Best-effort delivery means dropping consistently, not delivering
inconsistent state. Now: if the journal write fails the publisher
returns None and skips the live publish entirely.
* fix(notifications): dedupe sseEventReceived against immediate dupes
Snapshot replay + live tail can both deliver the same id when the
live pubsub frame and the replay XRANGE overlap. The route's own
dedup floor catches the common case, but consumers walking
``recentEvents`` (FileTree, ConnectorTree, MCPServerModal,
ToolApprovalToast) would otherwise act on the same envelope
twice when a duplicate slipped through.
Belt-and-suspenders: short-circuit when the most recent id in
the ring matches the incoming one.
* fix(events): skip replay budget INCR when no snapshot work possible
_allow_replay incremented the per-user counter on every
/api/events GET, including no-op connects from a fresh client
with no cursor against an empty backlog. React StrictMode dev
double-mounts plus a few tabs trivially tripped the default
30-per-60s budget on idle reconnects.
XLEN pre-check: when last_event_id is None and the user stream
is empty, the connect can't do snapshot work — return True
without INCR. Cursor-bearing connects still INCR unconditionally
(probing the cursor's relationship to stream contents would
require a redundant XRANGE).
* fix(streaming): tighten journal contract + recover from seq collisions
Two related fixes to application/streaming/message_journal.py.
1. record_event now rejects non-dict payloads at the gate. The
live path (base.py::_emit) wrapped non-dicts as
{"value": payload}; the replay path in event_replay synthesized
{"type": event_type}. A reconnecting client would receive a
different envelope than the one originally streamed. Now both
paths see byte-identical envelopes because non-dicts can't be
journaled at all. The corresponding event_replay fallback is
replaced with a warn-and-skip for any legacy rows.
2. record_event handles IntegrityError on (message_id, sequence_no)
collisions by reading latest_sequence_no and retrying once with
latest+1. The most likely cause is a stale seq seed on a
continuation retry where the route read MAX(seq) from a
separate connection before another writer committed past it.
Previously the error was swallowed and the event silently
dropped from the journal; now it lands at the next available
seq. The live pubsub publish uses the materialised seq so the
journal row and the live frame agree.
* perf(streaming): batch message_events INSERTs per stream
complete_stream previously opened a fresh db_session() per yielded
event, doing one Postgres INSERT + commit per chunk on the WSGI
thread. Streaming answers emit ~100s of answer chunks per response,
so the route was paying ~100 PG roundtrips per stream serialized on
commit latency.
New BatchedJournalWriter in application/streaming/message_journal.py
accumulates rows per stream and flushes on three triggers:
- size: buffer reaches 16 entries
- time: 100ms elapsed since the last flush
- lifecycle: close() at end-of-stream
Live pubsub publishes still fire synchronously per record(), so
subscribers see events in real time — only the durable journal write
is amortized. On bulk INSERT IntegrityError the writer falls back to
per-row record() with the existing seq+1 retry so a single colliding
seq doesn't drop the rest of the batch.
complete_stream wires journal_writer.close() into every exit path
(happy end, tool-approval-paused end, GeneratorExit, error handler)
so the terminal event is committed before the generator returns —
otherwise a reconnecting client could snapshot up to the last flush
boundary and live-tail waiting for an end that's still in memory.
Repository gets bulk_record() — one SQLAlchemy executemany INSERT
for the bulk path. All-or-nothing on collision (Postgres aborts the
whole batch); the writer's per-row fallback handles recovery.
* chore(upload): drop dead UploadTask.lastEventAt field
The lastEventAt field on UploadTask had no remaining consumers — the
matching Attachment.lastEventAt was cleaned up earlier. Remove the
field declaration and the slice write site.
* chore(frontend): drop orphaned getTaskStatus client
After the polling-removal sweep no caller in frontend/src/ references
userService.getTaskStatus or endpoints.USER.TASK_STATUS. The backend
route /api/task_status itself stays — agents, webhooks, e2e specs,
and the public docs still depend on it.
* docs(repo): remove stale planning docs from repo root
notification-channel-design.md, plan.md, and reminder-tool-design.md
were leftover Claude planning artifacts from the SSE substrate work
that landed accidentally. CLAUDE.md prohibits creating planning docs
unless asked — delete them.
* docs(message-events): clarify repo vs wrapper payload contract
MessageEventsRepository.record accepts any JSONB-compatible value; the
streaming wrapper record_event tightens this to dicts only because the
live and replay paths reconstruct non-dict payloads differently. Spell
the split out so the next reader of the repo method doesn't assume the
wrapper's contract applies here.
* refactor(events): raise on malformed stream id instead of lex fallback
stream_id_compare's lex-fallback branch was a footgun: a malformed id
that sorts lex-greater than a real one would pin live-tail dedup
forever, dropping every subsequent legitimate event silently. Both
current callers in application/api/events/routes.py pre-validate
inputs against _STREAM_ID_RE before calling, so changing the function
to raise ValueError is a no-op on the happy path and turns the future-
caller footgun into a loud failure.
* test(tasks): cover cleanup_message_events task body
Adds skipped-when-no-POSTGRES_URI and happy-path coverage for the
Celery janitor. The skipped path returns the documented short-circuit
shape without touching the repo. The happy path seeds a backdated
row, runs the task against the pg_conn fixture, and asserts the
retention window's row is deleted while in-window rows survive.
Mirrors the TestCleanupPendingToolState pattern.
* fix(notifications): treat /c/new as no current conversation
useMatch('/c/:conversationId') treats the literal URL /c/new as a
real conversation id, so the toast suppression check confused
'user is on /c/new' with 'user is on the conversation needing
approval'. Explicit guard: when the matched id is 'new', fall
through to the no-match case so approval toasts still surface.
* docs(events): enumerate publish_user_event None-return paths
The function returns Optional[str] today, with None conflating five
distinct outcomes (missing args / push disabled / unserialisable /
Redis down / XADD failed). Every current call site is fire-and-
forget and ignores the return, so the right move is to document the
five cases rather than promote to an enum return — keeps the API
small while making the diagnostic surface (logs) obvious. If a
future caller needs to react differently per reason, promote then.
* refactor(sources): move source-id derivation out of worker module
application/api/user/sources/upload.py imported _derive_source_id
from application.worker — pulling the entire Celery worker module
into the API process at import time just for a two-line helper.
Move DOCSGPT_INGEST_NAMESPACE and the derivation function to a
new application/storage/db/source_ids.py module that both layers
can import without that dependency edge. worker.py re-exports the
old names (_derive_source_id, DOCSGPT_INGEST_NAMESPACE) for
backward-compatible imports from tests and any other in-tree
callers; new code should import from the new module directly.
* fix(cache): enable Redis health_check_interval to surface half-open TCP
Without health_check_interval, a half-open TCP socket (NAT silently
dropped state, ELB idle-close) can leave pubsub.get_message hanging
past the SSE generator's keepalive cadence — the kernel never
surfaces the dead socket because no payload is in flight. Setting
health_check_interval=10 makes redis-py ping every 10s when
otherwise idle, so the next get_message after the dead window
raises and the SSE loop falls into its reconnect path instead of
silently freezing on the user.
* chore(events): rename attachment.processing.progress to attachment.progress
The event-type taxonomy was inconsistent: source ingest emits
source.ingest.progress (three segments) while attachments emitted
attachment.processing.progress (four segments). Drops the
.processing. infix for parity. Worker publish sites, the slice
reducer's match, and the worker tests all flip together.
No external consumers — the event type is purely internal between
the publisher and the in-tab slice; safe to rename in one commit.
* feat: events cleanup
* fix: better docs
* fix: e2e tests
2026-05-15 12:23:31 +01:00
Manish Madan
4d6f360e3a
Throttle + debounce ( #2458 )
...
* (feat:apiClient) replace direct fetch in fe
* (feat)fe: throttle api client
* (feat)fe: debounce hooks
2026-05-11 23:05:16 +01:00
Mustafa Sayyed
e245057822
fix: update message and rename conversation triggers ( #2439 )
...
* fix: update message and rename conversation triggers
* fix trim comparison
* fix ts error
* (chore)fe: linter
---------
Co-authored-by: ManishMadan2882 <manishmadan321@gmail.com >
2026-05-11 11:08:19 +01:00
Alex
e692c645b9
fix: pgvec
2026-05-05 01:55:23 +01:00
Alex
b4c4ab68f0
feat: durability and idempotency keys ( #2450 )
...
* feat: durability and idempotency keys
* feat: more durable frontend
* fix: tests
* fix: mini issues
* fix: better json validation
* fix: tests
2026-05-04 23:25:41 +01:00
Manish Madan
d23679dd93
Merge pull request #2437 from arc53/dependabot/npm_and_yarn/frontend/react-router-dom-7.14.2
...
chore(deps): bump react-router-dom from 7.14.1 to 7.14.2 in /frontend
2026-04-29 09:33:36 +05:30
dependabot[bot]
1b2239e54b
chore(deps): bump react-router-dom from 7.14.1 to 7.14.2 in /frontend
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 7.14.1 to 7.14.2.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.14.2/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-version: 7.14.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-29 04:02:16 +00:00
Manish Madan
5ceb99f946
Merge pull request #2436 from arc53/dependabot/npm_and_yarn/frontend/vite-8.0.10
...
chore(deps-dev): bump vite from 8.0.8 to 8.0.10 in /frontend
2026-04-29 09:30:44 +05:30
dependabot[bot]
892908cef5
chore(deps-dev): bump vite from 8.0.8 to 8.0.10 in /frontend
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 8.0.8 to 8.0.10.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v8.0.10/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 8.0.10
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-29 03:58:13 +00:00
Manish Madan
99ffe439c7
Merge pull request #2438 from arc53/dependabot/npm_and_yarn/frontend/typescript-eslint/eslint-plugin-8.59.1
...
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.58.2 to 8.59.1 in /frontend
2026-04-29 09:26:52 +05:30
dependabot[bot]
ed87972ca6
chore(deps-dev): bump @typescript-eslint/eslint-plugin in /frontend
...
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ) from 8.58.2 to 8.59.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.1/packages/eslint-plugin )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.59.1
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-29 03:52:58 +00:00
Manish Madan
6ad9022dd3
Merge pull request #2408 from arc53/dependabot/npm_and_yarn/frontend/typescript-6.0.3
...
chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 in /frontend
2026-04-29 09:05:55 +05:30
ManishMadan2882
9b8fe2d5d0
fix(frontend): migrate tsconfig off TS 6.0 deprecated options
...
- esModuleInterop: false -> true (modern default)
- moduleResolution: Node -> Bundler (recommended for Vite)
- remove baseUrl; paths resolves relative to tsconfig
2026-04-29 08:57:32 +05:30
ManishMadan2882
d1dc8de27c
fix(frontend): silence TS 6.0 deprecation errors in tsconfig
2026-04-29 08:55:14 +05:30
Manish Madan
a29fa44b51
Merge pull request #2426 from arc53/dependabot/npm_and_yarn/docs/npm_and_yarn-707cc257f8
...
chore(deps): bump @xmldom/xmldom from 0.9.9 to 0.9.10 in /docs in the npm_and_yarn group across 1 directory
2026-04-28 19:50:12 +05:30
dependabot[bot]
026371d024
chore(deps): bump @xmldom/xmldom
...
Bumps the npm_and_yarn group with 1 update in the /docs directory: [@xmldom/xmldom](https://github.com/xmldom/xmldom ).
Updates `@xmldom/xmldom` from 0.9.9 to 0.9.10
- [Release notes](https://github.com/xmldom/xmldom/releases )
- [Changelog](https://github.com/xmldom/xmldom/blob/master/CHANGELOG.md )
- [Commits](https://github.com/xmldom/xmldom/compare/0.9.9...0.9.10 )
---
updated-dependencies:
- dependency-name: "@xmldom/xmldom"
dependency-version: 0.9.10
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 14:17:21 +00:00
Manish Madan
b0df2a479b
Merge pull request #2434 from arc53/dependabot/npm_and_yarn/extensions/react-widget/typescript-eslint/eslint-plugin-8.59.1
...
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.59.0 to 8.59.1 in /extensions/react-widget
2026-04-28 19:44:18 +05:30
dependabot[bot]
5eae83af1b
chore(deps-dev): bump @typescript-eslint/eslint-plugin
...
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ) from 8.59.0 to 8.59.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.1/packages/eslint-plugin )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.59.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 14:11:59 +00:00
Manish Madan
9c875c83c2
Merge pull request #2431 from arc53/dependabot/npm_and_yarn/extensions/react-widget/babel/preset-react-7.28.5
...
chore(deps-dev): bump @babel/preset-react from 7.24.6 to 7.28.5 in /extensions/react-widget
2026-04-28 19:38:57 +05:30
dependabot[bot]
e6e671faf1
chore(deps-dev): bump @babel/preset-react in /extensions/react-widget
...
Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react ) from 7.24.6 to 7.28.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-preset-react )
---
updated-dependencies:
- dependency-name: "@babel/preset-react"
dependency-version: 7.28.5
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 14:03:26 +00:00
Manish Madan
a31ec97bd7
Merge pull request #2435 from arc53/dependabot/npm_and_yarn/frontend/npm_and_yarn-5f44a83626
...
chore(deps-dev): bump postcss from 8.5.8 to 8.5.12 in /frontend in the npm_and_yarn group across 1 directory
2026-04-28 19:30:19 +05:30
dependabot[bot]
ebe752d103
chore(deps-dev): bump postcss
...
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [postcss](https://github.com/postcss/postcss ).
Updates `postcss` from 8.5.8 to 8.5.12
- [Release notes](https://github.com/postcss/postcss/releases )
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/postcss/compare/8.5.8...8.5.12 )
---
updated-dependencies:
- dependency-name: postcss
dependency-version: 8.5.12
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 13:53:25 +00:00
Manish Madan
8c30c1c880
Merge pull request #2430 from arc53/dependabot/npm_and_yarn/extensions/react-widget/flow-bin-0.311.0
...
chore(deps): bump flow-bin from 0.309.0 to 0.311.0 in /extensions/react-widget
2026-04-28 19:20:48 +05:30
dependabot[bot]
4a598e062c
chore(deps): bump flow-bin in /extensions/react-widget
...
Bumps [flow-bin](https://github.com/flowtype/flow-bin ) from 0.309.0 to 0.311.0.
- [Release notes](https://github.com/flowtype/flow-bin/releases )
- [Commits](https://github.com/flowtype/flow-bin/commits )
---
updated-dependencies:
- dependency-name: flow-bin
dependency-version: 0.311.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 13:49:15 +00:00
Manish Madan
e285b47170
Merge pull request #2429 from arc53/dependabot/npm_and_yarn/extensions/react-widget/styled-components-6.4.1
...
chore(deps): bump styled-components from 6.4.0 to 6.4.1 in /extensions/react-widget
2026-04-28 19:13:52 +05:30
dependabot[bot]
2d884a3df1
chore(deps): bump styled-components in /extensions/react-widget
...
Bumps [styled-components](https://github.com/styled-components/styled-components ) from 6.4.0 to 6.4.1.
- [Release notes](https://github.com/styled-components/styled-components/releases )
- [Commits](https://github.com/styled-components/styled-components/compare/styled-components@6.4.0...styled-components@6.4.1 )
---
updated-dependencies:
- dependency-name: styled-components
dependency-version: 6.4.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 13:42:42 +00:00
Manish Madan
b9920731e0
Merge pull request #2428 from arc53/dependabot/npm_and_yarn/extensions/react-widget/globals-17.5.0
...
chore(deps-dev): bump globals from 15.15.0 to 17.5.0 in /extensions/react-widget
2026-04-28 18:37:13 +05:30
Manish Madan
f5f4c07e59
Merge pull request #2417 from arc53/dependabot/npm_and_yarn/frontend/react-dropzone-15.0.0
...
chore(deps): bump react-dropzone from 14.3.8 to 15.0.0 in /frontend
2026-04-28 17:12:19 +05:30
dependabot[bot]
e87dc42ad0
chore(deps): bump react-dropzone from 14.3.8 to 15.0.0 in /frontend
...
Bumps [react-dropzone](https://github.com/react-dropzone/react-dropzone ) from 14.3.8 to 15.0.0.
- [Release notes](https://github.com/react-dropzone/react-dropzone/releases )
- [Commits](https://github.com/react-dropzone/react-dropzone/compare/v14.3.8...v15.0.0 )
---
updated-dependencies:
- dependency-name: react-dropzone
dependency-version: 15.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 11:27:14 +00:00
Manish Madan
40a30054bc
Merge pull request #2412 from arc53/dependabot/npm_and_yarn/frontend/npm_and_yarn-7d3393088f
...
chore(deps): bump lodash-es from 4.17.23 to 4.18.1 in /frontend in the npm_and_yarn group across 1 directory
2026-04-28 16:54:41 +05:30
dependabot[bot]
707e782ac8
chore(deps): bump lodash-es
...
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [lodash-es](https://github.com/lodash/lodash ).
Updates `lodash-es` from 4.17.23 to 4.18.1
- [Release notes](https://github.com/lodash/lodash/releases )
- [Commits](https://github.com/lodash/lodash/compare/4.17.23...4.18.1 )
---
updated-dependencies:
- dependency-name: lodash-es
dependency-version: 4.18.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 10:19:29 +00:00
dependabot[bot]
2bc0b6946b
chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 in /frontend
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.9.3 to 6.0.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 6.0.3
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 10:19:22 +00:00
Manish Madan
fbd686b725
Merge pull request #2415 from arc53/dependabot/npm_and_yarn/frontend/react-i18next-17.0.4
...
chore(deps): bump react-i18next from 17.0.2 to 17.0.6 in /frontend
2026-04-28 15:47:59 +05:30
dependabot[bot]
29320eb9fd
chore(deps): bump react-i18next from 17.0.2 to 17.0.6 in /frontend
...
Bumps [react-i18next](https://github.com/i18next/react-i18next ) from 17.0.2 to 17.0.6.
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/react-i18next/compare/v17.0.2...v17.0.6 )
---
updated-dependencies:
- dependency-name: react-i18next
dependency-version: 17.0.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-28 09:54:11 +00:00
Alex
0d2a8e11f4
feat: better token serialiser
2026-04-28 02:36:40 +01:00
Alex
f0c39dec23
feat: more logs on stream finish
2026-04-28 02:27:02 +01:00
Alex
552bfe016a
fix: better token counting and fixes cache
2026-04-28 01:47:53 +01:00
Alex
a6a5db631b
chore: updated roadmap
2026-04-28 01:03:52 +01:00
Alex
8e9f661efc
fix: attachments
2026-04-28 00:38:27 +01:00
Alex
82c71be819
feat: better logging
2026-04-28 00:14:43 +01:00
Alex
318de18d43
feat: BYOM ( #2433 )
2026-04-27 22:09:33 +01:00
Alex
af618de13d
Feat models ( #2432 )
...
* feat: simplified model structure
* fix: test
* fix: mini docstring stuff
2026-04-26 00:58:29 +01:00
Alex
ef976eeb06
feat: make version check periodic
2026-04-25 14:57:37 +01:00
Alex
9c8ae9d540
feat: redbeat
2026-04-25 14:38:24 +01:00
Alex
7ca33b2b72
feat: OTEL
2026-04-25 13:38:03 +01:00
dependabot[bot]
fb24f9cf5e
chore(deps-dev): bump globals in /extensions/react-widget
...
Bumps [globals](https://github.com/sindresorhus/globals ) from 15.15.0 to 17.5.0.
- [Release notes](https://github.com/sindresorhus/globals/releases )
- [Commits](https://github.com/sindresorhus/globals/compare/v15.15.0...v17.5.0 )
---
updated-dependencies:
- dependency-name: globals
dependency-version: 17.5.0
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-24 20:53:35 +00:00
Manish Madan
d1b9798f62
Merge pull request #2422 from arc53/dependabot/npm_and_yarn/extensions/react-widget/babel/plugin-transform-flow-strip-types-7.27.1
...
chore(deps): bump @babel/plugin-transform-flow-strip-types from 7.24.6 to 7.27.1 in /extensions/react-widget
2026-04-24 05:13:00 +05:30
dependabot[bot]
ddc3adf3ab
chore(deps): bump @babel/plugin-transform-flow-strip-types
...
Bumps [@babel/plugin-transform-flow-strip-types](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-flow-strip-types ) from 7.24.6 to 7.27.1.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.27.1/packages/babel-plugin-transform-flow-strip-types )
---
updated-dependencies:
- dependency-name: "@babel/plugin-transform-flow-strip-types"
dependency-version: 7.27.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-23 23:41:46 +00:00
Manish Madan
a4991d01ac
Merge pull request #2421 from arc53/dependabot/npm_and_yarn/extensions/react-widget/typescript-6.0.3
...
chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 in /extensions/react-widget
2026-04-24 05:09:58 +05:30
ManishMadan2882
87fd1bd359
chore(deps-dev): bump @typescript-eslint/{eslint-plugin,parser} to ^8.58.0 for TS 6 support
2026-04-24 05:08:17 +05:30
dependabot[bot]
c71e986d34
chore(deps-dev): bump typescript in /extensions/react-widget
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.9.3 to 6.0.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 6.0.3
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-23 23:18:29 +00:00
Manish Madan
a2a06c569e
Merge pull request #2419 from arc53/dependabot/npm_and_yarn/extensions/react-widget/prettier-3.8.3
...
chore(deps-dev): bump prettier from 3.8.1 to 3.8.3 in /extensions/react-widget
2026-04-24 04:34:37 +05:30
Alex
c5f00a1d1b
fix: remove old extension in external repo's
2026-04-23 23:27:38 +01:00
Alex
2a15bb0102
chore: delete old extensions
2026-04-23 22:55:03 +01:00
Alex
c06888bc86
feat: asgi and search service ( #2424 )
...
* feat: asgi and search service
* feat: asgi and mcp tool server
* fix: asgi issues
* fix: mini cors hardening
2026-04-23 12:21:39 +01:00
Alex
d4b1c1fd81
chore: 0.17.0 version
2026-04-21 16:16:11 +01:00
Alex
2de84acf81
fix: mini callout
2026-04-21 16:14:08 +01:00
Alex
2702750861
docs: upgrading guide
2026-04-21 15:04:17 +01:00
Alex
2b5f20d0ec
fix: safer version
2026-04-21 14:22:32 +01:00
Alex
619b41dc5b
fix: better version fetch
2026-04-21 14:07:26 +01:00
Alex
76d8f49ccb
feat: security version check
2026-04-21 09:16:52 +01:00
dependabot[bot]
65460b0c03
chore(deps-dev): bump prettier in /extensions/react-widget
...
Bumps [prettier](https://github.com/prettier/prettier ) from 3.8.1 to 3.8.3.
- [Release notes](https://github.com/prettier/prettier/releases )
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/prettier/compare/3.8.1...3.8.3 )
---
updated-dependencies:
- dependency-name: prettier
dependency-version: 3.8.3
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-20 22:35:52 +00:00
Manish Madan
9fe96fb50f
Merge pull request #2397 from arc53/dependabot/npm_and_yarn/extensions/react-widget/multi-0193e73c84
...
chore(deps): bump react and @types/react in /extensions/react-widget
2026-04-21 01:35:29 +05:30
Alex
08822c3379
feat: lazy pymongo
2026-04-20 15:58:02 +01:00
ManishMadan2882
68ca8ff9ea
(chore) update react-dom
2026-04-20 19:30:14 +05:30
dependabot[bot]
81be3cdccc
chore(deps): bump react and @types/react in /extensions/react-widget
...
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react ) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ). These dependencies needed to be updated together.
Updates `react` from 18.3.1 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react )
Updates `@types/react` from 18.3.3 to 19.2.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: react
dependency-version: 19.2.5
dependency-type: direct:production
update-type: version-update:semver-major
- dependency-name: "@types/react"
dependency-version: 19.2.14
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-20 13:20:46 +00:00
Manish Madan
3ceabed8ad
Merge pull request #2406 from arc53/dependabot/npm_and_yarn/extensions/react-widget/npm_and_yarn-2a73d1bbcf
...
chore(deps): bump dompurify from 3.3.3 to 3.4.0 in /extensions/react-widget in the npm_and_yarn group across 1 directory
2026-04-20 14:45:32 +05:30
dependabot[bot]
422a4b139e
chore(deps): bump dompurify
...
Bumps the npm_and_yarn group with 1 update in the /extensions/react-widget directory: [dompurify](https://github.com/cure53/DOMPurify ).
Updates `dompurify` from 3.3.3 to 3.4.0
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/3.3.3...3.4.0 )
---
updated-dependencies:
- dependency-name: dompurify
dependency-version: 3.4.0
dependency-type: direct:production
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-20 08:58:53 +00:00
Manish Madan
e85935eed0
Merge pull request #2402 from arc53/dependabot/npm_and_yarn/extensions/react-widget/flow-bin-0.309.0
...
chore(deps): bump flow-bin from 0.306.0 to 0.309.0 in /extensions/react-widget
2026-04-20 14:27:30 +05:30
dependabot[bot]
6a69b8aca0
chore(deps): bump flow-bin in /extensions/react-widget
...
Bumps [flow-bin](https://github.com/flowtype/flow-bin ) from 0.306.0 to 0.309.0.
- [Release notes](https://github.com/flowtype/flow-bin/releases )
- [Commits](https://github.com/flowtype/flow-bin/commits )
---
updated-dependencies:
- dependency-name: flow-bin
dependency-version: 0.309.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-20 08:55:07 +00:00
Manish Madan
33c2cc9660
Merge pull request #2400 from arc53/dependabot/npm_and_yarn/extensions/react-widget/styled-components-6.4.0
...
chore(deps): bump styled-components from 6.3.12 to 6.4.0 in /extensions/react-widget
2026-04-20 13:30:30 +05:30
dependabot[bot]
175d4d5a68
chore(deps): bump styled-components in /extensions/react-widget
...
Bumps [styled-components](https://github.com/styled-components/styled-components ) from 6.3.12 to 6.4.0.
- [Release notes](https://github.com/styled-components/styled-components/releases )
- [Commits](https://github.com/styled-components/styled-components/compare/styled-components@6.3.12...styled-components@6.4.0 )
---
updated-dependencies:
- dependency-name: styled-components
dependency-version: 6.4.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-20 07:59:02 +00:00
Manish Madan
6c3ead1071
Merge pull request #2413 from arc53/dependabot/npm_and_yarn/docs/npm_and_yarn-a087653e68
...
chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates
2026-04-20 00:53:14 +05:30
dependabot[bot]
d23f88f825
chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates
...
Bumps the npm_and_yarn group with 2 updates in the /docs directory: [@xmldom/xmldom](https://github.com/xmldom/xmldom ) and [lodash-es](https://github.com/lodash/lodash ).
Updates `@xmldom/xmldom` from 0.9.8 to 0.9.9
- [Release notes](https://github.com/xmldom/xmldom/releases )
- [Changelog](https://github.com/xmldom/xmldom/blob/master/CHANGELOG.md )
- [Commits](https://github.com/xmldom/xmldom/compare/0.9.8...0.9.9 )
Updates `lodash-es` from 4.17.23 to 4.18.1
- [Release notes](https://github.com/lodash/lodash/releases )
- [Commits](https://github.com/lodash/lodash/compare/4.17.23...4.18.1 )
---
updated-dependencies:
- dependency-name: "@xmldom/xmldom"
dependency-version: 0.9.9
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: lodash-es
dependency-version: 4.18.1
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-19 17:55:14 +00:00
Manish Madan
da1df515f7
Merge pull request #2411 from arc53/dependabot/npm_and_yarn/docs/npm_and_yarn-bfabbafa3d
...
chore(deps): bump the npm_and_yarn group across 3 directories with 10 updates
2026-04-19 23:23:34 +05:30
dependabot[bot]
671a9d75ad
chore(deps): bump the npm_and_yarn group across 3 directories with 10 updates
...
Bumps the npm_and_yarn group with 6 updates in the /docs directory:
| Package | From | To |
| --- | --- | --- |
| [next](https://github.com/vercel/next.js ) | `15.5.9` | `15.5.15` |
| [brace-expansion](https://github.com/juliangruber/brace-expansion ) | `5.0.2` | `5.0.5` |
| [dompurify](https://github.com/cure53/DOMPurify ) | `3.3.1` | `3.4.0` |
| [markdown-it](https://github.com/markdown-it/markdown-it ) | `14.1.0` | `14.1.1` |
| [minimatch](https://github.com/isaacs/minimatch ) | `10.2.1` | `10.2.5` |
| [yaml](https://github.com/eemeli/yaml ) | `1.10.2` | `1.10.3` |
Bumps the npm_and_yarn group with 2 updates in the /extensions/chrome directory: [yaml](https://github.com/eemeli/yaml ) and [picomatch](https://github.com/micromatch/picomatch ).
Bumps the npm_and_yarn group with 4 updates in the /extensions/web-widget directory: [brace-expansion](https://github.com/juliangruber/brace-expansion ), [minimatch](https://github.com/isaacs/minimatch ), [yaml](https://github.com/eemeli/yaml ) and [picomatch](https://github.com/micromatch/picomatch ).
Updates `next` from 15.5.9 to 15.5.15
- [Release notes](https://github.com/vercel/next.js/releases )
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js )
- [Commits](https://github.com/vercel/next.js/compare/v15.5.9...v15.5.15 )
Updates `brace-expansion` from 5.0.2 to 5.0.5
- [Release notes](https://github.com/juliangruber/brace-expansion/releases )
- [Commits](https://github.com/juliangruber/brace-expansion/compare/v5.0.2...v5.0.5 )
Updates `dompurify` from 3.3.1 to 3.4.0
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/3.3.1...3.4.0 )
Updates `markdown-it` from 14.1.0 to 14.1.1
- [Changelog](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md )
- [Commits](https://github.com/markdown-it/markdown-it/compare/14.1.0...14.1.1 )
Updates `minimatch` from 10.2.1 to 10.2.5
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md )
- [Commits](https://github.com/isaacs/minimatch/compare/v10.2.1...v10.2.5 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `diff` from 5.2.0 to 5.2.2
- [Changelog](https://github.com/kpdecker/jsdiff/blob/master/release-notes.md )
- [Commits](https://github.com/kpdecker/jsdiff/compare/v5.2.0...v5.2.2 )
Updates `glob` from 10.3.12 to 10.5.0
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md )
- [Commits](https://github.com/isaacs/node-glob/compare/v10.3.12...v10.5.0 )
Updates `tar` from 6.2.1 to 7.5.11
- [Release notes](https://github.com/isaacs/node-tar/releases )
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md )
- [Commits](https://github.com/isaacs/node-tar/compare/v6.2.1...v7.5.11 )
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `brace-expansion` from 2.0.1 to 2.0.2
- [Release notes](https://github.com/juliangruber/brace-expansion/releases )
- [Commits](https://github.com/juliangruber/brace-expansion/compare/v5.0.2...v5.0.5 )
Updates `glob` from 10.3.12 to 10.5.0
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md )
- [Commits](https://github.com/isaacs/node-glob/compare/v10.3.12...v10.5.0 )
Updates `minimatch` from 9.0.4 to 9.0.9
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md )
- [Commits](https://github.com/isaacs/minimatch/compare/v10.2.1...v10.2.5 )
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `brace-expansion` from 1.1.11 to 1.1.14
- [Release notes](https://github.com/juliangruber/brace-expansion/releases )
- [Commits](https://github.com/juliangruber/brace-expansion/compare/v5.0.2...v5.0.5 )
Updates `minimatch` from 3.1.2 to 3.1.5
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md )
- [Commits](https://github.com/isaacs/minimatch/compare/v10.2.1...v10.2.5 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
Updates `brace-expansion` from 1.1.11 to 1.1.14
- [Release notes](https://github.com/juliangruber/brace-expansion/releases )
- [Commits](https://github.com/juliangruber/brace-expansion/compare/v5.0.2...v5.0.5 )
Updates `minimatch` from 3.1.2 to 3.1.5
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md )
- [Commits](https://github.com/isaacs/minimatch/compare/v10.2.1...v10.2.5 )
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2 )
Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v1.10.2...v1.10.3 )
---
updated-dependencies:
- dependency-name: next
dependency-version: 15.5.15
dependency-type: direct:production
dependency-group: npm_and_yarn
- dependency-name: brace-expansion
dependency-version: 5.0.5
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: dompurify
dependency-version: 3.4.0
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: markdown-it
dependency-version: 14.1.1
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: minimatch
dependency-version: 10.2.5
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: diff
dependency-version: 5.2.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: glob
dependency-version: 10.5.0
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: tar
dependency-version: 7.5.11
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: brace-expansion
dependency-version: 2.0.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: glob
dependency-version: 10.5.0
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: minimatch
dependency-version: 9.0.9
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: brace-expansion
dependency-version: 1.1.14
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: minimatch
dependency-version: 3.1.5
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: brace-expansion
dependency-version: 1.1.14
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: minimatch
dependency-version: 3.1.5
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 2.3.2
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: yaml
dependency-version: 1.10.3
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-19 17:47:08 +00:00
Manish Madan
1c829667ff
Merge pull request #2326 from arc53/dependabot/npm_and_yarn/extensions/react-widget/class-variance-authority-0.7.1
...
chore(deps): bump class-variance-authority from 0.7.0 to 0.7.1 in /extensions/react-widget
2026-04-19 23:13:02 +05:30
Manish Madan
3ab0ebb16d
Merge pull request #2398 from arc53/dependabot/pip/application/openai-2.31.0
...
chore(deps): bump openai from 2.30.0 to 2.31.0 in /application
2026-04-19 23:10:36 +05:30
dependabot[bot]
988c4a5a15
chore(deps): bump openai from 2.30.0 to 2.31.0 in /application
...
Bumps [openai](https://github.com/openai/openai-python ) from 2.30.0 to 2.31.0.
- [Release notes](https://github.com/openai/openai-python/releases )
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md )
- [Commits](https://github.com/openai/openai-python/compare/v2.30.0...v2.31.0 )
---
updated-dependencies:
- dependency-name: openai
dependency-version: 2.31.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-19 17:14:43 +00:00
Manish Madan
01db8b2c41
Merge pull request #2395 from arc53/dependabot/pip/application/google-genai-1.73.1
...
chore(deps): bump google-genai from 1.69.0 to 1.73.1 in /application
2026-04-19 22:43:14 +05:30
Alex
ef19da9516
fix: pg bouncer compatible
2026-04-19 17:53:22 +01:00
dependabot[bot]
cc1275c3f9
chore(deps): bump google-genai from 1.69.0 to 1.73.1 in /application
...
Bumps [google-genai](https://github.com/googleapis/python-genai ) from 1.69.0 to 1.73.1.
- [Release notes](https://github.com/googleapis/python-genai/releases )
- [Changelog](https://github.com/googleapis/python-genai/blob/main/CHANGELOG.md )
- [Commits](https://github.com/googleapis/python-genai/compare/v1.69.0...v1.73.1 )
---
updated-dependencies:
- dependency-name: google-genai
dependency-version: 1.73.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-19 15:30:12 +00:00
Manish Madan
14c2f4890f
Merge pull request #2394 from arc53/dependabot/pip/application/fastmcp-3.2.4
...
chore(deps): bump fastmcp from 3.2.0 to 3.2.4 in /application
2026-04-19 20:59:04 +05:30
dependabot[bot]
b3aec36aa2
chore(deps): bump fastmcp from 3.2.0 to 3.2.4 in /application
...
Bumps [fastmcp](https://github.com/PrefectHQ/fastmcp ) from 3.2.0 to 3.2.4.
- [Release notes](https://github.com/PrefectHQ/fastmcp/releases )
- [Changelog](https://github.com/PrefectHQ/fastmcp/blob/main/docs/changelog.mdx )
- [Commits](https://github.com/PrefectHQ/fastmcp/compare/v3.2.0...v3.2.4 )
---
updated-dependencies:
- dependency-name: fastmcp
dependency-version: 3.2.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-19 15:13:45 +00:00
Manish Madan
50f62beaeb
Merge pull request #2392 from arc53/dependabot/pip/application/elevenlabs-2.43.0
...
chore(deps): bump elevenlabs from 2.41.0 to 2.43.0 in /application
2026-04-19 20:42:32 +05:30
dependabot[bot]
423b4c6494
chore(deps): bump elevenlabs from 2.41.0 to 2.43.0 in /application
...
Bumps [elevenlabs](https://github.com/elevenlabs/elevenlabs-python ) from 2.41.0 to 2.43.0.
- [Release notes](https://github.com/elevenlabs/elevenlabs-python/releases )
- [Commits](https://github.com/elevenlabs/elevenlabs-python/compare/v2.41.0...v2.43.0 )
---
updated-dependencies:
- dependency-name: elevenlabs
dependency-version: 2.43.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-19 14:49:32 +00:00
Manish Madan
54f615c59d
Merge pull request #2407 from arc53/dependabot/npm_and_yarn/frontend/npm_and_yarn-f0540bac9f
...
chore(deps): bump the npm_and_yarn group across 1 directory with 4 updates
2026-04-19 20:17:07 +05:30
dependabot[bot]
223b3de66e
chore(deps): bump the npm_and_yarn group across 1 directory with 4 updates
...
Bumps the npm_and_yarn group with 3 updates in the /frontend directory: [lodash](https://github.com/lodash/lodash ), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) and [dompurify](https://github.com/cure53/DOMPurify ).
Updates `lodash` from 4.17.23 to 4.18.1
- [Release notes](https://github.com/lodash/lodash/releases )
- [Commits](https://github.com/lodash/lodash/compare/4.17.23...4.18.1 )
Updates `vite` from 8.0.0 to 8.0.8
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v8.0.8/packages/vite )
Updates `picomatch` from 4.0.3 to 4.0.4
- [Release notes](https://github.com/micromatch/picomatch/releases )
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/picomatch/compare/4.0.3...4.0.4 )
Updates `dompurify` from 3.3.3 to 3.4.0
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/3.3.3...3.4.0 )
---
updated-dependencies:
- dependency-name: lodash
dependency-version: 4.18.1
dependency-type: direct:production
dependency-group: npm_and_yarn
- dependency-name: vite
dependency-version: 8.0.8
dependency-type: direct:development
dependency-group: npm_and_yarn
- dependency-name: picomatch
dependency-version: 4.0.4
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: dompurify
dependency-version: 3.4.0
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-19 14:06:01 +00:00
Manish Madan
4db9622ef5
Merge pull request #2403 from arc53/dependabot/npm_and_yarn/frontend/types/react-19.2.14
...
chore(deps-dev): bump @types/react from 19.2.2 to 19.2.14 in /frontend
2026-04-19 19:34:04 +05:30
dependabot[bot]
e8d1bbfb68
chore(deps-dev): bump @types/react from 19.2.2 to 19.2.14 in /frontend
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.2.2 to 19.2.14.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.14
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-19 13:54:47 +00:00
Manish Madan
aff1345ae4
Merge pull request #2399 from arc53/dependabot/npm_and_yarn/frontend/react-router-dom-7.14.1
...
chore(deps): bump react-router-dom from 7.13.1 to 7.14.1 in /frontend
2026-04-19 04:45:57 +05:30
Alex
ee430aff1e
fix: tests
2026-04-18 13:28:03 +01:00
Alex
81b6ee5daa
Pg 4 ( #2390 )
...
* feat: postgres tests
* feat: mongo cutoff
* feat: mongo cutoff
* feat: adjust docs and compose files
* fix: mini code mongo removals
* fix: tests and k8s mongo stuff
* feat: test fixes
* fix: ruff
* fix: vale
* Potential fix for pull request finding 'CodeQL / Clear-text logging of sensitive information'
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
* fix: mini suggestions
* vale lint fix 2
* fix: codeql columns thing
* fix: test mongo
* fix: tests coverage
* feat: better tests 4
* feat: more tests
* feat: decent coverage
* fix: ruff fixes
* fix: remove mongo mock
* feat: enhance workflow engine and API routes; add document retrieval and source handling
* feat: e2e tests
* fix: mcp, mongo and more
* fix: mini codeql warning
* fix: agent chunk view
* fix: mini issues
* fix: more pg fixes
* feat: postgres prep on start
* feat: qa tests
* fix: mini improvements
* fix: tests
---------
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: Siddhant Rai <siddhant.rai.5686@gmail.com >
2026-04-18 13:13:57 +01:00
dependabot[bot]
ebb7938d1b
chore(deps): bump react-router-dom from 7.13.1 to 7.14.1 in /frontend
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 7.13.1 to 7.14.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.14.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-version: 7.14.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-17 08:55:15 +00:00
Manish Madan
7f6360b4ff
Merge pull request #2396 from arc53/dependabot/npm_and_yarn/frontend/lucide-react-1.8.0
...
chore(deps): bump lucide-react from 0.562.0 to 1.8.0 in /frontend
2026-04-17 14:23:19 +05:30
dependabot[bot]
c68f18a0ae
chore(deps): bump lucide-react from 0.562.0 to 1.8.0 in /frontend
...
Bumps [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react ) from 0.562.0 to 1.8.0.
- [Release notes](https://github.com/lucide-icons/lucide/releases )
- [Commits](https://github.com/lucide-icons/lucide/commits/1.8.0/packages/lucide-react )
---
updated-dependencies:
- dependency-name: lucide-react
dependency-version: 1.8.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-17 08:50:18 +00:00
Manish Madan
684b29e73c
Merge pull request #2393 from arc53/dependabot/npm_and_yarn/frontend/eslint-plugin-prettier-5.5.5
...
chore(deps-dev): bump eslint-plugin-prettier from 5.5.4 to 5.5.5 in /frontend
2026-04-17 14:18:50 +05:30
Alex
a1efea81d0
patch: sitemap and web loader
2026-04-15 23:39:44 +01:00
dependabot[bot]
9eb34262e0
chore(deps-dev): bump eslint-plugin-prettier in /frontend
...
Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier ) from 5.5.4 to 5.5.5.
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases )
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/eslint-plugin-prettier/compare/v5.5.4...v5.5.5 )
---
updated-dependencies:
- dependency-name: eslint-plugin-prettier
dependency-version: 5.5.5
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-15 20:53:23 +00:00
Alex
951bdb8365
Merge pull request #2391 from arc53/codex/draft-threat-model-for-docsgpt
...
Add public threat model document (.github/THREAT_MODEL.md)
2026-04-15 18:38:55 +01:00
Alex
c18f85a050
docs: clarify tool-access boundary in prompt injection section
2026-04-15 18:31:42 +01:00
Manish Madan
5ecb174567
Merge pull request #2322 from arc53/dependabot/npm_and_yarn/extensions/react-widget/svgo-4.0.1
...
chore(deps-dev): bump svgo from 3.3.3 to 4.0.1 in /extensions/react-widget
2026-04-15 17:06:40 +05:30
dependabot[bot]
ed7212d016
chore(deps-dev): bump svgo in /extensions/react-widget
...
Bumps [svgo](https://github.com/svg/svgo ) from 3.3.3 to 4.0.1.
- [Release notes](https://github.com/svg/svgo/releases )
- [Commits](https://github.com/svg/svgo/compare/v3.3.3...v4.0.1 )
---
updated-dependencies:
- dependency-name: svgo
dependency-version: 4.0.1
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-15 10:43:02 +00:00
Manish Madan
f82acdab5d
Merge pull request #2384 from arc53/dependabot/npm_and_yarn/frontend/eslint-plugin-n-17.24.0
...
chore(deps-dev): bump eslint-plugin-n from 17.23.1 to 17.24.0 in /frontend
2026-04-15 16:03:56 +05:30
dependabot[bot]
361aebc34c
chore(deps-dev): bump eslint-plugin-n in /frontend
...
Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n ) from 17.23.1 to 17.24.0.
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases )
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md )
- [Commits](https://github.com/eslint-community/eslint-plugin-n/compare/v17.23.1...v17.24.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-n
dependency-version: 17.24.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-15 10:28:46 +00:00
Manish Madan
bf194c1a0f
Merge pull request #2311 from arc53/dependabot/npm_and_yarn/extensions/react-widget/babel/preset-env-7.29.2
...
chore(deps-dev): bump @babel/preset-env from 7.24.6 to 7.29.2 in /extensions/react-widget
2026-04-15 13:16:41 +05:30
Manish Madan
54c396750b
Merge pull request #2385 from arc53/dependabot/npm_and_yarn/frontend/multi-2a6546692b
...
chore(deps): bump react-dom and @types/react-dom in /frontend
2026-04-15 13:12:49 +05:30
dependabot[bot]
9adebfec69
chore(deps): bump react-dom and @types/react-dom in /frontend
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ). These dependencies needed to be updated together.
Updates `react-dom` from 19.2.0 to 19.2.5
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react-dom )
Updates `@types/react-dom` from 19.2.2 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-version: 19.2.5
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: "@types/react-dom"
dependency-version: 19.2.3
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-15 07:41:54 +00:00
Manish Madan
92c321f163
Merge pull request #2386 from arc53/dependabot/npm_and_yarn/frontend/tailwindcss/postcss-4.2.2
...
chore(deps-dev): bump @tailwindcss/postcss from 4.1.16 to 4.2.2 in /frontend
2026-04-15 13:10:30 +05:30
dependabot[bot]
e3d36b9e52
chore(deps-dev): bump @tailwindcss/postcss in /frontend
...
Bumps [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss ) from 4.1.16 to 4.2.2.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.2/packages/@tailwindcss-postcss )
---
updated-dependencies:
- dependency-name: "@tailwindcss/postcss"
dependency-version: 4.2.2
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-15 07:39:25 +00:00
Manish Madan
8950e11208
Merge pull request #2388 from arc53/dependabot/npm_and_yarn/frontend/tailwindcss-4.2.2
...
chore(deps-dev): bump tailwindcss from 4.2.1 to 4.2.2 in /frontend
2026-04-15 12:39:31 +05:30
dependabot[bot]
5de0132a65
chore(deps-dev): bump tailwindcss from 4.2.1 to 4.2.2 in /frontend
...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss ) from 4.2.1 to 4.2.2.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.2/packages/tailwindcss )
---
updated-dependencies:
- dependency-name: tailwindcss
dependency-version: 4.2.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-15 07:06:26 +00:00
Manish Madan
b92ca91512
Merge pull request #2387 from arc53/dependabot/npm_and_yarn/frontend/mermaid-11.14.0
...
chore(deps): bump mermaid from 11.13.0 to 11.14.0 in /frontend
2026-04-15 12:34:28 +05:30
dependabot[bot]
8e0b2844a2
chore(deps): bump mermaid from 11.13.0 to 11.14.0 in /frontend
...
Bumps [mermaid](https://github.com/mermaid-js/mermaid ) from 11.13.0 to 11.14.0.
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.13.0...mermaid@11.14.0 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-15 07:02:28 +00:00
dependabot[bot]
0969db5e30
chore(deps-dev): bump @babel/preset-env in /extensions/react-widget
...
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env ) from 7.24.6 to 7.29.2.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.29.2/packages/babel-preset-env )
---
updated-dependencies:
- dependency-name: "@babel/preset-env"
dependency-version: 7.29.2
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-15 05:30:32 +00:00
Manish Madan
af335a27e8
Merge pull request #2309 from arc53/dependabot/npm_and_yarn/extensions/react-widget/babel/core-7.29.0
...
chore(deps-dev): bump @babel/core from 7.24.6 to 7.29.0 in /extensions/react-widget
2026-04-15 10:59:07 +05:30
dependabot[bot]
0ae3139284
chore(deps-dev): bump @babel/core in /extensions/react-widget
...
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core ) from 7.24.6 to 7.29.0.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.29.0/packages/babel-core )
---
updated-dependencies:
- dependency-name: "@babel/core"
dependency-version: 7.29.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-14 23:05:51 +00:00
Manish Madan
7529ca3dd6
Merge pull request #2389 from arc53/dependabot/pip/application/pip-3344959f9f
...
chore(deps): bump cryptography from 46.0.6 to 46.0.7 in /application in the pip group across 1 directory
2026-04-15 04:32:07 +05:30
dependabot[bot]
1b813320f1
chore(deps): bump cryptography
...
Bumps the pip group with 1 update in the /application directory: [cryptography](https://github.com/pyca/cryptography ).
Updates `cryptography` from 46.0.6 to 46.0.7
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pyca/cryptography/compare/46.0.6...46.0.7 )
---
updated-dependencies:
- dependency-name: cryptography
dependency-version: 46.0.7
dependency-type: direct:production
dependency-group: pip
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-14 21:46:13 +00:00
Manish Madan
02012e9a0b
Merge pull request #2366 from arc53/dependabot/pip/application/tzdata-2026.1
...
chore(deps): bump tzdata from 2025.3 to 2026.1 in /application
2026-04-15 03:14:25 +05:30
dependabot[bot]
c2f027265a
chore(deps): bump tzdata from 2025.3 to 2026.1 in /application
...
Bumps [tzdata](https://github.com/python/tzdata ) from 2025.3 to 2026.1.
- [Release notes](https://github.com/python/tzdata/releases )
- [Changelog](https://github.com/python/tzdata/blob/master/NEWS.md )
- [Commits](https://github.com/python/tzdata/compare/2025.3...2026.1 )
---
updated-dependencies:
- dependency-name: tzdata
dependency-version: '2026.1'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-14 21:30:10 +00:00
Manish Madan
0ae615c10e
Merge pull request #2365 from arc53/dependabot/pip/application/langchain-core-1.2.26
...
chore(deps): bump langchain-core from 1.2.23 to 1.2.26 in /application
2026-04-15 02:58:36 +05:30
dependabot[bot]
881d0da344
chore(deps): bump langchain-core from 1.2.23 to 1.2.26 in /application
...
Bumps [langchain-core](https://github.com/langchain-ai/langchain ) from 1.2.23 to 1.2.26.
- [Release notes](https://github.com/langchain-ai/langchain/releases )
- [Commits](https://github.com/langchain-ai/langchain/compare/langchain-core==1.2.23...langchain-core==1.2.26 )
---
updated-dependencies:
- dependency-name: langchain-core
dependency-version: 1.2.26
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-14 21:10:32 +00:00
Manish Madan
1376de6bae
Merge pull request #2364 from arc53/dependabot/pip/application/langsmith-0.7.26
...
chore(deps): bump langsmith from 0.7.23 to 0.7.26 in /application
2026-04-15 02:39:17 +05:30
dependabot[bot]
362ebfcc0a
chore(deps): bump langsmith from 0.7.23 to 0.7.26 in /application
...
Bumps [langsmith](https://github.com/langchain-ai/langsmith-sdk ) from 0.7.23 to 0.7.26.
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases )
- [Commits](https://github.com/langchain-ai/langsmith-sdk/compare/v0.7.23...v0.7.26 )
---
updated-dependencies:
- dependency-name: langsmith
dependency-version: 0.7.26
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-14 20:29:55 +00:00
Manish Madan
bc77eed3d8
Merge pull request #2363 from arc53/dependabot/pip/application/jsonpointer-3.1.1
...
chore(deps): bump jsonpointer from 3.0.0 to 3.1.1 in /application
2026-04-15 01:58:23 +05:30
dependabot[bot]
1f346588e7
chore(deps): bump jsonpointer from 3.0.0 to 3.1.1 in /application
...
Bumps [jsonpointer](https://github.com/stefankoegl/python-json-pointer ) from 3.0.0 to 3.1.1.
- [Commits](https://github.com/stefankoegl/python-json-pointer/compare/v3.0.0...v3.1.1 )
---
updated-dependencies:
- dependency-name: jsonpointer
dependency-version: 3.1.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-14 20:13:38 +00:00
Alex
2fed5c882b
Merge pull request #2383 from arc53/codex/add-zizmor-ci-configuration
...
Add GitHub Actions zizmor security workflow
2026-04-14 18:02:18 +01:00
Alex
aa938d76d7
Add GitHub Actions zizmor security workflow
2026-04-14 17:56:14 +01:00
Manish Madan
2940628aa6
Merge pull request #2319 from arc53/dependabot/npm_and_yarn/frontend/npm_and_yarn-e5a595f223
...
chore(deps-dev): bump flatted from 3.4.1 to 3.4.2 in /frontend in the npm_and_yarn group across 1 directory
2026-04-14 21:30:54 +05:30
dependabot[bot]
7f23928134
chore(deps-dev): bump flatted
...
Bumps the npm_and_yarn group with 1 update in the /frontend directory: [flatted](https://github.com/WebReflection/flatted ).
Updates `flatted` from 3.4.1 to 3.4.2
- [Commits](https://github.com/WebReflection/flatted/compare/v3.4.1...v3.4.2 )
---
updated-dependencies:
- dependency-name: flatted
dependency-version: 3.4.2
dependency-type: indirect
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-14 15:10:18 +00:00
Alex
20e17c84c7
Merge pull request #2379 from arc53/codex/refine-and-review-incident-response-plan
...
Add INCIDENT_RESPONSE.md and reference it from SECURITY.md
2026-04-14 14:59:04 +01:00
copilot-swe-agent[bot]
389ddf6068
Fix secret references in INCIDENT_RESPONSE.md to match actual DocsGPT config
...
Agent-Logs-Url: https://github.com/arc53/DocsGPT/sessions/c6bfd68d-4dac-46ec-8404-fe5bfda0e8f3
Co-authored-by: dartpain <15183589+dartpain@users.noreply.github.com >
2026-04-14 10:51:22 +00:00
Alex
1e2443fb90
Update .github/INCIDENT_RESPONSE.md
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2026-04-14 11:49:13 +01:00
Manish Madan
6387bd1892
Merge pull request #2303 from arc53/dependabot/npm_and_yarn/frontend/typescript-eslint/eslint-plugin-8.57.1
...
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.46.3 to 8.57.1 in /frontend
2026-04-14 14:16:35 +05:30
dependabot[bot]
7d22724d1c
chore(deps-dev): bump @typescript-eslint/eslint-plugin in /frontend
...
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ) from 8.46.3 to 8.57.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.1/packages/eslint-plugin )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.57.1
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-14 08:39:33 +00:00
Manish Madan
f6f12f6895
Merge pull request #2302 from arc53/dependabot/npm_and_yarn/frontend/prettier-plugin-tailwindcss-0.7.2
...
chore(deps-dev): bump prettier-plugin-tailwindcss from 0.7.1 to 0.7.2 in /frontend
2026-04-14 14:07:38 +05:30
dependabot[bot]
934127f323
chore(deps-dev): bump prettier-plugin-tailwindcss in /frontend
...
Bumps [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss ) from 0.7.1 to 0.7.2.
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.7.1...v0.7.2 )
---
updated-dependencies:
- dependency-name: prettier-plugin-tailwindcss
dependency-version: 0.7.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-14 08:25:09 +00:00
Manish Madan
1780e3cc91
Merge pull request #2301 from arc53/dependabot/npm_and_yarn/frontend/react-i18next-16.5.8
...
chore(deps): bump react-i18next from 16.2.4 to 16.5.8 in /frontend
2026-04-14 13:53:12 +05:30
ManishMadan2882
5e7fab2f34
(chore:fe) i18next
2026-04-14 13:50:03 +05:30
Alex
92ae76f95e
Merge pull request #2381 from arc53/pg-3
...
feat: pre depriciation
2026-04-14 08:33:42 +01:00
Alex
18755bdd9b
fix: workflow tests
2026-04-14 00:35:57 +01:00
Alex
0f20adcbf4
feat: pre depriciation
2026-04-14 00:19:50 +01:00
Alex
18e2a829c9
docs: apply revised incident response plan wording
2026-04-13 14:11:45 +01:00
dependabot[bot]
cd44501a71
chore(deps): bump react-i18next from 16.2.4 to 16.5.8 in /frontend
...
Bumps [react-i18next](https://github.com/i18next/react-i18next ) from 16.2.4 to 16.5.8.
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/react-i18next/compare/v16.2.4...v16.5.8 )
---
updated-dependencies:
- dependency-name: react-i18next
dependency-version: 16.5.8
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-13 12:36:35 +00:00
Manish Madan
f8ebdf3fd4
Merge pull request #2300 from arc53/dependabot/npm_and_yarn/frontend/i18next-browser-languagedetector-8.2.1
...
chore(deps): bump i18next-browser-languagedetector from 8.2.0 to 8.2.1 in /frontend
2026-04-13 18:03:46 +05:30
dependabot[bot]
7c6fca18ad
chore(deps): bump i18next-browser-languagedetector in /frontend
...
Bumps [i18next-browser-languagedetector](https://github.com/i18next/i18next-browser-languageDetector ) from 8.2.0 to 8.2.1.
- [Changelog](https://github.com/i18next/i18next-browser-languageDetector/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/i18next-browser-languageDetector/compare/v8.2.0...v8.2.1 )
---
updated-dependencies:
- dependency-name: i18next-browser-languagedetector
dependency-version: 8.2.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-13 12:28:26 +00:00
Alex
5fab798707
Merge pull request #2377 from arc53/pg-2
...
feat: pg-2
2026-04-12 14:09:52 +01:00
Alex
cb30a24e05
feat: fixes on pg2
2026-04-12 13:51:29 +01:00
Alex
530761d08c
feat: pg-2
2026-04-12 13:35:32 +01:00
Alex
73fbc28744
Merge pull request #2376 from arc53/pg-1
...
Pg 1
2026-04-12 12:44:12 +01:00
Alex
b5b6538762
fix: tests
2026-04-12 12:35:23 +01:00
Alex
a9761061fc
fix: mini issues
2026-04-12 12:24:58 +01:00
Alex
9388996a15
fix: ruff
2026-04-12 12:18:31 +01:00
Alex
875868b7e5
fix: comment
2026-04-12 12:16:19 +01:00
Alex
502819ae52
feat: pg migration, more tables
2026-04-12 12:15:59 +01:00
Alex
cada1a44fc
Merge pull request #2373 from siiddhantt/feat/confluence-connector
...
feat: add Confluence connector for data ingestion
2026-04-12 11:33:49 +01:00
Alex
6192767451
fix: sanitize attachment filenames, drop dateutil dep, add connector docs
2026-04-12 11:32:24 +01:00
Alex
5c3e6eca54
Merge pull request #2375 from arc53/pg
...
feat: init pg migration
2026-04-12 10:44:31 +01:00
Alex
59d9d4ac50
fix: comments in settings
2026-04-12 10:42:46 +01:00
Alex
3931ccccee
Merge pull request #2374 from ManishMadan2882/main
...
UX: Conversation scroll experience
2026-04-12 00:37:11 +01:00
Alex
55717043f6
fix: vale
2026-04-12 00:29:23 +01:00
Alex
ececcb8b17
feat: init pg migration
2026-04-12 00:07:24 +01:00
ManishMadan2882
420e9d3dd5
(feat) conversation: scroll experience
2026-04-10 19:27:07 +05:30
Siddhant Rai
749eed3d0b
feat: add Confluence integration with authentication and file loading capabilities
...
- Enhanced settings.py to include Confluence client ID and secret
- Created ConfluenceAuth class for handling authentication with Confluence
- Implemented ConfluenceLoader class for loading data from Confluence
- Updated connector_creator.py to register Confluence as a connector
- Added confluence.svg asset for UI representation
- Modified ConnectorAuth component to support Confluence connection
- Updated FilePicker component to include Confluence as a file source
- Added localization support for Confluence in multiple languages (de, en, es, jp, ru, zh-TW, zh)
- Enhanced Upload component to handle Confluence file selection
- Updated ingestor types to include Confluence and its configuration
2026-04-10 19:10:35 +05:30
Alex
bd03a513e3
Merge pull request #2372 from arc53/fast-ebook
...
feat: faster ebook parsing
2026-04-09 18:38:13 +01:00
Alex
fcdb4fb5e8
feat: faster ebook parsing
2026-04-09 18:31:06 +01:00
Alex
e787c896eb
upd Security.md
2026-04-08 12:49:20 +01:00
Alex
23aeaff5db
Merge pull request #2362 from arc53/v1-mini-improvements
...
feat: history overwrite
2026-04-06 15:02:32 +01:00
Alex
689dd79597
fix: lang
2026-04-06 14:57:51 +01:00
Alex
0c15af90b1
feat: history overwrite
2026-04-06 14:42:01 +01:00
Alex
cdd6ff6557
chore: bump deps
2026-04-04 12:45:34 +01:00
Alex
72b3d94453
fix: tests
2026-04-03 18:30:46 +01:00
Alex
7e88d09e5d
Merge branch 'main' of https://github.com/arc53/DocsGPT
2026-04-03 18:26:37 +01:00
Alex
74a4a237dc
fix: bump deps
2026-04-03 18:26:29 +01:00
Alex
c3f01c6619
Merge pull request #2347 from ManishMadan2882/main
...
Minor frontend updates
2026-04-03 18:17:27 +01:00
Alex
6b408823d4
fix: mini theme color edits
2026-04-03 18:16:07 +01:00
Alex
3fc81ac5d8
fix: clean error
2026-04-03 18:08:38 +01:00
Alex
2652f8a5b0
fix: chatwoot
2026-04-03 18:04:49 +01:00
Alex
d711eefe96
patch: agent usage limits
2026-04-03 18:03:31 +01:00
Alex
79206f3919
fix: harden faiss
2026-04-03 17:57:49 +01:00
Alex
de971d9452
fix: validate mcp url
2026-04-03 17:52:48 +01:00
Alex
1b4d5ca0dd
patch: mcp identity
2026-04-03 17:40:22 +01:00
Alex
81989e8258
fix: patch /v1/models
2026-04-03 17:37:09 +01:00
Alex
dc262d1698
patch: error
2026-04-03 17:30:23 +01:00
Alex
69f9c93869
patch: s3
2026-04-03 17:28:09 +01:00
Alex
74bf80b25c
patch: sharing convos
2026-04-03 17:20:06 +01:00
Alex
d9a92a7208
feat: improve setup scripts
2026-04-03 17:15:21 +01:00
Alex
02e93d993d
patch: available tools
2026-04-03 17:12:36 +01:00
Alex
6b6495f48c
patch: key
2026-04-03 17:06:35 +01:00
Alex
249dd9ce37
patch: paths
2026-04-03 16:45:03 +01:00
Alex
9134ab0478
Merge branch 'main' of https://github.com/arc53/DocsGPT
2026-04-03 16:40:50 +01:00
Alex
10ef68c9d0
Revise vulnerability reporting process
...
Updated vulnerability reporting instructions to use GitHub's private reporting flow.
2026-04-03 16:36:10 +01:00
Alex
7d65cf1c2b
chore: bump deps
2026-04-03 16:35:10 +01:00
Alex
13c6cc59c1
Merge pull request #2349 from arc53/messages-format
...
Messages format
2026-04-03 16:26:57 +01:00
Alex
6381f7dd4e
fix: remove bad tests
2026-04-03 16:20:15 +01:00
Alex
e6ac4008fe
feat: better tool names for llms
2026-04-03 15:35:50 +01:00
Alex
1af09f114d
fix: tool mapping
2026-04-03 13:32:55 +01:00
Alex
be7da983e7
fix: remove internal tools when creating tools and better Approval gate UX
2026-04-03 10:36:48 +01:00
Alex
8b9e595d85
fix: structure improvements of messages
2026-04-01 14:58:44 +01:00
Alex
398f3acc8d
fix: clean error
2026-04-01 13:01:02 +01:00
Alex
e04baa7ed8
feat: tests and approval gate
2026-04-01 12:49:32 +01:00
Alex
e5586b6f20
feat: fronted connection to api
2026-04-01 10:55:54 +01:00
Alex
addf57cab7
feat: compatible api
2026-03-31 23:10:09 +01:00
ManishMadan2882
648b3f1d20
(fix) lint/fe
2026-04-01 03:30:44 +05:30
ManishMadan2882
a75a9e23f9
(feat:fe) minor good things
2026-04-01 03:19:03 +05:30
Alex
73256389cf
feat: client side tools
2026-03-31 22:20:55 +01:00
Alex
d609efca49
feat: continuation messages
2026-03-31 21:30:24 +01:00
Alex
772860b667
fix: mini fe changes
2026-03-31 11:59:38 +01:00
Alex
ea2fd8b04a
chore: remove unused deps
2026-03-31 11:57:01 +01:00
Alex
2c73deac20
deps upgrades
2026-03-31 11:32:55 +01:00
Alex
47f3907e5e
Merge pull request #2340 from arc53/coverage-3
...
chore: more tests
2026-03-31 00:50:46 +01:00
Alex
727495c553
fix: mongo in unit tests
2026-03-31 00:34:49 +01:00
Alex
a3b08a5b44
More tests
2026-03-31 00:07:19 +01:00
Alex
81532ada2a
Merge pull request #2318 from siiddhantt/feat/standardize-css
...
feat: update styles and improve accessibility across frontend
2026-03-30 23:26:45 +01:00
ManishMadan2882
43f71374e5
(chore:fe) lint-fix
2026-03-30 23:26:11 +05:30
Alex
d5c0322e2a
chore: more tests
2026-03-30 16:13:08 +01:00
Siddhant Rai
3b66a3176c
fix: improve option matching logic in Dropdown component + selected style
2026-03-30 18:36:35 +05:30
Alex
dc6db847ca
Merge pull request #2339 from arc53/test-handlers
...
chore: handlers tests
2026-03-30 13:06:53 +01:00
Alex
ed0063aada
chore: handlers tests
2026-03-30 12:53:50 +01:00
Siddhant Rai
9a6a55b6da
Merge branch 'main' into feat/standardize-css
2026-03-30 13:14:43 +05:30
Siddhant Rai
12a8368216
fix: merge conflicts
2026-03-30 13:12:24 +05:30
Alex
3f6d6f15ea
Merge pull request #2338 from arc53/tests-utils
...
chore: utils tests
2026-03-29 11:54:59 +01:00
Alex
126fa01b14
chore: utils tests
2026-03-29 11:49:35 +01:00
Alex
e06debad5f
chore: connector tests
2026-03-29 10:32:48 +01:00
Alex
6492852f7d
fix: lint on seeder test
2026-03-29 09:48:46 +01:00
Alex
00a621f33a
tests: retriever and seeder
2026-03-29 09:46:07 +01:00
Alex
e92ffc6fdc
Merge pull request #2337 from arc53/tests-api
...
chore: api and tool tests
2026-03-28 22:55:10 +00:00
Alex
fe185e5b8d
chore: api and tool tests
2026-03-28 21:51:47 +00:00
Alex
9f3d9ab860
docs: agent types
2026-03-28 18:50:50 +00:00
Alex
1c0adde380
chore: docs update
2026-03-28 17:04:06 +00:00
Alex
3c56bd0d0b
docs: fix conflicts
2026-03-28 16:16:15 +00:00
Alex
86664ebda2
Merge pull request #2320 from Alex-wuhu/novita-integration
...
feat: complete Novita AI provider integration
2026-03-28 13:22:02 +00:00
Alex
db18b743d1
fix tests 2
2026-03-28 13:10:41 +00:00
Alex
9e85cc9065
fix: test errors
2026-03-28 13:04:21 +00:00
Alex
aaaa6f002d
Merge branch 'main' of https://github.com/arc53/DocsGPT
2026-03-28 12:03:27 +00:00
Alex
47dcbcb74b
fix: tests and sources on workflow agent
2026-03-28 12:03:16 +00:00
Alex
ddbfd94193
Adjust demo GIF height in README
...
Update the height of the demo GIF in README.
2026-03-28 11:09:05 +00:00
Alex
8dec60ab8b
Update demo GIF in README
...
Replaced demo video GIF in README with a new example.
2026-03-28 11:08:10 +00:00
Alex
84b2e4bab4
fix: end node multi input
2026-03-28 10:00:01 +00:00
Siddhant Rai
193ca6fd63
fix: lint errors + redundant css
2026-03-28 15:02:16 +05:30
Alex
2afdd7f026
fix: enable tools in workflow agents
2026-03-27 13:43:09 +00:00
Alex
f364475f64
Merge pull request #2335 from arc53/tests-worker
...
tests: worker coverage
2026-03-27 12:14:56 +00:00
Alex
b254de6ed6
tests: worker coverage
2026-03-27 12:03:55 +00:00
Alex
08dedcaf95
Merge pull request #2334 from arc53/tests-vectors
...
tests: vectors
2026-03-26 19:11:20 +00:00
Alex
c726eb8ebd
fix: ruff
2026-03-26 18:48:53 +00:00
Alex
5f0d39e5f1
tests: vectors
2026-03-26 18:42:59 +00:00
Alex
8c82fc5495
Merge pull request #2333 from arc53/chore/bump-npm-v0.6.3
...
chore: bump npm libraries to v0.6.3
2026-03-26 14:17:09 +00:00
github-actions[bot]
6d81a15e97
chore: bump npm libraries to v0.6.3
2026-03-26 14:16:32 +00:00
Alex
5478e4234c
chore: bump npm again
2026-03-26 14:06:05 +00:00
Alex
4056278fef
chore: bump npm
2026-03-26 13:48:05 +00:00
Alex
ee6530fe00
chore: bump npm
2026-03-26 13:42:51 +00:00
Alex
7c1decbcc3
fix: npm publish
2026-03-26 13:39:09 +00:00
Alex
8a3c724b31
Merge pull request #2332 from arc53/fix-fallbacks-onstream
...
Fix fallbacks onstream
2026-03-26 13:18:32 +00:00
Alex
15d4e9dbf5
fix: strict json in openai base
2026-03-26 13:08:22 +00:00
Siddhant Rai
174dee0fe6
fix: inconsistencies with prev color patterns
2026-03-26 18:32:57 +05:30
Alex
f7bfd38b28
fix: proper fallback handling within agent during stream
2026-03-26 12:52:30 +00:00
Alex
187e5da61e
Merge pull request #2328 from ManishMadan2882/main
...
Chore(React widget): automate publish via actions
2026-03-26 11:15:52 +00:00
Alex
175ed58d2e
Merge pull request #2327 from arc53/research-agent
...
Research agent
2026-03-26 11:00:23 +00:00
Alex
820ee3a843
fix test
2026-03-25 22:53:09 +00:00
Alex
462f2e9494
mini refactors
2026-03-25 22:34:25 +00:00
ManishMadan2882
c4968a641e
(chore)react-widget: add linter
2026-03-26 02:06:49 +05:30
Alex
c6ece177cd
fix: small issues
2026-03-25 20:04:03 +00:00
ManishMadan2882
a3e6a5622d
(chore)react-widget: build, publish act
2026-03-26 01:03:09 +05:30
Alex
e8d11fdfa6
feat: list files internal tool
2026-03-25 19:21:46 +00:00
Alex
72393dc369
feat: improve research
2026-03-25 17:42:24 +00:00
Alex
556b0a1da5
feat: research init
2026-03-25 15:16:18 +00:00
Siddhant Rai
844167ba06
Merge branch 'feat/standardize-css' of https://github.com/siiddhantt/DocsGPT into feat/standardize-css
2026-03-25 19:36:35 +05:30
Siddhant Rai
6fa3acb1ca
style: standardize colors across components according to figma
2026-03-25 19:36:32 +05:30
Alex
32c268a21e
refactor: simplify agent architecture and remove ReActAgent
2026-03-25 12:47:17 +00:00
Alex
ed34c2b929
fix: tool name in agent builder
2026-03-25 11:29:31 +00:00
Alex
06e827573c
fix: jinja
2026-03-25 00:03:42 +00:00
dependabot[bot]
cdb71a54f0
chore(deps): bump class-variance-authority in /extensions/react-widget
...
Bumps [class-variance-authority](https://github.com/joe-bell/cva ) from 0.7.0 to 0.7.1.
- [Release notes](https://github.com/joe-bell/cva/releases )
- [Commits](https://github.com/joe-bell/cva/compare/v0.7.0...v0.7.1 )
---
updated-dependencies:
- dependency-name: class-variance-authority
dependency-version: 0.7.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-24 20:53:18 +00:00
Manish Madan
74e76d4cda
Merge pull request #2323 from arc53/dependabot/npm_and_yarn/extensions/react-widget/styled-components-6.3.12
...
chore(deps): bump styled-components from 6.1.11 to 6.3.12 in /extensions/react-widget
2026-03-25 01:44:55 +05:30
ManishMadan2882
db5c69ca76
(chore)react widget: build fix
2026-03-25 01:37:09 +05:30
Alex
9fd063266b
Mini fixes
2026-03-24 01:40:29 +00:00
dependabot[bot]
05aa9d7cca
chore(deps): bump styled-components in /extensions/react-widget
...
Bumps [styled-components](https://github.com/styled-components/styled-components ) from 6.1.11 to 6.3.12.
- [Release notes](https://github.com/styled-components/styled-components/releases )
- [Commits](https://github.com/styled-components/styled-components/compare/v6.1.11...styled-components@6.3.12 )
---
updated-dependencies:
- dependency-name: styled-components
dependency-version: 6.3.12
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-23 20:53:52 +00:00
Manish Madan
dcececd118
Merge pull request #2298 from arc53/dependabot/npm_and_yarn/extensions/react-widget/flow-bin-0.305.1
...
chore(deps): bump flow-bin from 0.305.0 to 0.305.1 in /extensions/react-widget
2026-03-23 19:26:21 +05:30
Alex-wuhu
eaf39bb15b
feat: add Novita AI as LLM provider
...
Add Novita AI (https://novita.ai ) as a new LLM provider option.
Novita offers OpenAI-compatible API endpoints with competitive pricing.
2026-03-23 10:52:26 +08:00
dependabot[bot]
6515481624
chore(deps): bump flow-bin in /extensions/react-widget
...
Bumps [flow-bin](https://github.com/flowtype/flow-bin ) from 0.305.0 to 0.305.1.
- [Release notes](https://github.com/flowtype/flow-bin/releases )
- [Commits](https://github.com/flowtype/flow-bin/commits )
---
updated-dependencies:
- dependency-name: flow-bin
dependency-version: 0.305.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-22 20:29:46 +00:00
Manish Madan
6a7e3b6d77
Merge pull request #2165 from arc53/dependabot/pip/extensions/slack-bot/pip-75f0befae6
...
chore(deps): bump h11 from 0.14.0 to 0.16.0 in /extensions/slack-bot in the pip group across 1 directory
2026-03-23 01:48:58 +05:30
dependabot[bot]
02804fecce
chore(deps): bump h11
...
Bumps the pip group with 1 update in the /extensions/slack-bot directory: [h11](https://github.com/python-hyper/h11 ).
Updates `h11` from 0.14.0 to 0.16.0
- [Commits](https://github.com/python-hyper/h11/compare/v0.14.0...v0.16.0 )
---
updated-dependencies:
- dependency-name: h11
dependency-version: 0.16.0
dependency-type: direct:production
dependency-group: pip
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-22 19:41:56 +00:00
Siddhant Rai
324a8cd4cf
refactor: update styles and improve accessibility across frontend
...
- Updated text colors to use foreground and muted-foreground for better contrast.
- Replaced hardcoded colors with theme-based classes for consistency.
- Enhanced input fields with icons for improved usability.
- Adjusted button styles for a more cohesive design.
- Refactored search input components to use consistent styling and layout.
- Improved layout and spacing in various components for better user experience.
- Updated tool and source titles and subtitles for clarity.
2026-03-20 17:10:27 +05:30
Alex
ce5cd5561a
loading animation
2026-03-19 15:52:27 +00:00
Manish Madan
adeefce9aa
(fix)widget: since v6 shouldForwardProp is no longer provided by default ( #2312 )
2026-03-18 15:32:36 +00:00
Alex
5ab43fd12c
fix: lang overflows, sst ( #2314 )
2026-03-18 14:50:29 +00:00
Alex
5894e47189
Agents.md
2026-03-18 00:34:26 +00:00
Manish Madan
ca61d81f4a
Merge pull request #2154 from arc53/dependabot/npm_and_yarn/extensions/react-widget/typescript-5.9.3
...
chore(deps-dev): bump typescript from 5.4.5 to 5.9.3 in /extensions/react-widget
2026-03-18 01:43:16 +05:30
Alex
b12d0ca7b1
screenshot memo on contributing md
2026-03-17 19:45:37 +00:00
Alex
21996af626
stt init ( #2306 )
...
* stt init
* fix: limits
* fix: errors
* fix: error messages
2026-03-17 14:27:48 +00:00
ManishMadan2882
cc3b174e5a
Merge branch 'dependabot/npm_and_yarn/extensions/react-widget/typescript-5.9.3' of https://github.com/arc53/docsgpt into dependabot/npm_and_yarn/extensions/react-widget/typescript-5.9.3
2026-03-16 17:08:06 +05:30
dependabot[bot]
faee58fb1e
chore(deps-dev): bump typescript in /extensions/react-widget
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.4.5 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.4.5...v5.9.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.3
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-16 11:37:27 +00:00
Manish Madan
d439e48b39
Merge pull request #2151 from arc53/dependabot/npm_and_yarn/extensions/react-widget/flow-bin-0.290.0
...
chore(deps): bump flow-bin from 0.229.2 to 0.290.0 in /extensions/react-widget
2026-03-16 17:05:33 +05:30
ManishMadan2882
3f0f155d64
Merge branch 'dependabot/npm_and_yarn/extensions/react-widget/flow-bin-0.290.0' of https://github.com/arc53/docsgpt into dependabot/npm_and_yarn/extensions/react-widget/flow-bin-0.290.0
2026-03-16 17:02:35 +05:30
dependabot[bot]
d82d512319
chore(deps): bump flow-bin in /extensions/react-widget
...
Bumps [flow-bin](https://github.com/flowtype/flow-bin ) from 0.229.2 to 0.290.0.
- [Release notes](https://github.com/flowtype/flow-bin/releases )
- [Commits](https://github.com/flowtype/flow-bin/commits )
---
updated-dependencies:
- dependency-name: flow-bin
dependency-version: 0.290.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-16 11:29:26 +00:00
Manish Madan
76aea1716f
Merge pull request #2150 from arc53/dependabot/npm_and_yarn/extensions/react-widget/babel-loader-10.0.0
...
chore(deps-dev): bump babel-loader from 8.3.0 to 10.0.0 in /extensions/react-widget
2026-03-16 16:57:38 +05:30
ManishMadan2882
586649b73f
(chore) react-widget: peer deps update
2026-03-16 16:56:02 +05:30
dependabot[bot]
0349a79cb3
chore(deps-dev): bump babel-loader in /extensions/react-widget
...
Bumps [babel-loader](https://github.com/babel/babel-loader ) from 8.3.0 to 10.0.0.
- [Release notes](https://github.com/babel/babel-loader/releases )
- [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel-loader/compare/v8.3.0...v10.0.0 )
---
updated-dependencies:
- dependency-name: babel-loader
dependency-version: 10.0.0
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-15 21:30:12 +00:00
Manish Madan
78a255bdd7
Merge pull request #2148 from arc53/dependabot/npm_and_yarn/extensions/react-widget/radix-ui/react-icons-1.3.2
...
chore(deps): bump @radix-ui/react-icons from 1.3.0 to 1.3.2 in /extensions/react-widget
2026-03-16 02:58:35 +05:30
ManishMadan2882
5b30e71aa1
(chore)deps fe and react-widget: audit fix
2026-03-16 02:24:02 +05:30
ManishMadan2882
99d84aece9
Merge branch 'dependabot/npm_and_yarn/extensions/react-widget/radix-ui/react-icons-1.3.2' of https://github.com/arc53/docsgpt into dependabot/npm_and_yarn/extensions/react-widget/radix-ui/react-icons-1.3.2
2026-03-16 01:57:14 +05:30
dependabot[bot]
525d8eb66d
chore(deps): bump @radix-ui/react-icons in /extensions/react-widget
...
Bumps @radix-ui/react-icons from 1.3.0 to 1.3.2.
---
updated-dependencies:
- dependency-name: "@radix-ui/react-icons"
dependency-version: 1.3.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-15 20:25:18 +00:00
Manish Madan
4c810108e0
Merge pull request #2145 from arc53/dependabot/npm_and_yarn/frontend/lint-staged-16.2.6
...
chore(deps-dev): bump lint-staged from 15.5.2 to 16.2.6 in /frontend
2026-03-16 01:41:34 +05:30
dependabot[bot]
fc03cdc76a
chore(deps-dev): bump lint-staged from 15.5.2 to 16.2.6 in /frontend
...
Bumps [lint-staged](https://github.com/lint-staged/lint-staged ) from 15.5.2 to 16.2.6.
- [Release notes](https://github.com/lint-staged/lint-staged/releases )
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md )
- [Commits](https://github.com/lint-staged/lint-staged/compare/v15.5.2...v16.2.6 )
---
updated-dependencies:
- dependency-name: lint-staged
dependency-version: 16.2.6
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-15 20:09:03 +00:00
Manish Madan
9779a563f3
Merge pull request #2144 from arc53/dependabot/npm_and_yarn/frontend/vitejs/plugin-react-5.1.0
...
chore(deps-dev): bump @vitejs/plugin-react from 4.7.0 to 5.1.0 in /frontend
2026-03-16 01:36:30 +05:30
ManishMadan2882
6141c3c348
(chore:deps) fe, vite up
2026-03-16 01:34:24 +05:30
dependabot[bot]
c3726ddfc9
chore(deps-dev): bump @vitejs/plugin-react in /frontend
...
Bumps [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react ) from 4.7.0 to 5.1.0.
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases )
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@5.1.0/packages/plugin-react )
---
updated-dependencies:
- dependency-name: "@vitejs/plugin-react"
dependency-version: 5.1.0
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-15 19:03:36 +00:00
Manish Madan
10eaa8143e
Merge pull request #2143 from arc53/dependabot/npm_and_yarn/frontend/tailwindcss-4.1.17
...
chore(deps-dev): bump tailwindcss from 4.1.16 to 4.1.17 in /frontend
2026-03-16 00:31:39 +05:30
dependabot[bot]
0c4f4e1f0c
chore(deps-dev): bump tailwindcss from 4.1.16 to 4.1.17 in /frontend
...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss ) from 4.1.16 to 4.1.17.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.17/packages/tailwindcss )
---
updated-dependencies:
- dependency-name: tailwindcss
dependency-version: 4.1.17
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-15 18:56:49 +00:00
Manish Madan
b225c3cd80
Merge pull request #2149 from arc53/dependabot/npm_and_yarn/frontend/i18next-25.6.1
...
chore(deps): bump i18next from 25.6.0 to 25.6.1 in /frontend
2026-03-16 00:24:57 +05:30
dependabot[bot]
b558645d6b
chore(deps): bump i18next from 25.6.0 to 25.6.1 in /frontend
...
Bumps [i18next](https://github.com/i18next/i18next ) from 25.6.0 to 25.6.1.
- [Release notes](https://github.com/i18next/i18next/releases )
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/i18next/compare/v25.6.0...v25.6.1 )
---
updated-dependencies:
- dependency-name: i18next
dependency-version: 25.6.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-15 18:48:31 +00:00
Manish Madan
03b0889b15
Merge pull request #2152 from arc53/dependabot/npm_and_yarn/frontend/react-syntax-highlighter-16.1.0
...
chore(deps): bump react-syntax-highlighter from 15.6.6 to 16.1.0 in /frontend
2026-03-15 19:58:29 +05:30
dependabot[bot]
943fe3651c
chore(deps): bump react-syntax-highlighter in /frontend
...
Bumps [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter ) from 15.6.6 to 16.1.0.
- [Release notes](https://github.com/react-syntax-highlighter/react-syntax-highlighter/releases )
- [Changelog](https://github.com/react-syntax-highlighter/react-syntax-highlighter/blob/master/CHANGELOG.MD )
- [Commits](https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.6...v16.1.0 )
---
updated-dependencies:
- dependency-name: react-syntax-highlighter
dependency-version: 16.1.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-13 22:58:44 +00:00
Siddhant Rai
65e57be4dd
feat: dynamic config rendering + mcp tool enhancement ( #2286 )
...
* feat: enhance modal functionality and configuration handling
- Updated WrapperModal to improve click outside detection for closing the modal.
- Refactored ToolConfig to utilize ConfigFieldSpec for better configuration management.
- Added validation and dynamic handling of configuration fields in ToolConfig.
- Introduced reconnect functionality for MCP tools in the Tools component.
- Enhanced user experience with improved error handling and loading states.
- Updated types for better type safety and clarity in configuration requirements.
* refactor: reorganize imports and improve conditional formatting
* fix: revert API_URL to use backend service name in docker-compose
* feat: add MCP auth status endpoint and integrate into user service and tools
* feat: implement logging for Brave, Postgres, and Telegram tools; add transport sanitization and credential extraction for MCP
---------
Co-authored-by: Alex <a@tushynski.me >
2026-03-13 15:58:50 +00:00
Siddhant Rai
13ad3b5dce
feat: enhance logging and error handling across various tools; update DuckDuckGo dependency ( #2282 )
...
Co-authored-by: Alex <a@tushynski.me >
2026-03-12 16:50:29 +00:00
Manish Madan
918bbf0369
Sharepoint ( #2283 )
...
* feat: add Microsoft Entra ID integration
- Updated .env-template and settings.py for Microsoft Entra ID configuration.
- Enhanced ConnectorsCallback to support SharePoint authentication.
- Introduced SharePointAuth and SharePointLoader classes.
- Added required dependencies in requirements.txt.
* feat: agent templates and seeding premade agents (#1910 )
* feat: agent templates and seeding premade agents
* fix: ensure ObjectId is used for source reference in agent configuration
* fix: improve source handling in DatabaseSeeder and update tool config processing
* feat: add prompt handling in DatabaseSeeder for agent configuration
* Docs premade agents
* link to prescraped docs
* feat: add template agent retrieval and adopt agent functionality
* feat: simplify agent descriptions in premade_agents.yaml added docs
---------
Co-authored-by: Pavel <pabin@yandex.ru >
Co-authored-by: Alex <a@tushynski.me >
* feat: add GitHub access token support and fix file content fetching logic (#2032 )
* feat: add init for Share Point connector module
* chore(deps): bump mermaid from 11.6.0 to 11.12.0 in /frontend
Bumps [mermaid](https://github.com/mermaid-js/mermaid ) from 11.6.0 to 11.12.0.
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.6.0...mermaid@11.12.0 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.12.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* Feat: Notification section (#2033 )
* Feature/Notification-section
* fix notification ui and add local storage variable to save the state
* add notification component to app.tsx
* refactor: remove MICROSOFT_REDIRECT_URI and update SharePointAuth to use CONNECTOR_REDIRECT_BASE_URI
* feat: Add button to cancel LLM response (#1978 )
* feat: Add button to cancel LLM response
- Replace text area with cancel button when loading.
- Add useEffect to change elipsis in cancel button text.
- Add new SVG icon for cancel response.
- Button colors match Figma designs.
* fix: Cancel button UI matches new design
- Delete cancel-response svg.
- Change previous cancel button to match the new Figma design.
- Remove console log in handleCancel function.
* fix: Adjust cancel button rounding
* feat: Update UI for send button
- Add SendArrowIcon component, enables dynamic svg color changes
- Replace original icon
- Update colors and hover effects
* (fix:send-button) minor blink in transition
---------
Co-authored-by: Manish Madan <manishmadan321@gmail.com >
* feat: add SharePoint integration with session validation and UI components
* (feat:oneDrive) file loading for ingestion
* feat(oneDrive): shared user files
* (feat:oneDrive) rm shared file support, as sharedWithMe is degraded
* (feat:sharepoint) shared files for work msa
* (feat:sharepoint) retry on auth failure, decorator
* (fix) tests/ruff
* test: fix sharepoint loader expecting client id
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: Abhishek Malviya <abfeb8@gmail.com >
Co-authored-by: Siddhant Rai <47355538+siiddhantt@users.noreply.github.com >
Co-authored-by: Pavel <pabin@yandex.ru >
Co-authored-by: Alex <a@tushynski.me >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mariam Saeed <69825646+Mariam-Saeed@users.noreply.github.com >
Co-authored-by: Rahul <rahulgithub96@gmail.com >
2026-03-12 14:46:26 +00:00
Alex
5006271abb
fix stream stuff ( #2293 )
2026-03-11 11:43:27 +00:00
Alex
a6625ec5de
fix: mini workflow fixes
2026-02-22 11:10:42 +00:00
Alex
1a2104f474
fix: token calc ( #2285 )
2026-02-20 17:37:47 +00:00
Alex
444abb8283
fix search nextra
2026-02-18 18:03:03 +00:00
Alex
ee86537f21
docs: add llms.txt and enable copy code button in nextra
2026-02-18 17:54:25 +00:00
Alex
17a736a927
docs: migrate to Nextra 4 and Next.js App Router
2026-02-18 17:13:24 +00:00
Alex
6b5779054d
Merge branch 'main' of https://github.com/arc53/DocsGPT
2026-02-17 18:46:35 +00:00
Alex
14296632ef
build(docs): upgrade nextra to v3 and update config
2026-02-17 18:46:28 +00:00
Siddhant Rai
2a3f0e455a
feat: condition node functionality with CEL evaluation in Workflows ( #2280 )
...
* feat: add condition node functionality with CEL evaluation
- Introduced ConditionNode to support conditional branching in workflows.
- Implemented CEL evaluation for state updates and condition expressions.
- Updated WorkflowEngine to handle condition nodes and their execution logic.
- Enhanced validation for workflows to ensure condition nodes have at least two outgoing edges and valid expressions.
- Modified frontend components to support new condition node type and its configuration.
- Added necessary types and interfaces for condition cases and state operations.
- Updated requirements to include cel-python for expression evaluation.
* mini-fixes
* feat(workflow): improve UX
---------
Co-authored-by: Alex <a@tushynski.me >
2026-02-17 17:29:48 +00:00
Pavel
8aa44c415b
Advanced settings ( #2281 )
...
Add additional settings to setup scripts
2026-02-17 11:54:59 +00:00
Manish Madan
0566c41a32
Merge pull request #2279 from yusufazam225/main
...
Fix XSS vulnerability: replace dangerouslySetInnerHTML with safe React rendering in PromptsModal
2026-02-15 19:27:37 +05:30
Manish Madan
876b04c058
Artifacts-backed persistence for Agent “Self” tools (Notes / Todo) + streaming artifact_id support ( #2267 )
...
* (feat:memory) use fs/storage for files
* (feat:todo) artifact_id via sse
* (feat:notes) artifact id return
* (feat:artifact) add get endpoint, store todos with conv id
* (feat: artifacts) fe integration
* feat(artifacts): ui enhancements, notes as mkdwn
* chore(artifacts) updated artifact tests
* (feat:todo_tool) return all todo items
* (feat:tools) use specific tool names in bubble
* feat: add conversationId prop to artifact components in Conversation
* Revert "(feat:memory) use fs/storage for files"
This reverts commit d1ce3bea31 .
* (fix:fe) build fail
2026-02-15 00:08:37 +00:00
Yusuf Azam
b49a5934e2
Fix XSS vulnerability: replace dangerouslySetInnerHTML with safe React rendering
2026-02-14 17:18:52 +05:30
Alex
5fb063914e
fix: frontend lib
2026-02-12 16:01:49 +00:00
Pavel
b9941e29a9
Scrollbar normalize styles ( #2277 )
...
* normalize styles
* Fix agent subhead width
* Dark scrollbar color adjust
* different browser support
---------
Co-authored-by: Alex <a@tushynski.me >
2026-02-12 15:19:42 +00:00
Siddhant Rai
8ef321d784
feat: agent workflow builder ( #2264 )
...
* feat: implement WorkflowAgent and GraphExecutor for workflow management and execution
* refactor: workflow schemas and introduce WorkflowEngine
- Updated schemas in `schemas.py` to include new agent types and configurations.
- Created `WorkflowEngine` class in `workflow_engine.py` to manage workflow execution.
- Enhanced `StreamProcessor` to handle workflow-related data.
- Added new routes and utilities for managing workflows in the user API.
- Implemented validation and serialization functions for workflows.
- Established MongoDB collections and indexes for workflows and related entities.
* refactor: improve WorkflowAgent documentation and update type hints in WorkflowEngine
* feat: workflow builder and managing in frontend
- Added new endpoints for workflows in `endpoints.ts`.
- Implemented `getWorkflow`, `createWorkflow`, and `updateWorkflow` methods in `userService.ts`.
- Introduced new UI components for alerts, buttons, commands, dialogs, multi-select, popovers, and selects.
- Enhanced styling in `index.css` with new theme variables and animations.
- Refactored modal components for better layout and styling.
- Configured TypeScript paths and Vite aliases for cleaner imports.
* feat: add workflow preview component and related state management
- Implemented WorkflowPreview component for displaying workflow execution.
- Created WorkflowPreviewSlice for managing workflow preview state, including queries and execution steps.
- Added WorkflowMiniMap for visual representation of workflow nodes and their statuses.
- Integrated conversation handling with the ability to fetch answers and manage query states.
- Introduced reusable Sheet component for UI overlays.
- Updated Redux store to include workflowPreview reducer.
* feat: enhance workflow execution details and state management in WorkflowEngine and WorkflowPreview
* feat: enhance workflow components with improved UI and functionality
- Updated WorkflowPreview to allow text truncation for better display of long names.
- Enhanced BaseNode with connectable handles and improved styling for better visibility.
- Added MobileBlocker component to inform users about desktop requirements for the Workflow Builder.
- Introduced PromptTextArea component for improved variable insertion and search functionality, including upstream variable extraction and context addition.
* feat(workflow): add owner validation and graph version support
* fix: ruff lint
---------
Co-authored-by: Alex <a@tushynski.me >
2026-02-11 14:15:24 +00:00
Alex
8353f9c649
docs: add guide for OCR configuration and usage
2026-02-10 15:54:27 +00:00
Alex
cb6b3aa406
fix: test google ai
2026-02-09 14:37:36 +00:00
Alex
36c7bd9206
Thinking stream ( #2276 )
...
* feat: stream thinking tokens
* fix: retry bug
* fix test
2026-02-09 14:27:53 +00:00
Alex
fea94379d7
feat: stream thinking tokens ( #2275 )
2026-02-09 13:46:27 +00:00
Alex
e602d941ca
fix: sources display ( #2274 )
...
* fix: sources display
* fix: sources display2
2026-02-05 19:40:35 +00:00
Alex
f41f69a268
docs: add specific Celery startup command for macOS users
2026-02-03 17:33:13 +00:00
Manish Madan
ff72251878
Merge pull request #2268 from IRjSI/frontend-fix
...
fix(frontend): fix the input styling on renaming chat
2026-02-03 16:57:43 +05:30
Alex
7751fb52dd
fix: neon docs mention
2026-02-03 00:23:37 +00:00
Alex
87a44d101d
Update link in README for Neon documentation
2026-02-03 00:16:49 +00:00
Alex
80148f25b6
Update image source in README.md
2026-02-03 00:11:53 +00:00
Alex
8e3e4a8b09
fix: stio mcp
2026-02-02 15:46:19 +00:00
IRjSI
9389b4a1e8
fix(frontend): fix the input styling on renaming chat
2026-01-27 22:33:28 +05:30
Pavel
4245e5bd2e
End 2 end tests ( #2266 )
...
* All endpoints covered
test_integration.py kept for backwards compatability.
tests/integration/run_all.py proposed as alternative to cover all endpoints.
* Linter fixes
2026-01-22 13:11:24 +02:00
Pavel
e7d2af2405
Setup plus env fixes ( #2265 )
...
* fixes setup scripts
fixes to env handling in setup script plus other minor fixes
* Remove var declarations
Declarations such as `LLM_PROVIDER=$LLM_PROVIDER` override .env variables in compose
Similar issue is present in the frontend - need to choose either to switch to separate frontend env or keep as is.
* Manage apikeys in settings
1. More pydantic management of api keys.
2. Clean up of variable declarations from docker compose files, used to block .env imports. Now should be managed ether by settings.py defaults or .env
2026-01-22 12:21:01 +02:00
Alex
4c32a96370
rearrange settings
2026-01-22 00:51:59 +02:00
Alex
f61d112cea
feat: process pdfs synthetically im model does not support file natively ( #2263 )
...
* feat: process pdfs synthetically im model does not support file natively
* fix: small code optimisations
2026-01-15 02:30:33 +02:00
Alex
2c55c6cd9a
fix: tiktoken import in markdown parser
2026-01-12 23:04:20 +00:00
Alex
f1d714b5c1
fix(frontend): replace crypto.randomUUID with custom ID generator
2026-01-12 14:58:37 +00:00
Alex
69d9dc672a
chore(settings): disable Docling OCR by default for text parsing
2026-01-12 12:01:54 +00:00
Alex
9192e010e8
build(docker): add g++ and python3.12-dev to system dependencies
2026-01-12 11:59:37 +00:00
Alex
f24cea0877
docs(models): update provider examples and add native llama.cpp info
2026-01-12 11:56:10 +00:00
Alex
a29bfa7489
fix simple routing ( #2261 )
2026-01-12 13:51:19 +02:00
Manish Madan
2246866a09
Feat: Agents grouped under folders ( #2245 )
...
* chore(dependabot): add react-widget npm dependency updates
* refactor(prompts): init on load, mv to pref slice
* (refactor): searchable dropdowns are separate
* (fix/ui) prompts adjust
* feat(changelog): dancing stars
* (fix)conversation: re-blink bubble past stream
* (fix)endless GET sources, esling err
* (feat:Agents) folders metadata
* (feat:agents) create new folder
* (feat:agent-management) ui
* feat:(agent folders) nesting/sub-folders
* feat:(agent folders)- closer the figma, inline folder inputs
* fix(delete behaviour) refetch agents on delete
* (fix:search) folder context missing
* fix(newAgent) preserve folder context
* feat(agent folders) id preserved im query, navigate
* feat(agents) mobile responsive
* feat(search/agents) lookup for nested agents as well
* (fix/modals) close on outside click
---------
Co-authored-by: GH Action - Upstream Sync <action@github.com >
2026-01-08 18:46:40 +02:00
Alex
7b17fde34a
bump reqs
2026-01-08 11:53:07 +00:00
Alex
df57053613
feat: improve crawlers and update chunk filtering ( #2250 )
2026-01-06 00:52:12 +02:00
Alex
5662be12b5
feat(agent): implement context validation and message truncation ( #2249 )
2026-01-05 19:49:28 +02:00
Ankit Matth
d3e9d66b07
Fixed issue in models name ( #2247 )
2026-01-05 02:02:54 +02:00
Alex
e0bdbcbe38
Update README.md
2026-01-01 16:36:42 +02:00
Alex
05c835ed02
feat: enable OCR for docling when parsing attachments and update file extractor ( #2246 )
2025-12-31 02:08:49 +02:00
Alex
9e7f1ad1c0
Add Amazon S3 support and synchronization features ( #2244 )
...
* Add Amazon S3 support and synchronization features
* refactor: remove unused variable in load_data test
2025-12-30 20:26:51 +02:00
Alex
f910a82683
feat: add unauthorized response handling in StreamResource and bump deps
2025-12-27 14:23:37 +00:00
Alex
d8b7e86f8d
bump dump ( #2233 )
2025-12-26 17:49:03 +02:00
Alex
aef3e0b4bb
chore: update workflow permissions and fix paths in settings ( #2227 )
...
* chore: update workflow permissions and fix paths in settings
* dep
* dep upgraes
2025-12-25 14:26:01 +02:00
Alex
b0eee7be24
Patches ( #2225 )
...
* feat: implement URL validation to prevent SSRF
* feat: add zip extraction security
* ruff fixes
* fix: standardize error messages across API responses
* fix: improve error handling and standardize error messages across multiple routes
* fix: enhance JavaScript string safety in ConnectorCallbackStatus
* fix: improve OAuth error handling and message formatting in MCPOAuthCallback
2025-12-25 02:57:25 +02:00
Alex
197e94302b
Patches ( #2219 )
...
* feat: implement URL validation to prevent SSRF
* feat: add zip extraction security
* ruff fixes
* fix: standardize error messages across API responses
2025-12-24 18:35:57 +02:00
Alex
98e949d2fd
Patches ( #2218 )
...
* feat: implement URL validation to prevent SSRF
* feat: add zip extraction security
* ruff fixes
2025-12-24 17:05:35 +02:00
Alex
83e7a928f1
bump deps
2025-12-23 23:36:15 +00:00
Alex
ccd29b7d4e
feat: implement Docling parsers ( #2202 )
...
* feat: implement Docling parsers
* fix office
* docling-ocr-fix
* Docling smart ocr
* ruff fix
---------
Co-authored-by: Pavel <pabin@yandex.ru >
2025-12-23 18:33:51 +02:00
Siddhant Rai
5b6cfa6ecc
feat: enhance API tool with body serialization and content type handling ( #2192 )
...
* feat: enhance API tool with body serialization and content type handling
* feat: enhance ToolConfig with import functionality and user action management
- Added ImportSpecModal to allow importing actions into the tool configuration.
- Implemented search functionality for user actions with expandable action details.
- Introduced method colors for better visual distinction of HTTP methods.
- Updated APIActionType and ParameterGroupType to include optional 'required' field.
- Refactored action rendering to improve usability and maintainability.
* feat: add base URL input to ImportSpecModal for action URL customization
* feat: update TestBaseAgentTools to include 'required' field for parameters
* feat: standardize API call timeout to DEFAULT_TIMEOUT constant
* feat: add import specification functionality and related translations for multiple languages
---------
Co-authored-by: Alex <a@tushynski.me >
2025-12-23 15:37:44 +02:00
Akash Bhadana
f91846ce2d
docs: Update VECTOR_STORE comment to include pgvector ( #2211 )
...
Co-authored-by: root <root@MD-CG-010>
2025-12-22 18:53:30 +02:00
dependabot[bot]
87e24ab96e
chore(deps): bump elevenlabs from 2.26.1 to 2.27.0 in /application ( #2203 )
...
Bumps [elevenlabs](https://github.com/elevenlabs/elevenlabs-python ) from 2.26.1 to 2.27.0.
- [Release notes](https://github.com/elevenlabs/elevenlabs-python/releases )
- [Commits](https://github.com/elevenlabs/elevenlabs-python/compare/v2.26.1...v2.27.0 )
---
updated-dependencies:
- dependency-name: elevenlabs
dependency-version: 2.27.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-22 12:25:45 +02:00
Alex
40c3e5568c
fix search ( #2210 )
...
* fix search
* fix ruff
2025-12-22 00:51:06 +02:00
Yash
7958d29e13
Fix: Import external-link.svg properly in AgentDetailsModal ( #2191 )
2025-12-19 19:08:56 +02:00
Rahul Badade
a6fafa6a4d
Fix: Autoselect input text box on pageload and conversation reset ( #2177 ) ( #2194 )
...
* Fix: Autoselect input text box on pageload and conversation reset
- Added autoFocus to useEffect dependency array in MessageInput
- Added key prop to MessageInput to force remount on conversation reset
- Implemented refocus after message submission
- Removed duplicate input clearing logic in handleKeyDown
Fixes #2177
* fix: optimize input handling
---------
Co-authored-by: Alex <a@tushynski.me >
2025-12-19 18:57:57 +02:00
JustACodeA
3ad38f53fd
fix: update Node.js version to 22 for Vite compatibility ( #2169 )
...
Updates the frontend Dockerfile from Node 20.6.1 to Node 22 to resolve
compatibility issues with Vite dependencies.
Closes #2157
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-19 18:29:58 +02:00
JustACodeA
d90b1c57e5
feat: add hover animation to conversation context menu button ( #2168 )
...
* feat: add hover animation to conversation context menu button
Adds visual feedback when hovering over the three-dot menu button in conversation tiles.
This makes it clear that the submenu is being targeted rather than the parent item.
Changes:
- Added rounded hover background with smooth transition
- Increased clickable area for better UX
- Supports both light and dark themes
Closes #2097
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
* Update frontend/src/conversation/ConversationTile.tsx
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
---------
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-12-19 18:25:29 +02:00
Alex
a69a0e100f
fix: update dependencies in requirements.txt ( #2201 )
2025-12-19 02:17:59 +02:00
Alex
b0d4576a95
fix: improve error handling in agent webhook worker
2025-12-18 13:27:40 +00:00
Alex
2a4ab3aca1
Fix history leftover ( #2198 )
...
* fix: history leftover
* fix: unbound result
2025-12-17 16:07:14 +02:00
Alex
e0fd11a86e
fix: bump next
2025-12-17 14:06:53 +00:00
Alex
de369f8b5e
fix: history leftover ( #2197 )
2025-12-17 13:07:50 +02:00
Alex
af3e16c4fc
fix: count history tokens from chunks, remove old UI setting limit ( #2196 )
2025-12-17 03:34:17 +02:00
Alex
aacf281222
fix: improve remote embeds ( #2193 )
2025-12-16 13:59:17 +02:00
AbbasSalloum
6d8f083c6f
Adding a feature to paste files you ctrl v ( #2183 )
2025-12-12 11:55:16 +00:00
Mohamed-Abuali
909bc421c0
Bugfix/docs gpt widget behavior ( #2172 )
...
* style(DocsGPTWidget): improve message bubbles and markdown styling
- Adjust max-width for message bubbles to 90% for answers and 80% for questions
- Add overflow-wrap to prevent text overflow in messages
- Update list styling with proper spacing and positioning
- Add responsive font sizing for headings using clamp()
- Implement custom table styling with proper borders and spacing
- Add custom markdown renderer rules for tables
* feat(widget): replace input with textarea for prompt input
Add support for multi-line input and custom scrollbar styling. Implement Enter key submission handling while allowing Shift+Enter for new lines.
* feat(widget): improve textarea auto-resizing and table styling
- Add auto-resizing functionality for prompt textarea with min/max height constraints
- Fix table cell markup (th/td) and improve scrollbar styling
- Add promptRef to manage textarea state and reset after submission
* fix(widget): correct table cell styling and prevent empty submissions
- Fix swapped td/th elements in markdown renderer
- Adjust font weights for table headers and cells
- Add validation to prevent empty message submissions
* (fix) name mkdwn rule as the returned element
---------
Co-authored-by: ManishMadan2882 <manishmadan321@gmail.com >
2025-12-11 01:35:55 +00:00
Alex
d14f04d79c
Update requirements.txt
2025-12-11 00:54:58 +02:00
Alex
e0a9f08632
refactor and deps ( #2184 )
2025-12-10 23:53:59 +02:00
Manish Madan
09e7c1b97f
Fixes: re-blink in converstaion, (refactor) prompts and validate LocalStorage prompts ( #2181 )
...
* chore(dependabot): add react-widget npm dependency updates
* refactor(prompts): init on load, mv to pref slice
* (refactor): searchable dropdowns are separate
* (fix/ui) prompts adjust
* feat(changelog): dancing stars
* (fix)conversation: re-blink bubble past stream
* (fix)endless GET sources, esling err
---------
Co-authored-by: GH Action - Upstream Sync <action@github.com >
2025-12-10 23:53:40 +02:00
Alex
4adffe762a
Update README.md
2025-12-08 16:59:08 +02:00
Alex
9a937d2686
Feat/small optimisation ( #2182 )
...
* optimised ram use + celery
* Remove VITE_EMBEDDINGS_NAME
* fix: timeout on remote embeds
2025-12-05 20:57:39 +02:00
Alex
e68da34c13
feat: implement internal API authentication mechanism
2025-12-04 15:52:45 +00:00
Siddhant Rai
9b9f95710a
feat: agent search functionality with filters and loading states ( #2179 )
...
* feat: implement agent search functionality with filters and loading states
* style: improve layout and styling of agent search input and description
2025-12-04 17:46:37 +02:00
Alex
3352d42414
fix(frontend): use bracket notation for tool variable paths ( #2176 )
2025-11-26 19:12:02 +02:00
JustACodeA
899b30da5e
feat: add German translation ( #2170 )
...
Adds complete German (Deutsch) language support to DocsGPT.
Changes:
- Add de.json with full German translations
- Register German in i18n configuration
- Add German to language selector dropdown
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-26 12:52:23 +02:00
Alex
dc2faf7a7e
fix: webhooks ( #2175 )
2025-11-25 16:08:22 +02:00
Alex
67e0d222d1
fix: model in agents via api ( #2174 )
2025-11-25 13:54:34 +02:00
Alex
17698ce774
feat: context compression ( #2173 )
...
* feat: context compression
* fix: ruff
2025-11-24 12:44:19 +02:00
Alex
7d1c8c008b
Update README.md
2025-11-22 16:42:25 +02:00
Alex
9e58eb02b3
Update .env.development
2025-11-14 19:53:19 +02:00
Siddhant Rai
3f7de867cc
feat: model registry and capabilities for multi-provider support ( #2158 )
...
* feat: Implement model registry and capabilities for multi-provider support
- Added ModelRegistry to manage available models and their capabilities.
- Introduced ModelProvider enum for different LLM providers.
- Created ModelCapabilities dataclass to define model features.
- Implemented methods to load models based on API keys and settings.
- Added utility functions for model management in model_utils.py.
- Updated settings.py to include provider-specific API keys.
- Refactored LLM classes (Anthropic, OpenAI, Google, etc.) to utilize new model registry.
- Enhanced utility functions to handle token limits and model validation.
- Improved code structure and logging for better maintainability.
* feat: Add model selection feature with API integration and UI component
* feat: Add model selection and default model functionality in agent management
* test: Update assertions and formatting in stream processing tests
* refactor(llm): Standardize model identifier to model_id
* fix tests
---------
Co-authored-by: Alex <a@tushynski.me >
2025-11-14 13:13:19 +02:00
dependabot[bot]
2c2bdd37d5
chore(deps-dev): bump typescript in /extensions/react-widget
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.4.5 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.4.5...v5.9.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.3
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-07 15:19:11 +00:00
dependabot[bot]
6a00319c2d
chore(deps): bump flow-bin in /extensions/react-widget
...
Bumps [flow-bin](https://github.com/flowtype/flow-bin ) from 0.229.2 to 0.290.0.
- [Release notes](https://github.com/flowtype/flow-bin/releases )
- [Commits](https://github.com/flowtype/flow-bin/commits )
---
updated-dependencies:
- dependency-name: flow-bin
dependency-version: 0.290.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-07 15:19:00 +00:00
dependabot[bot]
66870279d3
chore(deps): bump @radix-ui/react-icons in /extensions/react-widget
...
Bumps @radix-ui/react-icons from 1.3.0 to 1.3.2.
---
updated-dependencies:
- dependency-name: "@radix-ui/react-icons"
dependency-version: 1.3.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-07 15:18:48 +00:00
Manish Madan
fbf7cf874b
chore(dependabot): add react-widget npm dependency updates ( #2146 )
2025-11-07 17:17:46 +02:00
Manish Madan
ba7278b80f
Merge pull request #2140 from arc53/dependabot/npm_and_yarn/frontend/husky-9.1.7
...
chore(deps-dev): bump husky from 8.0.3 to 9.1.7 in /frontend
2025-11-07 03:02:52 +05:30
ManishMadan2882
9d649de6f9
chore(eslint): migrate to ESLint 9 flat config format
...
- Add eslint.config.js with ESLint 9 flat config format
- Remove deprecated .eslintrc.cjs file
- Remove deprecated .eslintignore file (replaced by ignores in config)
- Maintain all existing ESLint rules and configurations
- Ensure compatibility with Husky 9.1.7
2025-11-07 02:59:51 +05:30
dependabot[bot]
7929afbf58
chore(deps-dev): bump husky from 8.0.3 to 9.1.7 in /frontend
...
Bumps [husky](https://github.com/typicode/husky ) from 8.0.3 to 9.1.7.
- [Release notes](https://github.com/typicode/husky/releases )
- [Commits](https://github.com/typicode/husky/compare/v8.0.3...v9.1.7 )
---
updated-dependencies:
- dependency-name: husky
dependency-version: 9.1.7
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-06 21:27:39 +00:00
Manish Madan
ceaf942e70
Merge pull request #2139 from arc53/dependabot/npm_and_yarn/frontend/eslint-9.39.1
...
chore(deps-dev): bump eslint from 8.57.1 to 9.39.1 in /frontend
2025-11-07 02:33:32 +05:30
dependabot[bot]
f355601a44
chore(deps-dev): bump eslint from 8.57.1 to 9.39.1 in /frontend
...
Bumps [eslint](https://github.com/eslint/eslint ) from 8.57.1 to 9.39.1.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v8.57.1...v9.39.1 )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.39.1
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-06 20:00:14 +00:00
Manish Madan
4ff99a1e86
Merge pull request #2138 from arc53/dependabot/npm_and_yarn/frontend/reduxjs/toolkit-2.10.1
...
chore(deps): bump @reduxjs/toolkit from 2.9.2 to 2.10.1 in /frontend
2025-11-07 01:28:58 +05:30
dependabot[bot]
129084ba92
chore(deps): bump @reduxjs/toolkit from 2.9.2 to 2.10.1 in /frontend
...
Bumps [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit ) from 2.9.2 to 2.10.1.
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases )
- [Commits](https://github.com/reduxjs/redux-toolkit/compare/v2.9.2...v2.10.1 )
---
updated-dependencies:
- dependency-name: "@reduxjs/toolkit"
dependency-version: 2.10.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-06 19:56:28 +00:00
Manish Madan
2288df1293
Merge pull request #2141 from arc53/dependabot/npm_and_yarn/frontend/vite-7.2.0
...
chore(deps-dev): bump vite from 7.1.12 to 7.2.0 in /frontend
2025-11-07 01:05:29 +05:30
Manish Madan
d9dfac55e7
Merge pull request #2134 from arc53/dependabot/npm_and_yarn/frontend/types/mermaid-9.2.0
...
chore(deps-dev): bump @types/mermaid from 9.1.0 to 9.2.0 in /frontend
2025-11-06 17:46:59 +05:30
Nick
404cf4b7c7
Update quickstart.mdx ( #2142 )
...
Added missing **
2025-11-06 12:37:27 +02:00
dependabot[bot]
f1c1fc123b
chore(deps-dev): bump vite from 7.1.12 to 7.2.0 in /frontend
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.12 to 7.2.0.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.2.0/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.2.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-05 20:08:29 +00:00
ManishMadan2882
9f19c7ee4c
Remove deprecated @types/mermaid dependency - mermaid provides its own types
2025-11-05 20:43:47 +05:30
dependabot[bot]
155e74eca1
chore(deps-dev): bump @types/mermaid from 9.1.0 to 9.2.0 in /frontend
...
Bumps [@types/mermaid](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mermaid ) from 9.1.0 to 9.2.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mermaid )
---
updated-dependencies:
- dependency-name: "@types/mermaid"
dependency-version: 9.2.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-05 15:10:19 +00:00
Manish Madan
ea2dc4dbcb
Merge pull request #2133 from arc53/dependabot/npm_and_yarn/frontend/react-i18next-16.2.4
...
chore(deps): bump react-i18next from 15.7.4 to 16.2.4 in /frontend
2025-11-05 20:23:15 +05:30
dependabot[bot]
616edc97de
chore(deps): bump react-i18next from 15.7.4 to 16.2.4 in /frontend
...
Bumps [react-i18next](https://github.com/i18next/react-i18next ) from 15.7.4 to 16.2.4.
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/react-i18next/compare/v15.7.4...v16.2.4 )
---
updated-dependencies:
- dependency-name: react-i18next
dependency-version: 16.2.4
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-05 14:48:28 +00:00
Manish Madan
b017e99c79
Merge pull request #2132 from arc53/dependabot/npm_and_yarn/frontend/eslint-plugin-n-17.23.1
...
chore(deps-dev): bump eslint-plugin-n from 16.6.2 to 17.23.1 in /frontend
2025-11-05 20:14:18 +05:30
dependabot[bot]
f698e9d3e1
chore(deps-dev): bump eslint-plugin-n in /frontend
...
Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n ) from 16.6.2 to 17.23.1.
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases )
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md )
- [Commits](https://github.com/eslint-community/eslint-plugin-n/compare/16.6.2...v17.23.1 )
---
updated-dependencies:
- dependency-name: eslint-plugin-n
dependency-version: 17.23.1
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-05 14:35:17 +00:00
Manish Madan
d366502850
Merge pull request #2131 from arc53/dependabot/npm_and_yarn/frontend/typescript-eslint/parser-8.46.3
...
chore(deps-dev): bump @typescript-eslint/parser from 6.21.0 to 8.46.3 in /frontend
2025-11-05 20:03:59 +05:30
ManishMadan2882
3d6757c170
(chore:lint) relax rules, build fix
2025-11-05 20:02:01 +05:30
Manish Madan
cb8302add8
Fixes shared conversation on cloud version ( #2135 )
...
* (fix:shared) conv as id, not dbref
* (chore) script to migrate dbref to id
* (chore): ruff fix
---------
Co-authored-by: GH Action - Upstream Sync <action@github.com >
2025-11-05 16:08:10 +02:00
dependabot[bot]
9d266e9fad
chore(deps-dev): bump @typescript-eslint/parser in /frontend
...
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) from 6.21.0 to 8.46.3.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.3/packages/parser )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.46.3
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-05 13:45:18 +00:00
Manish Madan
ae94c9d31e
Merge pull request #2130 from arc53/dependabot/npm_and_yarn/frontend/vite-7.1.12
...
chore(deps-dev): bump vite from 6.4.1 to 7.1.12 in /frontend
2025-11-05 19:13:59 +05:30
ManishMadan2882
83ab232dcd
(chore:fe) pkg lock
2025-11-05 19:12:20 +05:30
dependabot[bot]
eea85772a3
chore(deps-dev): bump vite from 6.4.1 to 7.1.12 in /frontend
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 6.4.1 to 7.1.12.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v7.1.12/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.12/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.12
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-05 19:10:27 +05:30
Alex
0fe7e223cc
fix: update Discord invite link across documentation and navigation
2025-11-04 09:27:22 +00:00
Heisenberg Vader
3789d2eb03
Updated the technique for handling multiple file uploads from the user ( #2126 )
...
* Fixed multiple file uploads to be sent through a single request to backend for further processing and storing
* Fixed multiple file uploads to be sent through a single request to backend for further processing and storing
* Fixed multiple file uploads to be sent through a single request to backend for further processing and storing
* Made duplicate multiple keyword fixes
* Added back drag and drop functionality and it keeps the multiple file uploads
2025-11-04 01:12:35 +02:00
Manish Madan
d54469532e
fix: adjust ESLint rules to warnings for strict type checking ( #2129 )
...
- Changed @typescript-eslint/no-explicit-any from error to warning
- Changed @typescript-eslint/no-unused-vars from error to warning
- Allows codebase to pass linting while maintaining code quality checks
- These rules can be gradually enforced as code is refactored
- Verified with npm run build - successful
2025-11-04 01:09:39 +02:00
Manish Madan
9884e51836
Merge pull request #2122 from arc53/dependabot/npm_and_yarn/frontend/prettier-plugin-tailwindcss-0.7.1
...
chore(deps-dev): bump prettier-plugin-tailwindcss from 0.6.13 to 0.7.1 in /frontend
2025-11-03 19:31:30 +05:30
Alex
6626723180
feat: enhance prompt variable handling and add system variable options in prompts modal ( #2128 )
2025-11-03 15:54:13 +02:00
Manish Madan
0c251e066b
Merge pull request #2124 from arc53/dependabot/npm_and_yarn/frontend/eslint-plugin-n-17.23.1
...
chore(deps-dev): bump eslint-plugin-n from 15.7.0 to 17.23.1 in /frontend
2025-11-03 19:22:22 +05:30
dependabot[bot]
0957034bfa
chore(deps-dev): bump prettier-plugin-tailwindcss in /frontend
...
Bumps [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss ) from 0.6.13 to 0.7.1.
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.6.13...v0.7.1 )
---
updated-dependencies:
- dependency-name: prettier-plugin-tailwindcss
dependency-version: 0.7.1
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-03 13:49:34 +00:00
ManishMadan2882
44521cd893
fix: resolve peer dependency conflict with eslint-plugin-n
...
- Downgrade eslint-plugin-n from ^17.23.1 to ^16.6.2
- Ensure compatibility with eslint-config-standard-with-typescript@43.0.1
- eslint-config-standard-with-typescript requires eslint-plugin-n@^15.0.0 || ^16.0.0
- Verified with successful npm install and vite build
2025-11-03 19:19:02 +05:30
dependabot[bot]
b17f846730
chore(deps-dev): bump eslint-plugin-n in /frontend
...
Bumps [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n ) from 15.7.0 to 17.23.1.
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases )
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md )
- [Commits](https://github.com/eslint-community/eslint-plugin-n/compare/15.7.0...v17.23.1 )
---
updated-dependencies:
- dependency-name: eslint-plugin-n
dependency-version: 17.23.1
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-03 13:45:27 +00:00
Manish Madan
6dd32fd4ca
Merge pull request #2111 from arc53/dependabot/npm_and_yarn/frontend/mermaid-11.12.1
...
chore(deps): bump mermaid from 11.12.0 to 11.12.1 in /frontend
2025-11-03 19:14:00 +05:30
dependabot[bot]
b17b1c70b5
chore(deps): bump mermaid from 11.12.0 to 11.12.1 in /frontend
...
Bumps [mermaid](https://github.com/mermaid-js/mermaid ) from 11.12.0 to 11.12.1.
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.12.0...mermaid@11.12.1 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.12.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-11-03 19:07:58 +05:30
Manish Madan
3f5b31fb5f
Merge pull request #2084 from arc53/dependabot/npm_and_yarn/frontend/typescript-eslint/eslint-plugin-8.46.2
...
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.51.0 to 8.46.2 in /frontend
2025-11-03 18:51:23 +05:30
ManishMadan2882
06bda6bd55
fix: resolve peer dependency conflicts in eslint and typescript-eslint packages
...
- Update @typescript-eslint/eslint-plugin from ^8.46.2 to ^6.21.0
- Update @typescript-eslint/parser from ^5.62.0 to ^6.21.0
- Update eslint-config-standard-with-typescript from ^34.0.0 to ^43.0.1
- Ensure all dependencies are compatible without requiring --legacy-peer-deps
- Verified with successful npm install and vite build
2025-11-03 18:47:34 +05:30
Christine Belzie
7dd97821a8
feat: Installing vale(redo) ( #2104 )
...
* docs: setup Vale
Signed-off-by: Christine Belzie <shecoder30@gmail.com >
* adding more content
* chore: add Vale configuration and custom dictionary
* chore: clean up spelling configuration and remove unused vocabularies
* fix: correct file path format for Vale linter configuration
---------
Signed-off-by: Christine Belzie <shecoder30@gmail.com >
Co-authored-by: Alex <a@tushynski.me >
2025-10-31 18:00:09 +02:00
Harshit Ranjan
695191d888
added error saving vector store ( #2081 )
...
* added error saving vector store
* fixed code formating
* added tests for embedding pipeline
2025-10-31 16:29:35 +02:00
dependabot[bot]
1dbcef24c7
chore(deps-dev): bump @typescript-eslint/eslint-plugin in /frontend
...
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ) from 5.51.0 to 8.46.2.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/eslint-plugin )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.46.2
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-10-31 14:04:19 +00:00
Manish Madan
e086c79da0
Merge pull request #1933 from arc53/dependabot/npm_and_yarn/frontend/npm_and_yarn-d56b2ef021
...
chore(deps): bump mermaid from 11.6.0 to 11.10.0 in /frontend in the npm_and_yarn group
2025-10-31 19:32:57 +05:30
dependabot[bot]
6ae8d34b27
chore(deps): bump mermaid in /frontend in the npm_and_yarn group
...
Bumps the npm_and_yarn group in /frontend with 1 update: [mermaid](https://github.com/mermaid-js/mermaid ).
Updates `mermaid` from 11.6.0 to 11.10.0
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.6.0...mermaid@11.10.0 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.10.0
dependency-type: direct:production
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-10-31 19:27:31 +05:30
Manish Madan
2e23e547d3
Merge pull request #1916 from arc53/dependabot/npm_and_yarn/frontend/eslint-plugin-prettier-5.5.4
...
build(deps-dev): bump eslint-plugin-prettier from 5.2.1 to 5.5.4 in /frontend
2025-10-31 19:24:38 +05:30
dependabot[bot]
fa11dc9828
build(deps-dev): bump eslint-plugin-prettier in /frontend
...
Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier ) from 5.2.1 to 5.5.4.
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases )
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/eslint-plugin-prettier/compare/v5.2.1...v5.5.4 )
---
updated-dependencies:
- dependency-name: eslint-plugin-prettier
dependency-version: 5.5.4
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-10-31 19:18:44 +05:30
Manish Madan
673fa70bc5
Merge pull request #1903 from arc53/dependabot/npm_and_yarn/frontend/multi-6fb5dc7d23
...
build(deps): bump react-dom and @types/react-dom in /frontend
2025-10-31 19:16:17 +05:30
dependabot[bot]
a0660a54c1
build(deps): bump react-dom and @types/react-dom in /frontend
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ). These dependencies needed to be updated together.
Updates `react-dom` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-dom )
Updates `@types/react-dom` from 19.1.6 to 19.1.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-version: 19.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: "@types/react-dom"
dependency-version: 19.1.7
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-10-31 19:10:51 +05:30
Manish Madan
1137bf4280
Merge pull request #1864 from arc53/dependabot/npm_and_yarn/frontend/i18next-browser-languagedetector-8.2.0
...
build(deps): bump i18next-browser-languagedetector from 8.0.2 to 8.2.0 in /frontend
2025-10-31 19:10:26 +05:30
dependabot[bot]
da41c898d8
build(deps): bump i18next-browser-languagedetector in /frontend
...
Bumps [i18next-browser-languagedetector](https://github.com/i18next/i18next-browser-languageDetector ) from 8.0.2 to 8.2.0.
- [Changelog](https://github.com/i18next/i18next-browser-languageDetector/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/i18next-browser-languageDetector/compare/v8.0.2...v8.2.0 )
---
updated-dependencies:
- dependency-name: i18next-browser-languagedetector
dependency-version: 8.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-10-31 18:59:21 +05:30
Siddhant Rai
21e5c261ef
feat: template-based prompt rendering with dynamic namespace injection ( #2091 )
...
* feat: template-based prompt rendering with dynamic namespace injection
* refactor: improve template engine initialization with clearer formatting
* refactor: streamline ReActAgent methods and improve content extraction logic
feat: enhance error handling in NamespaceManager and TemplateEngine
fix: update NewAgent component to ensure consistent form data submission
test: modify tests for ReActAgent and prompt renderer to reflect method changes and improve coverage
* feat: tools namespace + three-tier token budget
* refactor: remove unused variable assignment in message building tests
* Enhance prompt customization and tool pre-fetching functionality
* ruff lint fix
* refactor: cleaner error handling and reduce code clutter
---------
Co-authored-by: Alex <a@tushynski.me >
2025-10-31 12:47:44 +00:00
Aqsa Aqeel
a7d61b9d59
feat: implementing the new custom modal design ( #2090 )
...
* feat: implementing the new custom modal design
* feat: added tool variable dropdown
* fix: ui fixes and link fixes
* feat: implemented redisgn for edit prompt modal
* (feat:prompts) matching figma
* (fix:prompts) tool vars
* (fix:promptsModal) responsive; disable save on text
---------
Co-authored-by: Aqsa Aqeel <aqsa.aqeel17@example.com >
Co-authored-by: ManishMadan2882 <manishmadan321@gmail.com >
2025-10-31 12:18:13 +02:00
dorkdiaries9
c5fe25c149
Enhance migration script with logging and error handling ( #2103 )
...
Added logging for migration steps and error handling.
2025-10-29 01:49:47 +02:00
Manish Madan
6a4cb617f9
Frontend audit: Bug fixes and refinements ( #2112 )
...
* (fix:attachements) sep id for redux ops
* (fix:ui) popups, toast, share modal
* (feat:agentsPreview) stable preview, ui fixes
* (fix:ui) light theme icon, sleek scroll
* (chore:i18n) missin keys
* (chore:i18n) missing keys
* (feat:preferrenceSlice) autoclear invalid source from storage
* (fix:general) delete all conv close btn
* (fix:tts) play one at a time
* (fix:tts) gracefully unmount
* (feat:tts) audio LRU cache
* (feat:tts) pointer on hovered area
* (feat:tts) clean text for speach
---------
Co-authored-by: GH Action - Upstream Sync <action@github.com >
2025-10-29 01:47:26 +02:00
Alex
94f70e6de5
refactor(tests): update todo tool tests to use simplified action names and improve key handling
2025-10-28 10:39:35 +00:00
Hanzalah Waheed
ab4ebf9a9d
feat: add bg blur for modals ( #2110 )
...
* feat: add bg blur for modals
* feat: adjust darkness for lightmode
2025-10-28 12:14:37 +02:00
Nikunj Kohli
9f7945fcf5
[UI/UX] Improve image upload experience — add preview & drag-to-reord… ( #2095 )
...
* [UI/UX] Improve image upload experience — add preview & drag-to-reorder in chat section
* chore(chat): remove image previews, keep drag-to-reorder
* chore(chat): prevent attachment drag from triggering upload dropzone
* Revert "chore(chat): prevent attachment drag from triggering upload dropzone"
This reverts commit dd4b96256c .
* (feat:conv) rmv drag-drop on sources
* (feat:msg-input) drop attachments
---------
Co-authored-by: ManishMadan2882 <manishmadan321@gmail.com >
2025-10-27 21:53:18 +02:00
Gayatri K
d8ec3c008c
todo tool feature added to tools ( #1977 )
...
* todo tool feature added to tools
* removed configs
* fix: require user_id on TodoListTool, normalize timestamps, add tests
* lint and tests fixes
* refactor: support multiple todos per user/tool by indexing with todo_id
* modified todo_id to use auto-increamenting integer instead of UUID
* test-case fixes
* feat: fix todos
---------
Co-authored-by: Alex <a@tushynski.me >
2025-10-27 19:09:32 +02:00
Pavel
2f00691246
Merge pull request #2096 from arc53/hacktoberfest-t-shirt-image
...
Update HACKTOBERFEST.md with T-shirt image
2025-10-24 13:15:30 +01:00
Pavel
9b2383b074
Update HACKTOBERFEST.md with T-shirt image
...
Added t-shirt image.
2025-10-24 13:09:23 +01:00
Ritoban Dutta
e4e9910575
fix(ui): use dedicated sidebar open/close icons for better visual feedback of actions ( #2088 )
...
* fix(ui): use dedicated icons for sidebar toggle (panel-left-open/close)
* fix: update sidebar toggle icon colors
2025-10-24 00:25:17 +03:00
Nihar
f448e4a615
add configurable provider in settings.py and update ElevenLabs Api ( #2065 ) ( #2074 )
2025-10-22 19:07:21 +03:00
Manish Madan
c4e8daf50e
Frontend audit: refinements ( #2083 )
...
* (fix:attachements) sep id for redux ops
* (fix:ui) popups, toast, share modal
* (feat:agentsPreview) stable preview, ui fixes
* (fix:ui) light theme icon, sleek scroll
---------
Co-authored-by: GH Action - Upstream Sync <action@github.com >
2025-10-22 12:12:05 +03:00
Hanzalah Waheed
5aa4ec1b9f
fix: cleanup ConversationBubble and fix CopyButton ( #2073 )
...
* fix: rm states for hovering. use tailwind classes instead
* fix: use group hover css intead of states
* chore: no point in having separate defaults if cant be customised
* fix: move default bg colors into conditionals
2025-10-18 21:59:15 +03:00
Siddhant Rai
125ce0aad3
test: implement full API test suite with mongomock and centralized fixtures ( #2068 )
2025-10-17 12:01:14 +03:00
TinTin
ababc9ae04
fix: reduce large margins between list items in answer rendering ( #2058 )
2025-10-16 13:59:45 +03:00
Alex
62ac90746e
fix: improve error handling and loading state in fetchChunks function
2025-10-15 17:33:13 +01:00
Alex
096f6d91a2
fix: handle potential undefined value for selectedDocs in fetchAnswer
2025-10-15 17:12:52 +01:00
jay98
d28ef6b094
Refactor: use async/await in fetchChunks for correct error handling (typescript:S4822) ( #2066 )
2025-10-15 15:52:55 +03:00
Anurag Yadav
8fb945ab09
feedback button to show after message ( #2064 )
2025-10-14 18:52:31 +03:00
jay98
835d71727c
fix: remove redundant conditional operator for file assignment ( #2060 )
2025-10-14 17:35:41 +03:00
Ali Arda Fincan
ce32dd2907
Feat: Agent Token or Request Limiting ( #2041 )
...
* Update routes.py, added token and request limits to create/update agent operations
* added usage limit check to api endpoints
cannot create agents with usage limit right now that will be implemented
* implemented api limiting as either token limiting or request limiting modes
* minor typo & bug fix
2025-10-13 21:32:46 +03:00
Manish Madan
72bc24a490
Chore: deleted unused files, dead code; minor fixes ( #2059 )
...
* (feat:pause-stream) generator exit
* (feat:pause-stream) close request
* (feat:pause-stream) finally close; google anthropic
* (feat:task_status)communicate failure
* (clean:connector) unused routes
* (feat:file-table) missing skeletons
* (chore:fe) purge unused
* (fix:apiKeys) build err
* (chore:settings) clean unused
* merge from main
* (chore:purge) unused fe assets
* (clean:check_docs) unused logic
* (feat:selectedDocs) replace null type
---------
Co-authored-by: GH Action - Upstream Sync <action@github.com >
2025-10-13 19:11:24 +03:00
Siddhant Rai
d6c49bdbf0
test: add agent test coverage and standardize test suite ( #2051 )
...
- Add 104 comprehensive tests for agent system
- Integrate agent tests into CI/CD pipeline
- Standardize tests with @pytest.mark.unit markers
- Fix cross-platform path compatibility
- Clean up unused imports and dependencies
2025-10-13 14:43:35 +03:00
beKool.sh
1805292528
Update README.md ( #2057 )
2025-10-13 13:00:13 +03:00
Nirjas Jakilim
d09ce7e1f7
fixed broken link ( #2054 )
2025-10-12 15:26:05 +03:00
Marco Ponce
a8d2024791
Windows deployment powershell and renamed LLM_PROVIDER and runtime ( #2050 )
...
* Windows deployment powershell and renamed LLM_PROVIDER and runtime
* added LLM_NAME back
* revert changes on docker-compose-hub.yaml
2025-10-12 15:25:42 +03:00
Manish Madan
f0b954dbfb
Upload: communicate failure, minor frontend updates ( #2048 )
...
* (feat:pause-stream) generator exit
* (feat:pause-stream) close request
* (feat:pause-stream) finally close; google anthropic
* (feat:task_status)communicate failure
* (clean:connector) unused routes
* (feat:file-table) missing skeletons
* (fix:apiKeys) build err
---------
Co-authored-by: GH Action - Upstream Sync <action@github.com >
2025-10-10 17:34:02 +03:00
Rahul
50bee7c2b0
feat: Add button to cancel LLM response ( #1978 )
...
* feat: Add button to cancel LLM response
- Replace text area with cancel button when loading.
- Add useEffect to change elipsis in cancel button text.
- Add new SVG icon for cancel response.
- Button colors match Figma designs.
* fix: Cancel button UI matches new design
- Delete cancel-response svg.
- Change previous cancel button to match the new Figma design.
- Remove console log in handleCancel function.
* fix: Adjust cancel button rounding
* feat: Update UI for send button
- Add SendArrowIcon component, enables dynamic svg color changes
- Replace original icon
- Update colors and hover effects
* (fix:send-button) minor blink in transition
---------
Co-authored-by: Manish Madan <manishmadan321@gmail.com >
2025-10-09 12:01:25 +03:00
Mariam Saeed
e7b15b316e
Feat: Notification section ( #2033 )
...
* Feature/Notification-section
* fix notification ui and add local storage variable to save the state
* add notification component to app.tsx
2025-10-09 01:26:10 +03:00
Manish Madan
a4507008c1
complete_stream: Stop response streaming ( #2031 )
...
* (feat:pause-stream) generator exit
* (feat:pause-stream) close request
* (feat:pause-stream) finally close; google anthropic
---------
Co-authored-by: GH Action - Upstream Sync <action@github.com >
2025-10-08 20:37:30 +03:00
Hanzalah Waheed
c5ba85f929
fix(ui): create a var to check for shared metadata obj ( #2040 )
2025-10-08 18:18:54 +03:00
Manish Madan
2e636bd67e
Merge pull request #1970 from arc53/dependabot/npm_and_yarn/frontend/mermaid-11.12.0
...
chore(deps): bump mermaid from 11.6.0 to 11.12.0 in /frontend
2025-10-08 20:42:32 +05:30
dependabot[bot]
4a039f1abf
chore(deps): bump mermaid from 11.6.0 to 11.12.0 in /frontend
...
Bumps [mermaid](https://github.com/mermaid-js/mermaid ) from 11.6.0 to 11.12.0.
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.6.0...mermaid@11.12.0 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.12.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-10-08 15:06:36 +00:00
JeevaRamanathan
434d8e2070
fix spinner to match theme (dark/light) in conversation ( #2044 )
2025-10-08 15:16:44 +03:00
Nihar
160ad2dc79
correct path for storing embeddings model ( #2035 )
2025-10-07 23:01:39 +03:00
Anshuman Payasi
0ec86c2c71
fix: adjust share modal size and spacing ( #2027 )
...
* fix/share-modal-spacing
* fix(share-modal): spacing adjusted for mobile view
2025-10-07 17:11:03 +03:00
Alex
03452ffd9f
feat: add GitHub access token support and fix file content fetching logic ( #2032 )
2025-10-07 16:53:14 +03:00
Siddhant Rai
da6317a242
feat: agent templates and seeding premade agents ( #1910 )
...
* feat: agent templates and seeding premade agents
* fix: ensure ObjectId is used for source reference in agent configuration
* fix: improve source handling in DatabaseSeeder and update tool config processing
* feat: add prompt handling in DatabaseSeeder for agent configuration
* Docs premade agents
* link to prescraped docs
* feat: add template agent retrieval and adopt agent functionality
* feat: simplify agent descriptions in premade_agents.yaml added docs
---------
Co-authored-by: Pavel <pabin@yandex.ru >
Co-authored-by: Alex <a@tushynski.me >
2025-10-07 13:00:14 +03:00
Nihar
8b8e616557
fix: handle missing kwargs in local save_file ( #2017 )
...
Previously, the local save_file function didn’t accept kwargs, causing
a crash when passed extra params. Added support to maintain consistency
with AWS version.
Fixes #2009
2025-10-06 23:55:49 +03:00
Marco Ponce
d260f1a1a6
Made changes to how the documentation is represented including the new 5th option when forking and launching DocsGPT on the inviduals device, as well as updated README.md which has miswording issues saying only 4 options, but now includes the 5th option, detailing and giving an explanation for what that option does and documentation provided. ( #2020 )
2025-10-06 23:50:16 +03:00
Alex
9d452e3b04
feat: enhance MemoryTool and NotesTool with tool_id management and directory renaming tests ( #2026 )
2025-10-06 23:45:47 +03:00
Alex
e012189672
feat: implement MemoryTool with CRUD operations and integrate with MongoDB
2025-10-06 21:09:22 +01:00
Dhairya Parikh
4c31e9a8b1
Add MongoDB-backed NotesTool with CRUD actions and unit tests ( #1982 )
...
* Add MongoDB-backed NotesTool with CRUD actions and unit tests
* NotesTool: enforce single note per user, require decoded_token['sub'] user_id, fix tests
* chore: remove accidentally committed results.txt and ignore it
* fix: remove results.txt, enforce single note per user, add tests
* refactor: update NotesTool actions and tests for clarity and consistency
* refactor: update NotesTool docstring for clarity
* refactor: simplify MCPTool docstring and remove redundant import in test_notes_tool
* lint: fix test
* refactor: remove unused import from test_notes_tool.py
---------
Co-authored-by: Alex <a@tushynski.me >
2025-10-06 19:24:03 +03:00
Alex
7cfc230316
Update README.md
2025-10-06 18:30:47 +03:00
Alex
9605e85f1c
Merge pull request #2004 from Lanthoiba2022/AgentImageFix1
...
Fix #1983 : Agent image fallback added
2025-10-06 14:47:26 +01:00
Alex
498e2b772c
fix: update save_file method to accept additional keyword arguments; enhance AgentImage component with useEffect for dynamic source updates
2025-10-06 14:41:51 +01:00
Manish Madan
dad897da51
Merge pull request #1997 from arc53/dependabot/npm_and_yarn/frontend/i18next-25.5.3
...
build(deps): bump i18next from 24.2.0 to 25.5.3 in /frontend
2025-10-06 16:44:15 +05:30
dependabot[bot]
02ad5f062e
build(deps): bump i18next from 24.2.0 to 25.5.3 in /frontend
...
Bumps [i18next](https://github.com/i18next/i18next ) from 24.2.0 to 25.5.3.
- [Release notes](https://github.com/i18next/i18next/releases )
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/i18next/compare/v24.2.0...v25.5.3 )
---
updated-dependencies:
- dependency-name: i18next
dependency-version: 25.5.3
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-10-06 11:03:35 +00:00
Manish Madan
4eb9471b4f
Merge pull request #2021 from M4cr0Chen/enhance-edit-button-and-response-ui
...
adjusted edit button padding and response box padding & roundness
2025-10-06 13:13:00 +05:30
Zhenghong Chen
b505d207d7
adjusted edit button padding and response box padding & roundness
2025-10-05 16:34:17 -04:00
Alex
3c954bd07f
Merge pull request #2007 from ManishMadan2882/upload-toast
...
Upload Sources: Tasks are notified with UI toasts
2025-10-05 13:49:11 +01:00
ManishMadan2882
c00b6459dc
(fix:upload) set docs
2025-10-05 18:07:21 +05:30
ManishMadan2882
eb4d776784
(feat:upload) wording, icons and rmv clear button
2025-10-05 16:12:58 +05:30
Alex
5d7a890533
Merge pull request #2015 from JeevaRamanathan/fix/twitter-navigation-link
...
chore: update twitter.com to x.com
2025-10-04 21:50:47 +01:00
JeevaRamanathan
9c6aefef1e
chore: update twitter.com to x.com for avoiding redirection
...
Signed-off-by: JeevaRamanathan <jeevaramanathan.m@infosys.com >
2025-10-05 02:00:57 +05:30
ManishMadan2882
e4554d6c09
Merge branch 'main' of https://github.com/arc53/DocsGPT into upload-toast
2025-10-03 23:26:32 +05:30
ManishMadan2882
c184b63df8
(feat:upload) i18n
2025-10-03 20:32:43 +05:30
ManishMadan2882
6bb4195393
(feat:upload) dismiss, but notify on completion
2025-10-03 19:55:41 +05:30
Alex
7827a4d40d
Merge pull request #1960 from jayamrutiya/letmecheck/bug-return-value-not-be-ignored
...
Fix: replace map with for...of loop to avoid ignoring return value (S2201)
2025-10-03 14:15:39 +01:00
ManishMadan2882
f09fa8231a
(feat:upload) new toast UI
2025-10-03 17:08:39 +05:30
Alex
96ff10000d
Merge pull request #1999 from hanzalahwaheed/feat/ui-enhancements
...
Feat: UI enhancements
2025-10-03 10:15:54 +01:00
Alex
9460636867
Merge pull request #2005 from siiddhantt/feat/routes-refactor
...
refactor: modularize user API routes into domain-driven structure
2025-10-03 10:03:33 +01:00
Siddhant Rai
6c43245295
refactor: organize import statements for clarity and consistency
2025-10-03 12:41:03 +05:30
Pavel
266b6cf638
Fix typo in HACKTOBERFEST.md
2025-10-03 08:09:22 +01:00
Siddhant Rai
70183e234a
refactor: break up monolithic routes.py into modular domain structure
2025-10-03 12:30:04 +05:30
Hanzalah Waheed
17b9c359ca
fix: use hexcode for purple taupe and rm extra props
2025-10-03 00:22:36 +04:00
Lanthoiba22
045630b8a5
Agent image fallback added
2025-10-02 21:53:38 +05:30
Alex
55ff7dd640
Merge pull request #2003 from arc53/hacktoberfest-rules
...
Update HACKTOBERFEST.md
2025-10-02 16:58:22 +01:00
Alex
e6d64f71f2
Update HACKTOBERFEST.md
2025-10-02 16:58:01 +01:00
Alex
e72313ebdd
Merge pull request #2002 from ManishMadan2882/main
...
Frontend Lint
2025-10-02 12:35:59 +01:00
ManishMadan2882
65d5bd72cd
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-10-02 16:59:13 +05:30
ManishMadan2882
dc0cbb41f0
(fix:table) remove display name
2025-10-02 16:50:59 +05:30
ManishMadan2882
c4a54a85be
(lint) fe
2025-10-02 16:30:08 +05:30
Hanzalah Waheed
5b2738aec9
fix (ui): is_copied true, disable hover state
2025-10-02 13:44:05 +04:00
Hanzalah Waheed
892312fc08
fix: hover bg color change fixed using correct css var
2025-10-02 12:23:17 +04:00
Alex
c2ccf2c72c
Merge pull request #2000 from ManishMadan2882/main
...
Test coverage: TTS, Security and Storage layers
2025-10-02 00:11:22 +01:00
ManishMadan2882
80aaecb5f0
ruff-fix
2025-10-02 02:48:16 +05:30
ManishMadan2882
946865a335
test:TTS
2025-10-02 02:40:30 +05:30
ManishMadan2882
5de15c8413
(feat:11Labs) just functional part
2025-10-02 02:39:53 +05:30
ManishMadan2882
67268fd35a
tests:security
2025-10-02 02:34:05 +05:30
ManishMadan2882
42fc771833
tests:storage
2025-10-02 02:33:12 +05:30
Hanzalah Waheed
444b1a0b65
feat(ui): add transition animation to navigation sidebar
2025-10-01 23:16:24 +04:00
Hanzalah Waheed
814ea1c016
fix(ui): add text-32px for smaller than lg view for agent headings
2025-10-01 21:21:23 +04:00
Alex
4d34dc4234
Merge pull request #1996 from arc53/pr/1988
...
Pr/1988
2025-10-01 10:29:20 +01:00
Alex
d567399f2b
Merge pull request #1995 from siiddhantt/fix/agent-sources
...
fix: agent sources and other issues
2025-10-01 10:19:47 +01:00
Alex
77f4f8d8b0
(refactor) update launch configurations and remove obsolete tasks.json
2025-10-01 10:17:52 +01:00
Alex
a2d04beaa1
(refactor) remove redundant source validation in CreateAgent
2025-10-01 10:17:26 +01:00
Siddhant Rai
ba49eea23d
Refactor agent creation and update logic to improve error handling and default values; enhance logging for better traceability
2025-10-01 13:56:31 +05:30
Alex
82beafc086
Merge pull request #1991 from ManishMadan2882/tester
...
Tests: coverage for application/llm/* and application/llm/handlers/* ; fix on parsers/test_markdown
2025-09-30 23:19:38 +01:00
ManishMadan2882
7d8ed2d102
ruff-fix
2025-10-01 02:23:53 +05:30
ManishMadan2882
aab8d3a4f1
Merge branch 'tester' of https://github.com/manishmadan2882/docsgpt into tester
2025-10-01 01:58:52 +05:30
Alex
76658d50a0
Update HACKTOBERFEST.md
2025-09-30 21:46:09 +03:00
Alex
88ba22342c
Update README with Hacktoberfest details and demo
...
Added Hacktoberfest information and a demo GIF.
2025-09-30 21:45:55 +03:00
Alex
11a1460af9
Add Hacktoberfest participation details to HACKTOBERFEST.md
...
This document outlines the participation of DocsGPT in Hacktoberfest, encouraging contributors to submit meaningful pull requests for a chance to win a T-shirt. It includes guidelines for contributions and links to resources.
2025-09-30 21:42:13 +03:00
Alex
2cd4c41316
Merge pull request #1992 from arc53/fix-api-answer-tool-call
...
fix: api answer tool call event
2025-09-30 14:49:57 +01:00
Alex
b910f308f2
fix: api answer tool call event
2025-09-30 14:42:54 +01:00
ManishMadan2882
763aa73ea4
(tests:llm) llms, handlers
2025-09-30 16:03:02 +05:30
Manish Madan
30c79e92d4
Merge branch 'arc53:main' into tester
2025-09-30 15:52:23 +05:30
ManishMadan2882
402d5e054b
(fix:test_markdown) patch tokenizer
2025-09-30 13:35:03 +05:30
Alex
0e211df206
Merge pull request #1988 from ManishMadan2882/tester
...
Test coverage for parsers
2025-09-29 17:42:27 +01:00
ManishMadan2882
e24a0ac686
(test:parsers) github, reddit
2025-09-29 20:33:05 +05:30
ManishMadan2882
8c91b1c527
(tests:parsers) remote
2025-09-29 19:39:24 +05:30
ManishMadan2882
2b38f80d04
(test:files) epub, image, rst
2025-09-29 17:39:20 +05:30
ManishMadan2882
282bd35f52
(test:files) html, md, json
2025-09-29 17:23:15 +05:30
Alex
cc9b4c2bcb
Merge pull request #1964 from siiddhantt/refine/mcp-tool
...
refactor: oauth + use fastmcp client for handling SSE and different transports in remote mcp
2025-09-26 13:54:40 +01:00
Alex
068ce4970a
Merge branch 'refine/mcp-tool' of https://github.com/siiddhantt/DocsGPT into pr/1964
2025-09-26 13:42:34 +01:00
Alex
cf19165ad8
fix(lint): ruff
2025-09-26 13:42:08 +01:00
Alex
68c479f3a5
Merge branch 'main' into refine/mcp-tool
2025-09-26 13:40:12 +01:00
ManishMadan2882
ba496a772b
(test) doc parsers coverage
2025-09-26 16:07:12 +05:30
Siddhant Rai
3b27db36f2
feat: Implement OAuth flow for MCP server integration
...
- Added MCPOAuthManager to handle OAuth authorization.
- Updated MCPServerSave resource to manage OAuth status and callback.
- Introduced new endpoints for OAuth status and callback handling.
- Enhanced user interface to support OAuth authentication type.
- Implemented polling mechanism for OAuth status in MCPServerModal.
- Updated frontend services and endpoints to accommodate new OAuth features.
- Improved error handling and user feedback for OAuth processes.
2025-09-26 02:44:08 +05:30
Alex
f803def69b
Merge pull request #1976 from ManishMadan2882/main
...
OAuth fix for connector
2025-09-25 10:15:13 +01:00
ManishMadan2882
52065e69a4
ruff
2025-09-25 05:05:59 +05:30
ManishMadan2882
50f5e8a955
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-09-25 04:58:05 +05:30
ManishMadan2882
2d0e97b66d
(feat:oauth) provider as state, not args
2025-09-25 04:55:25 +05:30
Manish Madan
5f3cc5a392
Merge branch 'arc53:main' into main
2025-09-25 03:50:50 +05:30
ManishMadan2882
ac66d77512
(fix:oauth) handle access denied
2025-09-25 03:45:12 +05:30
Alex
50cf653d4a
Merge pull request #1975 from arc53/chunk-fix
...
fix: chunking
2025-09-24 23:05:41 +01:00
Alex
56256051d2
fix: chunking
2025-09-24 22:59:53 +01:00
ManishMadan2882
c0361ff03d
(fix:oauth) user field null
2025-09-25 03:27:16 +05:30
Alex
f153435c08
Merge pull request #1974 from ManishMadan2882/tester
...
Test app fix
2025-09-24 10:12:29 +01:00
Alex
9aa7f22fa6
Merge pull request #1961 from NewAi25/feature-letmecheck-fix-Identica-Sub-Expression
...
Added fix in frontend/src/conversation/ConversationMessages.tsx line…
2025-09-24 09:35:12 +01:00
ManishMadan2882
52b7bda5f8
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt into tester
2025-09-24 02:37:20 +05:30
ManishMadan2882
21aefa2778
(fix:tests.application) attr err
2025-09-23 23:43:50 +05:30
Alex
a89ff71c9e
Update README.md
2025-09-23 12:48:49 +03:00
Alex
4c275816be
Merge pull request #1954 from ManishMadan2882/main
...
Refinements: Files uploaded via Connectors
2025-09-22 21:54:48 +01:00
ManishMadan2882
f8dfbcfc80
(docs) guide gdrive
2025-09-22 20:20:51 +05:30
ManishMadan2882
d317f6473d
(feat:gdrive) upload files only
2025-09-22 20:19:56 +05:30
Siddhant Rai
00b4e133d4
feat: implement OAuth 2.1 integration with custom handlers for fastmcp
2025-09-22 01:31:09 +05:30
ManishMadan2882
b6349e4efb
(fix:gdrive) no api keyneded
2025-09-20 19:55:18 +05:30
ManishMadan2882
6ca3d9585c
(fix:connector) db entry
2025-09-20 19:52:12 +05:30
ManishMadan2882
5935a0283a
(fix:ui)adjust
2025-09-20 19:50:58 +05:30
ManishMadan2882
5400a6ec06
(feat:googlePicker) frontend envars
2025-09-20 00:13:03 +05:30
ManishMadan2882
6574d9cc84
(feat:pickers) ux, code refactor
2025-09-20 00:04:27 +05:30
ManishMadan2882
42b83c5994
(refactor:upload) single schema with validation
2025-09-19 23:55:40 +05:30
ManishMadan2882
896612a5a3
(fix:auth) refresh drive token
2025-09-19 22:57:09 +05:30
ManishMadan2882
0ee875bee4
(fix:gdrive) missing appId in picker
2025-09-18 20:25:20 +05:30
Siddhant Rai
8ce345cd94
feat: refactor MCPTool to use FastMCP client and improve async handling, update transport and authentication configurations
2025-09-17 20:51:32 +05:30
ManishMadan2882
da2f8477e6
(feat:drive) oauth for drive.file scope, picker
2025-09-17 19:37:01 +05:30
jane
82b47b5673
Added fix in frontend/src/conversation/ConversationMessages.tsx line 213
2025-09-16 23:53:06 +05:30
jayamrutiya
7c15a4c7ff
Fix: replace map with forEach to avoid ignoring return value (S2201)
2025-09-16 22:11:55 +05:30
Siddhant Rai
3369b910b4
feat: update MCP request ID generation and enhance response handling for event streams
2025-09-16 20:43:04 +05:30
ManishMadan2882
ec0c4c3b84
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-09-16 14:59:18 +05:30
ManishMadan2882
f74e2c9da1
(feat:filepciker) load inside table, ui
2025-09-16 14:50:58 +05:30
Alex
e26ad3c475
Merge pull request #1947 from siiddhantt/feat/remote-mcp
...
feat: remote mcp
2025-09-15 09:31:36 +01:00
ManishMadan2882
145c3b8ad0
(feat:file picker) table ui
2025-09-15 12:58:45 +05:30
Siddhant Rai
0ff6c6a154
Merge branch 'main' into feat/remote-mcp
2025-09-15 09:53:58 +05:30
Siddhant Rai
641cf5a4c1
feat: skip empty fields in mcp tool call + improve error handling and response
2025-09-11 19:04:10 +05:30
Siddhant Rai
09b9576eef
feat: enhance message and schema cleaning for Google AI integration
2025-09-11 17:54:46 +05:30
ManishMadan2882
18b71ca2f2
(feat:upload) cards for upload types
2025-09-11 13:27:55 +05:30
Alex
e0eb7f456e
Merge pull request #1930 from Ankit-Matth/feature/multi-select-sources
...
Added support for Multi select sources
2025-09-10 17:48:02 +01:00
Siddhant Rai
188d118fc0
refactor: remove unused logging import from routes.py
2025-09-10 22:14:31 +05:30
Siddhant Rai
adcdce8d76
fix: handle invalid chunks value in StreamProcessor and ClassicRAG
2025-09-10 22:10:11 +05:30
Siddhant Rai
b865a7aec1
Merge branch 'main' of https://github.com/siiddhantt/DocsGPT into pr/1930
2025-09-10 20:15:20 +05:30
ManishMadan2882
cec8c72b46
(refactor:uploads) YAGNI
2025-09-10 19:19:40 +05:30
Siddhant Rai
b052e32805
feat: enhance MCP tool configuration handling and authentication logic
2025-09-10 14:15:51 +05:30
Siddhant Rai
816f660be3
fix: enhance MCPTool request handling and tool discovery logic
2025-09-10 13:08:14 +05:30
ManishMadan2882
fc8be45d5a
(feat:sync) confirmation check
2025-09-09 13:08:38 +05:30
ManishMadan2882
e749c936c9
(refactor:uploads) for new ui
2025-09-09 13:07:26 +05:30
ManishMadan2882
b2b9670a23
(feat:connectors) type as connector:file
2025-09-09 00:00:58 +05:30
Siddhant Rai
2f88890c94
feat: add support for multiple sources in agent configuration and update related components
2025-09-08 22:10:08 +05:30
ManishMadan2882
6366663f03
(refactor:uploads) separate file picker
2025-09-08 19:09:19 +05:30
Manish Madan
20fe7dc6d1
Merge branch 'main' into main
2025-09-08 14:19:32 +05:30
Alex
4b9153069e
Merge pull request #1928 from Ankit-Matth/fix/ui-ux-improvements
...
bugfix(ui): several UI/UX updates and fixes
2025-09-05 13:54:09 +01:00
ManishMadan2882
80406d0753
(feat:drive) debounce search, ui/ux
2025-09-05 13:25:36 +05:30
ManishMadan2882
35f4c11784
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-09-05 11:43:18 +05:30
ManishMadan2882
7896526f19
(feat:load_files) search feature
2025-09-05 10:35:23 +05:30
Alex
f7db22edff
Merge pull request #1937 from ManishMadan2882/main
...
Connectors: Google Drive Ingestion
2025-09-04 12:05:15 +01:00
Siddhant Rai
0e4196f036
fix: remove unused tool labels from localization file
2025-09-04 15:19:58 +05:30
Siddhant Rai
1bf6af6eeb
feat: finalize remote mcp
2025-09-04 15:10:12 +05:30
ManishMadan2882
5a9bc6d2bf
(feat:connector) infinite scroll file pick
2025-09-04 08:35:41 +05:30
ManishMadan2882
f7f6042579
(feat:connector) paginate files
2025-09-04 07:58:12 +05:30
ManishMadan2882
c4a598f3d3
(lint-fix) ruff
2025-09-03 19:29:34 +05:30
Siddhant Rai
7c23f43c63
feat: Add MCP Server management functionality
...
- Implemented encryption utility for securely storing sensitive credentials.
- Added MCPServerModal component for managing MCP server configurations.
- Updated AddToolModal to include MCP server management.
- Enhanced localization with new strings for MCP server features.
- Introduced SVG icons for MCP tools in the frontend.
- Created a new settings section for MCP server configurations in the application.
2025-09-03 15:41:59 +05:30
ManishMadan2882
7e2cbdd88c
(feat:connector) redirect url as backend overhead
2025-09-03 09:57:13 +05:30
ManishMadan2882
3b3a04a249
(feat:connector) sync fixes UI, minor refactor
2025-09-02 20:28:23 +05:30
ManishMadan2882
f9b2c95695
(feat:connector) sync, simply re-ingest
2025-09-02 18:06:04 +05:30
ManishMadan2882
c2c18e8319
(feat:connector,fe) sync api, notification
2025-09-02 13:36:41 +05:30
ManishMadan2882
384ad3e0ac
(feat:connector) raw sync flow
2025-09-02 13:34:31 +05:30
ManishMadan2882
8c986aaa7f
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-09-01 12:05:17 +05:30
ManishMadan2882
bb4ea76d30
(fix:connectorTree) path navigation fn
2025-09-01 12:04:58 +05:30
ManishMadan2882
2868e47cf8
(feat:connector) provider metadata, separate fe nested display
2025-08-29 18:05:58 +05:30
GH Action - Upstream Sync
e0adc3e5d5
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-29 01:36:09 +00:00
ManishMadan2882
e55d1a5865
(feat:connector,auth) consider user_id
2025-08-29 02:13:51 +05:30
ManishMadan2882
018273c6b2
(feat:connector) refactor, updated routes FE
2025-08-29 01:06:40 +05:30
Alex
44b8a11c04
Merge pull request #1936 from Ankit-Matth/feature/load-containers-from-dockerhub
...
Speed up scripts by loading containers from docker hub
2025-08-28 14:48:08 +01:00
Siddhant Rai
56e5aba559
fix: correct frontend image name in docker-compose configuration
2025-08-28 18:21:54 +05:30
Alex
46904ccd54
feat: add theme color meta tags for light and dark modes
2025-08-28 11:36:42 +01:00
Siddhant Rai
5b7c7a4471
fix: update Docker images in docker-compose to use 'develop' tag
2025-08-28 12:11:06 +05:30
Siddhant Rai
9da4215d1f
feat: implement Docker Hub integration for building and pushing images in CI/CD workflow
2025-08-28 12:01:04 +05:30
ManishMadan2882
f39ac9945f
(feat:auth) follow connector-session
2025-08-28 00:53:19 +05:30
ManishMadan2882
a0cc2e4d46
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-08-28 00:51:29 +05:30
ManishMadan2882
4065041a9f
(feat:connectors) separate routes, namespace
2025-08-28 00:51:09 +05:30
GH Action - Upstream Sync
f08067a161
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-27 01:36:38 +00:00
Alex
545caacfa3
feat: prevent NUL character ingestion failures
2025-08-26 23:30:57 +01:00
Alex
a06f646637
feat: enhance tool call error handling
2025-08-26 22:37:21 +01:00
ManishMadan2882
578c68205a
(feat:connectors) abstracting auth, base class
2025-08-26 02:46:36 +05:30
ManishMadan2882
f09f1433a9
(feat:connectors) separate layer
2025-08-26 01:38:36 +05:30
ManishMadan2882
15a9e97a1e
(feat:ingest_connectors) spread config params
2025-08-26 00:56:39 +05:30
Ankit Matth
b3af4ee50b
speed up scripts by using docker hub
2025-08-24 08:59:19 +05:30
Ankit Matth
07d59b6640
refactor: use list instead of string parsing
2025-08-23 20:25:29 +05:30
GH Action - Upstream Sync
e25b988dc8
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-23 01:35:35 +00:00
ManishMadan2882
2410bd8654
(fix:driveLoader) folder ingesting
2025-08-22 19:07:52 +05:30
Alex
44d21ab703
fix: passing sources and chunk if agent is shared
2025-08-22 13:36:31 +01:00
Alex
e283957c8f
Fix source field retrieval in SharedAgent to handle DBRef correctly
2025-08-22 11:41:35 +01:00
ManishMadan2882
b1210c4902
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-08-22 13:36:52 +05:30
ManishMadan2882
e7430f0fbc
(feat:googleDrive,fe) file tree
2025-08-22 13:36:32 +05:30
ManishMadan2882
92d6ae54c3
(fix:google-oauth) no explicit datetime compare
2025-08-22 13:35:03 +05:30
ManishMadan2882
f82be23ca9
(feat:ingestion) external drive connect
2025-08-22 13:33:21 +05:30
ManishMadan2882
8c3f75e3e2
(feat:ingestion) google drive loader
2025-08-22 13:32:40 +05:30
GH Action - Upstream Sync
193d59f193
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-22 01:38:59 +00:00
ManishMadan2882
c2bebbaefa
(feat:oauth/drive) raw fe integrate
2025-08-22 03:29:57 +05:30
Alex
7ae5a9c5a5
Refactor diagramId initialization to use a combination of Date.now() and random string for uniqueness
2025-08-21 14:50:37 +01:00
ManishMadan2882
3b69bea23d
(chore:settings)addefault oath creds
2025-08-21 17:02:23 +05:30
ManishMadan2882
ab05726b99
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-08-21 02:46:56 +05:30
ManishMadan2882
b2b04268e9
(feat:drive) oauth flow
2025-08-21 02:46:32 +05:30
Siddhant Rai
bd73fa9ae7
refactor: remove unused abstract method and improve retrievers
2025-08-20 22:25:31 +05:30
Alex
927d10d66e
Update README.md
2025-08-17 12:44:47 +03:00
Alex
b67329623c
Update README.md
2025-08-16 13:51:40 +03:00
Ankit Matth
6f47aa802b
added support for multi select sources
2025-08-16 15:19:19 +05:30
Ankit Matth
3417c73011
fix(ui): resolve multiple UI/UX issues
2025-08-15 10:14:31 +05:30
Alex
6a02bcf15b
Merge pull request #1873 from ManishMadan2882/main
...
Sources are the new Docs
2025-08-13 18:24:35 +01:00
Alex
cd0fbf79a3
Merge pull request #1924 from siiddhantt/feat/agent-schema-response
...
feat: add support for structured output and JSON schema validation
2025-08-13 17:33:29 +01:00
Alex
15d2d0115b
Merge branch 'main' into feat/agent-schema-response
2025-08-13 17:12:26 +01:00
ManishMadan2882
d1a0fe6e91
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-08-13 17:39:59 +05:30
ManishMadan2882
1db80d140f
(fix) search dropdowns
2025-08-13 17:39:39 +05:30
Siddhant Rai
896dcf1f9e
feat: add support for structured output and JSON schema validation
2025-08-13 13:29:51 +05:30
GH Action - Upstream Sync
819a12fb49
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-13 01:45:41 +00:00
Alex
c68273706c
Merge pull request #1920 from hanzalahwaheed/fix/response-bubble-btns
...
fix: always show the response bubble buttons.
2025-08-13 00:14:01 +01:00
Hanzalah Waheed
6bb0cd535a
fix: rm redundant states. track feedback state w prop var
2025-08-13 02:36:58 +04:00
Hanzalah Waheed
cb9ec69cf6
chore: refactor code to use ternary operator for error type check
2025-08-13 02:31:25 +04:00
Hanzalah Waheed
143854fa81
fix: show both like and dislike buttons
2025-08-13 02:11:47 +04:00
ManishMadan2882
2f48a3d7d5
(feat:chunks) consistent path header
2025-08-13 02:53:32 +05:30
ManishMadan2882
ec95dafe1e
(feat:sources) matching the figma
2025-08-13 01:35:23 +05:30
ManishMadan2882
3d1fe724e5
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-08-12 18:05:11 +05:30
ManishMadan2882
5c615d6f2d
(feat:sources) card ui
2025-08-12 18:04:40 +05:30
GH Action - Upstream Sync
d72558eb36
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-12 01:43:57 +00:00
ManishMadan2882
65c33ad915
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-08-12 03:09:13 +05:30
ManishMadan2882
9be128a963
(feat:sources) closer to figma,ux
2025-08-12 03:08:47 +05:30
Hanzalah Waheed
eb05132008
fix: always show the response bubble buttons.
2025-08-12 00:16:21 +04:00
Alex
f94a093e8c
fix: truncate long text fields to prevent overflow in logs and sources
2025-08-11 14:56:31 +01:00
GH Action - Upstream Sync
0d0c2daf64
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-09 01:44:41 +00:00
ManishMadan2882
823d948b25
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-08-08 21:59:01 +05:30
Alex
56831fbcf2
Merge pull request #1917 from ManishMadan2882/fix/agent_prompts
...
Fixes missing attributes on shared agents
2025-08-08 16:30:09 +01:00
ManishMadan2882
bf49b9cb88
(fix/shared_agent)missing main attr
2025-08-08 20:44:09 +05:30
GH Action - Upstream Sync
e01adffbad
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-08 01:54:52 +00:00
Alex
08a5d52d82
Update README.md
2025-08-07 17:20:45 +03:00
ManishMadan2882
fdae235742
(feat:sources) i18n
2025-08-07 12:53:12 +05:30
GH Action - Upstream Sync
9903fad1e9
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-07 01:55:18 +00:00
Alex
14bbd5338d
Merge pull request #1909 from siiddhantt/main
...
fix: remove unnecessary parameter from fetchPreviewAnswer
2025-08-06 19:21:59 +01:00
Siddhant Rai
4a236c2f6f
fix: remove unnecessary parameter from fetchPreviewAnswer
2025-08-06 22:34:06 +05:30
Alex
0a8cdbd7f1
fix: update token selector in FileTreeComponent
2025-08-06 12:44:21 +01:00
Alex
94c49843be
Merge pull request #1906 from arc53/feat/pg-vector
...
feat: implement PGVectorStore for PostgreSQL vector storage
2025-08-06 10:42:34 +01:00
Alex
9281fac898
fix: improve error logging for index creation and add PARSE_IMAGE_REMOTE setting
2025-08-06 10:40:20 +01:00
GH Action - Upstream Sync
0b2736f454
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-06 01:55:04 +00:00
ManishMadan2882
ae116b0d0d
(fix:agentPreview) build err
2025-08-06 02:55:39 +05:30
ManishMadan2882
ba260e3382
(fix:faiss) not save tmp dir
2025-08-06 02:53:39 +05:30
Alex
1282e7687f
fix: add error handling for index creation in user and agents collections
2025-08-05 17:19:06 +01:00
Alex
b1d8266eef
feat: implement PGVectorStore for PostgreSQL vector storage
2025-08-05 13:54:39 +01:00
Alex
7acae6935b
Merge pull request #1905 from arc53/fix-qdrant
...
fix: qdrant issues
2025-08-05 12:26:24 +01:00
Alex
092c01cae7
fix: ruff lint
2025-08-05 12:22:33 +01:00
Alex
56a1066c30
fix: qdrant issues
2025-08-05 12:19:18 +01:00
ManishMadan2882
1356d71839
(lint) ruff fix
2025-08-05 15:37:39 +05:30
ManishMadan2882
1eb011e8c3
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-08-05 15:28:51 +05:30
ManishMadan2882
e349eb28b0
(fix:update_chunk) data integrity, uplod back faiss
2025-08-05 06:31:00 +05:30
ManishMadan2882
b000b235a2
(feat:sources) renamed docs,fe
2025-08-05 05:23:29 +05:30
ManishMadan2882
16fe92282e
(fix:chunks) responsive, editing controls
2025-08-05 03:04:37 +05:30
ManishMadan2882
e218e88cf4
(fix:chunks) alignment and ui
2025-08-04 19:28:15 +05:30
ManishMadan2882
888ea81a32
(feat:fil_management) serialising updates, queue
2025-08-04 17:27:12 +05:30
ManishMadan2882
735fab7640
(feat:storage) sync base
2025-08-04 16:36:38 +05:30
ManishMadan2882
45745c2a47
(feat:docs) skeleton loader
2025-08-04 16:35:24 +05:30
Alex
4caff0fcf6
fix: enhance error logging for malformed request in stream route
2025-08-04 11:41:41 +01:00
Alex
762ea6ce7f
Merge pull request #1866 from arc53/dependabot/npm_and_yarn/frontend/tailwindcss-4.1.11
...
build(deps-dev): bump tailwindcss from 4.1.10 to 4.1.11 in /frontend
2025-08-02 23:49:54 +01:00
ManishMadan2882
8b4f6553f3
(fix:menu) left and right
2025-08-02 02:08:35 +05:30
ManishMadan2882
a61e44d175
(feat:dir_tree) improvement
2025-08-02 01:48:43 +05:30
ManishMadan2882
e1b1558fc9
(feat:storage) rm dir
2025-08-02 00:54:09 +05:30
ManishMadan2882
53225bda4e
(feat:reingestion) spit directories
2025-08-02 00:49:15 +05:30
ManishMadan2882
5212769848
(feat:reingest) UI, polling
2025-08-01 01:25:37 +05:30
ManishMadan2882
d5ded3c9f4
(feat:reingest) eat and spit specific chunks
2025-08-01 01:14:48 +05:30
ManishMadan2882
c92d778894
(feat:chunker) do not combine text
2025-07-31 02:13:55 +05:30
ManishMadan2882
829abd1ad6
(fix:textarea) consistent line indxs
2025-07-30 21:00:00 +05:30
ManishMadan2882
266d256a07
(feat:sources) management, simple re-ingest
2025-07-30 01:57:40 +05:30
Alex
8380cac3e7
Merge pull request #1900 from naaa760/docs/auth-type-configuration
...
Docs: Expand and Clarify AUTH_TYPE Configuration and Authentication Methods (#1882 )
2025-07-28 23:07:40 +01:00
ManishMadan2882
a24652f901
(feat:chunks) update iff changed
2025-07-28 19:35:41 +05:30
ManishMadan2882
2d203d3c70
(fix:chunks)responsive
2025-07-28 18:01:51 +05:30
Alex
48d21600da
Merge pull request #1896 from siiddhantt/feat/rework-answer-routes
...
feat: answer routes re-structure for better maintainability and reuse
2025-07-26 14:18:10 +01:00
ManishMadan2882
2508d0fbb3
(fix:chunks) preserve paths
2025-07-26 00:27:39 +05:30
ManishMadan2882
e90e80c289
(fix:chunks) also count tokens
2025-07-26 00:16:45 +05:30
ManishMadan2882
5e4748f9d9
(fix:faiss) rely on storage abstrct
2025-07-26 00:14:17 +05:30
Siddhant Rai
212952f3e9
fix: allow api call in stream route + get_prompt error
2025-07-25 16:17:18 +05:30
naaa760
f99b6496c5
update
2025-07-25 14:48:49 +05:30
ManishMadan2882
67423d51b9
(feat:chunks) ask to edit, ui
2025-07-25 04:05:06 +05:30
ManishMadan2882
58465ece65
(feat:chunks) server-side filter on search
2025-07-25 01:43:50 +05:30
ManishMadan2882
8ede3a0173
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-07-23 20:48:00 +05:30
ManishMadan2882
ad2f0f8950
(chore:chunks) i18n
2025-07-23 20:47:36 +05:30
Siddhant Rai
76973a4b4c
feat: answer routes re-structure for better maintainability and reuse
2025-07-23 20:07:42 +05:30
GH Action - Upstream Sync
b198e2e029
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-07-23 01:52:41 +00:00
ManishMadan2882
4d6ea401b5
(feat:chunks) line numbered editor
2025-07-23 03:36:18 +05:30
ManishMadan2882
b00c4cc3b6
(feat:chunk) editing mode
2025-07-23 02:22:56 +05:30
Alex
4185e64c65
Merge pull request #1893 from arc53/fix-attachment-bugs
...
fix: replace secure_filename with safe_filename for attachment handling
2025-07-22 16:24:55 +01:00
ManishMadan2882
6eb2c884a2
(refactor) separation in chunks/files view
2025-07-22 19:36:52 +05:30
Alex
6c0362a4cf
fix: replace secure_filename with safe_filename for attachment handling
2025-07-22 12:56:17 +01:00
ManishMadan2882
50b1755a63
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-07-21 16:31:57 +05:30
ManishMadan2882
ff3c7eb5fb
(fix:delete_old) comply with storage abtrctn
2025-07-21 16:31:42 +05:30
ManishMadan2882
3755316d49
(fix:chunks) responsive design
2025-07-21 16:30:30 +05:30
GH Action - Upstream Sync
f952046847
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-07-19 01:47:09 +00:00
Alex
969cdb4a63
Merge pull request #1890 from siiddhantt/feat/enhance-agents
...
feat: enhance prompt selection in new agents
2025-07-18 13:07:45 +01:00
ManishMadan2882
f336d44595
(feat:chunks) search in dir
2025-07-18 15:03:23 +05:30
Siddhant Rai
a53f93c195
feat: enhance dropdown component and prompts integration
2025-07-18 14:02:29 +05:30
GH Action - Upstream Sync
fcb334ce33
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-07-17 01:50:59 +00:00
ManishMadan2882
8ddf04a904
(feat:chunks) use common header, navigate
2025-07-17 03:08:01 +05:30
ManishMadan2882
29698ca169
(feat:chunks) redesigned
2025-07-17 02:16:40 +05:30
ManishMadan2882
a9baf7436a
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-07-17 01:05:59 +05:30
ManishMadan2882
99a8962183
(fix/docs) menu event capture
2025-07-17 01:05:24 +05:30
Alex
afc5b15a6b
Merge pull request #1887 from Krrish0902/fix-issue-1854
...
fix: Removed incorrect www from URL in DocsGPT Docs frontend (#1854 )
2025-07-16 13:20:05 +01:00
GH Action - Upstream Sync
b6ab508e27
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-07-16 01:50:25 +00:00
ananthakrishnan
789e65557a
fix: Removed incorrect www from URL in DocsGPT Docs frontend ( #1854 )
2025-07-15 22:02:02 +05:30
ManishMadan2882
8a7806ab2d
(feat:nested source view) file tree, chunks display
2025-07-15 19:15:40 +05:30
Alex
493303e103
Merge pull request #1886 from arc53/copilot/fix-1878
...
🐛 Fix conversation summary prompt to use user query language
2025-07-15 12:57:14 +01:00
ManishMadan2882
1d9af05e9e
(feat:storage) is dir fnc
2025-07-15 15:34:16 +05:30
ManishMadan2882
5b07c5f2e8
(feat:ingestion) unzip, extract and store
2025-07-15 15:31:26 +05:30
copilot-swe-agent[bot]
2a4ec0cf5b
Fix conversation summary prompt to use user query language
...
Co-authored-by: dartpain <15183589+dartpain@users.noreply.github.com >
2025-07-15 09:33:52 +00:00
copilot-swe-agent[bot]
a00c44386e
Initial plan
2025-07-15 09:29:22 +00:00
ManishMadan2882
a38d71bbfb
(feat:get_chunks) filtered by relative path
2025-07-15 13:38:19 +05:30
ManishMadan2882
a24a3f868c
(feat:dir-structure) adding route
2025-07-15 13:38:19 +05:30
ManishMadan2882
f60c516185
(feat:dir_tree) table with folder contents
2025-07-15 13:38:19 +05:30
Manish Madan
26f4646304
Merge branch 'arc53:main' into main
2025-07-14 23:02:36 +05:30
ananthakrishnan
3a351f67e6
fix: correct agent tools name when creating new agent ( #1877 )
2025-07-14 20:20:55 +05:30
dependabot[bot]
e7c09cb91e
build(deps-dev): bump tailwindcss from 4.1.10 to 4.1.11 in /frontend
...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss ) from 4.1.10 to 4.1.11.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.11/packages/tailwindcss )
---
updated-dependencies:
- dependency-name: tailwindcss
dependency-version: 4.1.11
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-07-14 09:02:48 +00:00
Alex
ae1a6ef303
Merge pull request #1883 from siiddhantt/feat/agent-validation-enhance
...
feat: improve interactivity of publishing/drafting of agents
2025-07-14 09:58:12 +01:00
Siddhant Rai
2ff477a339
feat(agent): enhance validation for agent creation by checking required and invalid fields
2025-07-14 12:53:09 +05:30
Siddhant Rai
793f3fb683
refactor(NewAgent): remove debug logs
2025-07-12 12:36:18 +05:30
Siddhant Rai
a472ee7602
feat: add validation for required fields and improve agent creation logic
2025-07-12 12:30:00 +05:30
GH Action - Upstream Sync
c62040e232
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-07-11 01:49:09 +00:00
Alex
2e7cb510ae
Update README.md
2025-07-10 17:27:08 +03:00
Alex
dbe45904d7
Merge pull request #1881 from siiddhantt/fix/glacier-images
...
fix: s3 storage class for image upload
2025-07-10 12:00:55 +01:00
Siddhant Rai
5623734276
feat(storage): enhance save_file method to accept storage class parameter
2025-07-10 15:34:52 +05:30
ManishMadan2882
d3b592bffc
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-07-09 01:29:59 +05:30
ManishMadan2882
4fcbdae5bf
(feat:docs) cards UI
2025-07-08 02:46:34 +05:30
ManishMadan2882
ca95d7275a
(feat:dateTimeUtils) localise weekday format
2025-07-08 02:32:18 +05:30
Manish Madan
61baf3701c
Merge branch 'arc53:main' into main
2025-07-04 02:26:24 +05:30
ManishMadan2882
bbce872ac5
(fix:chunker) combine metadata as well
2025-07-04 02:19:58 +05:30
ManishMadan2882
0f7ebcd8e4
(feat:dir-reader) store mime types, file size in db
2025-07-03 18:09:19 +05:30
ManishMadan2882
82fc19e7b7
(fix:dir-reader) conflict of same filename in dir
2025-07-03 17:28:12 +05:30
Alex
839a12bed4
Merge pull request #1869 from siiddhantt/refactor/tools-dict
...
refactor: update user tools dict to use enumeration based key
2025-07-03 12:51:33 +09:00
ManishMadan2882
2ef23fe1b3
(feat:dir-reader) maintain dir structure in db
2025-07-03 01:24:22 +05:30
ManishMadan2882
fd905b1a06
(feat:dir-reader) save tokens with filenames
2025-07-02 16:30:29 +05:30
Siddhant Rai
1372210004
refactor: update user tools dict to use enumeration based key
2025-07-02 10:37:32 +05:30
ManishMadan2882
ade704d065
(refactor:ingestion) pass file path once
2025-07-01 04:00:57 +05:30
Alex
42f48649b9
Merge pull request #1843 from arc53/dependabot/npm_and_yarn/frontend/tailwindcss-4.1.10
...
build(deps-dev): bump tailwindcss from 3.4.17 to 4.1.10 in /frontend
2025-06-28 13:22:47 +09:00
ManishMadan2882
0b08e8b617
(fix:nav) settings gear dimesions
2025-06-27 22:16:01 +05:30
ManishMadan2882
926b2f1a1b
clean
2025-06-25 19:03:24 +05:30
ManishMadan2882
1770a1a45f
Merge branch 'main' of https://github.com/arc53/DocsGPT into dependabot/npm_and_yarn/frontend/tailwindcss-4.1.10
2025-06-25 18:59:51 +05:30
ManishMadan2882
50ed2a64c6
(fix/ddropdown) use complete classNames, interpolation
2025-06-25 18:26:33 +05:30
Alex
2332344988
Merge pull request #1861 from arc53/docs-agents-update
...
Agent docs upd
2025-06-25 09:23:09 +01:00
Alex
7ccc8cdc58
Merge pull request #1855 from siiddhantt/refactor/ddg-brave-tools
...
refactor: ddg and brave tools with sources fix
2025-06-25 09:21:38 +01:00
ManishMadan2882
ecec9f913e
(fix:messageInput) modern tailwind syntx
2025-06-25 02:15:03 +05:30
ManishMadan2882
777f40fc5e
(fix:conflicting global css) layered styles
2025-06-25 01:11:39 +05:30
Pavel
327ae35420
Agent docs upd
...
1. Added a page about interacting with agent API.
2. Added a page about interacting with agent webhooks.
3. Fixed small bug with /api/answer
2025-06-24 16:48:12 +02:00
Siddhant Rai
0d48159da8
feat: enhance modal functionality with reset and confirmation handlers
2025-06-24 02:14:15 +05:30
Siddhant Rai
d36f12a4ea
feat: add DuckDuckGo icon and remove sources skeleton
2025-06-24 02:11:58 +05:30
Siddhant Rai
709488beb1
fix: sources not getting set on stream end
2025-06-23 09:23:18 +05:30
Siddhant Rai
a9e4583695
refactor: use DuckDuckGo and Brave as tools instead of retrievers
2025-06-23 09:22:17 +05:30
ManishMadan2882
4702dec933
(chore:tailwindcss) via upgrade tool
2025-06-22 18:31:26 +05:30
ManishMadan2882
e6352dd691
Revert "build(deps-dev): bump tailwindcss from 3.4.17 to 4.1.10 in /frontend"
...
This reverts commit 240ea3b857 .
2025-06-22 18:16:41 +05:30
dependabot[bot]
240ea3b857
build(deps-dev): bump tailwindcss from 3.4.17 to 4.1.10 in /frontend
...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss ) from 3.4.17 to 4.1.10.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.10/packages/tailwindcss )
---
updated-dependencies:
- dependency-name: tailwindcss
dependency-version: 4.1.10
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-06-22 12:08:36 +00:00
Alex
f0908af3c0
Merge pull request #1829 from arc53/dependabot/npm_and_yarn/frontend/multi-d4a34be08c
...
build(deps): bump react and @types/react in /frontend
2025-06-22 12:07:44 +01:00
ManishMadan2882
6834961dd1
(fix:types) stricter in v19
2025-06-20 23:11:53 +05:30
Alex
b404162364
fix: fallback to OpenAILLMHandler when no handler class is found
2025-06-20 16:08:40 +01:00
Alex
e879ef805f
Merge pull request #1851 from ManishMadan2882/main
...
Fixed conflict while switching conversations, separated concerns
2025-06-20 13:07:24 +01:00
ManishMadan2882
7077ca5e98
(chore/upgrade) migrate to react v19
2025-06-20 17:36:28 +05:30
GH Action - Upstream Sync
a1e6978c8f
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-06-20 01:44:14 +00:00
Alex
584391dd59
Update README.md
2025-06-19 17:34:19 +03:00
dependabot[bot]
bab3ae809c
build(deps): bump react and @types/react in /frontend
...
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react ) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ). These dependencies needed to be updated together.
Updates `react` from 18.3.1 to 19.1.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.1.0/packages/react )
Updates `@types/react` from 18.3.23 to 19.1.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: react
dependency-version: 19.1.0
dependency-type: direct:production
update-type: version-update:semver-major
- dependency-name: "@types/react"
dependency-version: 19.1.6
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-06-19 11:02:29 +00:00
Manish Madan
c78518baf0
Merge pull request #1827 from arc53/dependabot/npm_and_yarn/frontend/react-dropzone-14.3.8
...
build(deps): bump react-dropzone from 14.3.5 to 14.3.8 in /frontend
2025-06-19 16:31:06 +05:30
dependabot[bot]
556d7e0497
build(deps): bump react-dropzone from 14.3.5 to 14.3.8 in /frontend
...
Bumps [react-dropzone](https://github.com/react-dropzone/react-dropzone ) from 14.3.5 to 14.3.8.
- [Release notes](https://github.com/react-dropzone/react-dropzone/releases )
- [Commits](https://github.com/react-dropzone/react-dropzone/compare/v14.3.5...v14.3.8 )
---
updated-dependencies:
- dependency-name: react-dropzone
dependency-version: 14.3.8
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-06-19 10:59:31 +00:00
Manish Madan
2d27936dab
Merge pull request #1826 from arc53/dependabot/npm_and_yarn/frontend/reduxjs/toolkit-2.8.2
...
build(deps): bump @reduxjs/toolkit from 2.5.1 to 2.8.2 in /frontend
2025-06-19 16:27:30 +05:30
GH Action - Upstream Sync
0cc22de545
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-06-19 01:45:04 +00:00
Alex
63f6127049
Revert "Update README.md"
...
This reverts commit 55f60a9fe1 .
2025-06-18 22:26:38 +01:00
Alex
f34e00c986
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-06-18 22:26:19 +01:00
Alex
55f60a9fe1
Update README.md
2025-06-18 22:26:11 +01:00
Alex
7da3618e0c
Update README.md
2025-06-18 22:25:47 +01:00
Alex
56bfa98633
Merge remote-tracking branch 'upstream/main'
2025-06-18 22:18:06 +01:00
Alex
96f6188722
Initial commit
2025-06-18 22:17:23 +01:00
Manish Madan
aa9d359039
Merge branch 'arc53:main' into main
2025-06-19 02:20:08 +05:30
ManishMadan2882
cef5731028
(feat:nav) shut sidebar on click outside
2025-06-19 02:19:29 +05:30
ManishMadan2882
5bc28bd4fd
(fix:prompts) show delete only when possible
2025-06-19 02:18:20 +05:30
ManishMadan2882
55a1d867c3
(refactor/converstationSlice) separate preview
2025-06-19 02:16:03 +05:30
Alex
6c3a79802e
Merge pull request #1849 from siiddhantt/feat/upload-agent-logo
...
feat: enhance agent management with image upload and retrieval
2025-06-18 17:45:51 +01:00
Siddhant Rai
c35c5e0793
Refactor image upload handling and add URL strategy setting
2025-06-18 21:54:44 +05:30
ManishMadan2882
7bc83caa99
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-06-18 19:42:16 +05:30
ManishMadan2882
3aceca63c6
(fix/bubble) evenly padded
2025-06-18 19:41:52 +05:30
ManishMadan2882
9bc166ffd4
(fix:convSlice) append to right conv id
2025-06-18 19:41:20 +05:30
Siddhant Rai
fc01b90007
Add tailwind-merge dependency to package.json and package-lock.json
2025-06-18 19:00:59 +05:30
Siddhant Rai
e35f1d70e4
- Added image upload functionality for agents in the backend and frontend.
...
- Implemented image URL generation based on storage strategy (S3 or local).
- Updated agent creation and update endpoints to handle image files.
- Enhanced frontend components to display agent images with fallbacks.
- New API endpoint to serve images from storage.
- Refactored API client to support FormData for file uploads.
- Improved error handling and logging for image processing.
2025-06-18 18:17:20 +05:30
Siddhant Rai
cab1f3787a
Refactor S3 storage implementation and enhance file handling
...
- Improved code readability by reorganizing imports and formatting.
- Updated S3Storage class to handle file uploads and downloads more efficiently.
- Added a new function to generate image URLs based on settings.
- Enhanced file listing and processing methods for better error handling.
- Introduced a FileUpload component for improved file upload experience in the frontend.
- Updated agent management components to support image uploads and previews.
- Added new SVG assets for UI enhancements.
- Modified API client to support FormData for file uploads.
2025-06-18 18:04:44 +05:30
Alex
bb42f4cbc1
Merge pull request #1846 from ManishMadan2882/main
...
Agents Details: UI update, external links
2025-06-17 14:31:16 +01:00
ManishMadan2882
98dc418a51
(feat:agent-details) redirect on url
2025-06-17 18:30:11 +05:30
ManishMadan2882
322b4eb18c
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-06-17 16:04:33 +05:30
ManishMadan2882
7f1cc30ed8
(feat:agent-details) test, learn more redirects
2025-06-17 16:04:08 +05:30
ManishMadan2882
7b45a6b956
(feat:agentDetails) copy button ui
2025-06-17 12:03:36 +05:30
Alex
e36769e70f
Merge pull request #1844 from ManishMadan2882/main
...
Collapsible Question bubbles
2025-06-15 16:36:37 +01:00
ManishMadan2882
bd4a4cc4af
(feat:question) match design
2025-06-14 02:32:59 +05:30
ManishMadan2882
8343fe63cb
(feat:bubble) collapsable questions
2025-06-14 02:02:36 +05:30
Alex
7d89fb8461
fix: lint
2025-06-13 01:14:09 +01:00
Alex
098955d230
fix paths in docker compose
2025-06-13 01:11:22 +01:00
Alex
d254d14928
Merge pull request #1838 from ManishMadan2882/main
...
Fixes ingestion of file with non-ascii characters in name
2025-06-12 09:52:03 +01:00
GH Action - Upstream Sync
0a3e8ca535
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-06-12 01:43:21 +00:00
ManishMadan2882
b8a10e0962
(fix:ingestion) display names are separate
2025-06-12 00:57:46 +05:30
Alex
0aceda96e4
Merge pull request #1824 from siiddhantt/refactor/llm-handler
...
feat: reorganize LLM handler structure with better abstraction
2025-06-11 17:19:50 +01:00
ManishMadan2882
44b6ec25a2
clean
2025-06-11 21:18:37 +05:30
ManishMadan2882
1b84d1fa9d
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-06-11 21:04:57 +05:30
ManishMadan2882
78d5ed2ed2
(fix:ingestion) uuid for non-ascii filename
2025-06-11 21:04:50 +05:30
ManishMadan2882
142477ab9b
(feat:safe_filename) handles case of non-ascii char
2025-06-11 21:03:38 +05:30
Siddhant Rai
b414f79bc5
fix: adjust width of tool calls display in ConversationBubble component
2025-06-11 19:37:32 +05:30
Siddhant Rai
6e08fe21d0
Merge branch 'refactor/llm-handler' of https://github.com/siiddhantt/DocsGPT into refactor/llm-handler
2025-06-11 19:28:47 +05:30
Siddhant Rai
9b839655a7
refactor: improve tool call result handling and display in conversation components
2025-06-11 19:28:15 +05:30
Siddhant Rai
3353c0ee1d
Merge branch 'main' into refactor/llm-handler
2025-06-11 19:27:33 +05:30
Alex
aaecf52c99
refactor: update docs LLM_NAME and MODEL_NAME to LLM_PROVIDER and LLM_NAME
2025-06-11 12:30:34 +01:00
ManishMadan2882
8b3e960be0
(feat:ingestion) store filepath from now
2025-06-11 16:00:09 +05:30
Siddhant Rai
3351f71813
refactor: tool calls sent when pending and after completion
2025-06-11 12:40:32 +05:30
Alex
7490256303
Merge pull request #1830 from ManishMadan2882/main
...
UI update: attachments in question bubble
2025-06-10 14:46:05 +01:00
ManishMadan2882
041d600e45
(feat:prompts) delete after confirmation
2025-06-10 18:00:11 +05:30
ManishMadan2882
b4e2588a24
(fix:prompts) save when content changes
2025-06-10 17:02:24 +05:30
ManishMadan2882
68dc14c5a1
(feat:attachments) clear after passing
2025-06-10 02:50:07 +05:30
ManishMadan2882
ef35864e16
(fix) type error, ui adjust
2025-06-09 19:50:07 +05:30
ManishMadan2882
c0d385b983
(refactor:attachments) moved to new uploadSlice
2025-06-09 17:10:12 +05:30
ManishMadan2882
b2df431fa4
(feat:attachments) shared conversations route
2025-06-07 20:04:33 +05:30
ManishMadan2882
69a4bd415a
(feat:attachment) message input update
2025-06-06 21:52:51 +05:30
ManishMadan2882
4862548e65
(feat:attach) renaming, semantic identifier names
2025-06-06 21:52:10 +05:30
ManishMadan2882
50248cc9ea
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-06-06 18:55:11 +05:30
ManishMadan2882
430822bae3
(feat:attach)state manage, follow camelCase
2025-06-06 18:54:50 +05:30
Siddhant Rai
dd9d18208d
Merge branch 'main' into refactor/llm-handler
2025-06-06 17:36:31 +05:30
Siddhant Rai
e5b1a71659
refactor: update fallback LLM initialization to use factory method
2025-06-06 17:23:27 +05:30
Siddhant Rai
35f4b13237
refactor: add fallback LLM configuration options to settings
2025-06-06 17:05:15 +05:30
Siddhant Rai
5f5c31cd5b
refactor: enhance LLM fallback handling and streamline method execution
2025-06-06 16:55:57 +05:30
Siddhant Rai
e9530d5ec5
refactor: update env variable names
2025-06-06 15:29:53 +05:30
Siddhant Rai
143f4aa886
refactor: streamline conversation handling and update agent pinning logic
2025-06-06 14:41:44 +05:30
GH Action - Upstream Sync
ece5c8bb31
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-06-06 01:42:12 +00:00
Alex
31baf181a3
fix: default optimisations
2025-06-05 12:21:40 +01:00
ManishMadan2882
3bae30c70c
(fix:messages) attachments are for questions
2025-06-05 03:09:37 +05:30
ManishMadan2882
12b18c6bd1
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-06-05 02:54:51 +05:30
ManishMadan2882
787d9e3bf5
(feat:attachments) ui details in bubble
2025-06-05 02:54:36 +05:30
ManishMadan2882
f325b54895
(fix:get_single_conversation) return attachments with filename
2025-06-05 02:53:43 +05:30
GH Action - Upstream Sync
c5616705b0
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-06-04 01:43:58 +00:00
Alex
c0f693d35d
remove abount
2025-06-03 15:40:16 +01:00
Alex
52a5f132c1
Merge pull request #1814 from siiddhantt/fix/agents-bugs
...
fix: shared agent redirect and pinned agents error
2025-06-03 15:37:20 +01:00
Siddhant Rai
f14eac6d10
Merge branch 'main' into fix/agents-bugs
2025-06-03 19:59:10 +05:30
ManishMadan2882
e90fe117ec
(feat:attachments) render in bubble
2025-06-03 18:05:47 +05:30
Siddhant Rai
381d737d24
fix: correct vectorstore path in get_vectorstore function
2025-06-03 15:14:00 +05:30
ManishMadan2882
7cab5b3b09
(feat:attachments) store filenames in worker
2025-06-03 04:02:41 +05:30
ManishMadan2882
9f911cb5cb
(feat:stream) store attachment_ids for query
2025-06-03 03:30:06 +05:30
dependabot[bot]
3da7cba06c
build(deps): bump @reduxjs/toolkit from 2.5.1 to 2.8.2 in /frontend
...
Bumps [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit ) from 2.5.1 to 2.8.2.
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases )
- [Commits](https://github.com/reduxjs/redux-toolkit/compare/v2.5.1...v2.8.2 )
---
updated-dependencies:
- dependency-name: "@reduxjs/toolkit"
dependency-version: 2.8.2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-06-02 20:27:20 +00:00
Alex
b47af9600f
Merge pull request #1821 from ManishMadan2882/main
...
Chore: Frontend refinements, i18n sync
2025-06-02 10:13:02 +01:00
Siddhant Rai
92c3c707e1
refactor: reorganize LLM handler structure and improve tool call parsing
2025-06-02 12:17:29 +05:30
GH Action - Upstream Sync
5acc54e609
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-06-01 01:58:40 +00:00
Manish Madan
9c6352dd5b
Merge pull request #1823 from arc53/dependabot/npm_and_yarn/docs/next-15.3.3
...
build(deps): bump next from 14.2.26 to 15.3.3 in /docs
2025-05-31 16:08:57 +05:30
GH Action - Upstream Sync
8e29a07df5
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-05-31 01:39:33 +00:00
Manish Madan
bd88cd3a06
Merge pull request #1818 from arc53/dependabot/npm_and_yarn/frontend/eslint-config-prettier-10.1.5
...
build(deps-dev): bump eslint-config-prettier from 9.1.0 to 10.1.5 in /frontend
2025-05-31 02:58:41 +05:30
dependabot[bot]
f371b9702f
build(deps-dev): bump eslint-config-prettier in /frontend
...
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier ) from 9.1.0 to 10.1.5.
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases )
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.1.0...v10.1.5 )
---
updated-dependencies:
- dependency-name: eslint-config-prettier
dependency-version: 10.1.5
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-30 21:25:20 +00:00
Manish Madan
3ff4ae29af
Merge pull request #1817 from arc53/dependabot/npm_and_yarn/frontend/eslint-plugin-react-7.37.5
...
build(deps-dev): bump eslint-plugin-react from 7.37.3 to 7.37.5 in /frontend
2025-05-31 02:53:20 +05:30
dependabot[bot]
eae0f2e7a9
build(deps-dev): bump eslint-plugin-react in /frontend
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.37.3 to 7.37.5.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.37.3...v7.37.5 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-version: 7.37.5
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-30 21:18:03 +00:00
Manish Madan
305a98bb79
Merge pull request #1815 from arc53/dependabot/npm_and_yarn/frontend/react-syntax-highlighter-15.6.1
...
build(deps): bump react-syntax-highlighter from 15.5.0 to 15.6.1 in /frontend
2025-05-31 02:46:15 +05:30
dependabot[bot]
8040a3ed60
build(deps): bump react-syntax-highlighter in /frontend
...
Bumps [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter ) from 15.5.0 to 15.6.1.
- [Release notes](https://github.com/react-syntax-highlighter/react-syntax-highlighter/releases )
- [Changelog](https://github.com/react-syntax-highlighter/react-syntax-highlighter/blob/master/CHANGELOG.MD )
- [Commits](https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/15.5.0...v15.6.1 )
---
updated-dependencies:
- dependency-name: react-syntax-highlighter
dependency-version: 15.6.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-30 21:11:29 +00:00
dependabot[bot]
bb9de7d9b0
build(deps): bump next from 14.2.26 to 15.3.3 in /docs
...
Bumps [next](https://github.com/vercel/next.js ) from 14.2.26 to 15.3.3.
- [Release notes](https://github.com/vercel/next.js/releases )
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js )
- [Commits](https://github.com/vercel/next.js/compare/v14.2.26...v15.3.3 )
---
updated-dependencies:
- dependency-name: next
dependency-version: 15.3.3
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-30 21:10:55 +00:00
Manish Madan
d8e8bc0068
Merge pull request #1765 from arc53/dependabot/npm_and_yarn/frontend/vite-6.3.5
...
build(deps-dev): bump vite from 5.4.14 to 6.3.5 in /frontend
2025-05-31 02:39:41 +05:30
ManishMadan2882
6577e9d852
(chore) peer deps
2025-05-31 02:37:27 +05:30
dependabot[bot]
3f8625c65a
build(deps-dev): bump vite from 5.4.14 to 6.3.5 in /frontend
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 5.4.14 to 6.3.5.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v6.3.5/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 6.3.5
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-30 20:08:19 +00:00
ManishMadan2882
92d69636a7
(fix/ui) minor adjustments
2025-05-30 19:33:07 +05:30
ManishMadan2882
9c28817fba
(chore:i18n) sync all locales
2025-05-30 19:05:01 +05:30
Siddhant Rai
773788fb32
fix: correct vectorstore path and improve file existence checks in FaissStore
2025-05-30 14:30:51 +05:30
Siddhant Rai
a393ad8e04
refactor: standardize string quotes and improve retriever type handling in RetrieverCreator
2025-05-30 12:50:11 +05:30
ManishMadan2882
71d3714347
(fix:nav) tablets behave like mobile, use tailwind breakpoints
2025-05-29 17:17:29 +05:30
ManishMadan2882
b7e1329c13
(feat:chunksModal) i18n, use wrapperModal
2025-05-29 17:15:13 +05:30
ManishMadan2882
59e6d9d10e
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-05-29 15:47:42 +05:30
ManishMadan2882
46efb446fb
(clean:about) purge route
2025-05-29 15:43:58 +05:30
ManishMadan2882
d31e3a54fd
(feat:layout) tablet sidebar behave like mobile
2025-05-29 15:43:00 +05:30
Siddhant Rai
c4e471ac47
fix: ensure shared metadata is displayed only when available in SharedAgentCard
2025-05-29 11:16:38 +05:30
Siddhant Rai
3b8733e085
feat: add tool details resolution and update SharedAgentCard to display tool names
2025-05-29 10:58:49 +05:30
Alex
a7c67d83ca
Merge pull request #1820 from ManishMadan2882/main
...
Chore: Frontend Refinements
2025-05-29 00:53:59 +01:00
ManishMadan2882
8abc1de26d
(feat:hooks) update useMediaQuery
2025-05-29 04:01:47 +05:30
ManishMadan2882
2ca9f708a6
(fix:menu) position smartly
2025-05-29 04:00:25 +05:30
ManishMadan2882
f8f369fbb2
(fix/tools) avoid max width for buttons, i18n
2025-05-29 03:58:34 +05:30
ManishMadan2882
3e9155767b
(fix:input) placeholder overflow
2025-05-29 03:57:11 +05:30
Siddhant Rai
8cd4195657
feat: add SharedAgentCard to display selected agent in Conversation component
2025-05-28 14:25:37 +05:30
Siddhant Rai
ad1a944276
refactor: agents sharing and shared with me logic
2025-05-28 13:58:55 +05:30
ManishMadan2882
02ff4c5657
(fix:menu) larger strings break
2025-05-28 03:29:48 +05:30
ManishMadan2882
b1b27f2dde
(feat:toolConfig) i18n
2025-05-28 01:10:10 +05:30
ManishMadan2882
5097f77469
(feat:toolConfig) ui details, no actions placeholder
2025-05-27 19:02:41 +05:30
Manish Madan
7e826d5002
Merge pull request #1778 from arc53/dependabot/npm_and_yarn/docs/multi-61ed51ac21
...
build(deps): bump estree-util-value-to-estree and remark-reading-time in /docs
2025-05-27 16:37:32 +05:30
dependabot[bot]
fe8143a56c
build(deps): bump estree-util-value-to-estree and remark-reading-time
...
Bumps [estree-util-value-to-estree](https://github.com/remcohaszing/estree-util-value-to-estree ) and [remark-reading-time](https://github.com/mattjennings/remark-reading-time ). These dependencies needed to be updated together.
Updates `estree-util-value-to-estree` from 1.3.0 to 3.4.0
- [Release notes](https://github.com/remcohaszing/estree-util-value-to-estree/releases )
- [Commits](https://github.com/remcohaszing/estree-util-value-to-estree/compare/v1.3.0...v3.4.0 )
Updates `remark-reading-time` from 2.0.1 to 2.0.2
- [Release notes](https://github.com/mattjennings/remark-reading-time/releases )
- [Commits](https://github.com/mattjennings/remark-reading-time/compare/2.0.1...2.0.2 )
---
updated-dependencies:
- dependency-name: estree-util-value-to-estree
dependency-version: 3.4.0
dependency-type: indirect
- dependency-name: remark-reading-time
dependency-version: 2.0.2
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 11:04:37 +00:00
Manish Madan
e5442a713a
Merge pull request #1760 from arc53/dependabot/npm_and_yarn/extensions/react-widget/base-x-3.0.11
...
build(deps-dev): bump base-x from 3.0.9 to 3.0.11 in /extensions/react-widget
2025-05-27 16:32:38 +05:30
dependabot[bot]
1982a46f36
build(deps-dev): bump base-x in /extensions/react-widget
...
Bumps [base-x](https://github.com/cryptocoinjs/base-x ) from 3.0.9 to 3.0.11.
- [Commits](https://github.com/cryptocoinjs/base-x/compare/v3.0.9...v3.0.11 )
---
updated-dependencies:
- dependency-name: base-x
dependency-version: 3.0.11
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 11:02:07 +00:00
Manish Madan
c8c3640baf
Merge pull request #1743 from arc53/dependabot/npm_and_yarn/frontend/vite-5.4.18
...
build(deps-dev): bump vite from 5.4.14 to 5.4.18 in /frontend
2025-05-27 15:52:41 +05:30
dependabot[bot]
fdf47b3f2c
build(deps-dev): bump vite from 5.4.14 to 5.4.18 in /frontend
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 5.4.14 to 5.4.18.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v5.4.18/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 5.4.18
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 10:18:54 +00:00
Manish Madan
93fa4b6a37
Merge pull request #1756 from arc53/dependabot/npm_and_yarn/frontend/multi-08a24af093
...
build(deps): bump react-router and react-router-dom in /frontend
2025-05-27 15:43:27 +05:30
dependabot[bot]
90e9ab70b0
build(deps): bump react-router and react-router-dom in /frontend
...
Bumps [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router ) to 7.5.3 and updates ancestor dependency [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ). These dependencies need to be updated together.
Updates `react-router` from 7.1.1 to 7.5.3
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router@7.5.3/packages/react-router )
Updates `react-router-dom` from 7.1.1 to 7.5.3
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.5.3/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router
dependency-version: 7.5.3
dependency-type: indirect
- dependency-name: react-router-dom
dependency-version: 7.5.3
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 10:10:25 +00:00
Manish Madan
573c2386b7
Merge pull request #1736 from arc53/dependabot/npm_and_yarn/frontend/typescript-5.8.3
...
build(deps-dev): bump typescript from 5.7.2 to 5.8.3 in /frontend
2025-05-27 15:37:53 +05:30
dependabot[bot]
d2176aeeb9
build(deps-dev): bump typescript from 5.7.2 to 5.8.3 in /frontend
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.7.2 to 5.8.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/commits )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.8.3
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 10:04:27 +00:00
Manish Madan
920aec5c3e
Merge pull request #1706 from arc53/dependabot/npm_and_yarn/docs/babel/runtime-7.26.10
...
build(deps): bump @babel/runtime from 7.23.7 to 7.26.10 in /docs
2025-05-27 15:31:39 +05:30
dependabot[bot]
b792c5459a
build(deps): bump @babel/runtime from 7.23.7 to 7.26.10 in /docs
...
Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime ) from 7.23.7 to 7.26.10.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.26.10/packages/babel-runtime )
---
updated-dependencies:
- dependency-name: "@babel/runtime"
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 10:00:19 +00:00
Manish Madan
87fbf05fa1
Merge pull request #1707 from arc53/dependabot/npm_and_yarn/extensions/react-widget/babel/helpers-7.26.10
...
build(deps): bump @babel/helpers from 7.24.6 to 7.26.10 in /extensions/react-widget
2025-05-27 15:28:08 +05:30
dependabot[bot]
67c53250c5
build(deps): bump @babel/helpers in /extensions/react-widget
...
Bumps [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers ) from 7.24.6 to 7.26.10.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.26.10/packages/babel-helpers )
---
updated-dependencies:
- dependency-name: "@babel/helpers"
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 09:55:00 +00:00
Manish Madan
d657eea910
Merge pull request #1705 from arc53/dependabot/npm_and_yarn/docs/babel/helpers-7.26.10
...
build(deps): bump @babel/helpers from 7.24.0 to 7.26.10 in /docs
2025-05-27 15:23:01 +05:30
dependabot[bot]
b5fbb825ed
build(deps): bump @babel/helpers from 7.24.0 to 7.26.10 in /docs
...
Bumps [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers ) from 7.24.0 to 7.26.10.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.26.10/packages/babel-helpers )
---
updated-dependencies:
- dependency-name: "@babel/helpers"
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 09:51:46 +00:00
Manish Madan
d094e7a4c6
Merge pull request #1704 from arc53/dependabot/npm_and_yarn/frontend/babel/runtime-7.26.10
...
build(deps): bump @babel/runtime from 7.25.0 to 7.26.10 in /frontend
2025-05-27 15:19:39 +05:30
dependabot[bot]
945c155b17
build(deps): bump @babel/runtime from 7.25.0 to 7.26.10 in /frontend
...
Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime ) from 7.25.0 to 7.26.10.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.26.10/packages/babel-runtime )
---
updated-dependencies:
- dependency-name: "@babel/runtime"
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 09:44:53 +00:00
Manish Madan
f798072a1e
Merge pull request #1632 from arc53/dependabot/npm_and_yarn/extensions/react-widget/dompurify-3.2.4
...
build(deps): bump dompurify from 3.1.5 to 3.2.4 in /extensions/react-widget
2025-05-27 15:04:39 +05:30
Manish Madan
f967214b57
Merge pull request #1524 from arc53/dependabot/npm_and_yarn/frontend/react-redux-9.2.0
...
build(deps): bump react-redux from 8.1.3 to 9.2.0 in /frontend
2025-05-27 15:03:56 +05:30
dependabot[bot]
d0b92e2540
build(deps): bump react-redux from 8.1.3 to 9.2.0 in /frontend
...
Bumps [react-redux](https://github.com/reduxjs/react-redux ) from 8.1.3 to 9.2.0.
- [Release notes](https://github.com/reduxjs/react-redux/releases )
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md )
- [Commits](https://github.com/reduxjs/react-redux/compare/v8.1.3...v9.2.0 )
---
updated-dependencies:
- dependency-name: react-redux
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 09:25:20 +00:00
dependabot[bot]
8ddfe272bf
build(deps): bump dompurify in /extensions/react-widget
...
Bumps [dompurify](https://github.com/cure53/DOMPurify ) from 3.1.5 to 3.2.4.
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/3.1.5...3.2.4 )
---
updated-dependencies:
- dependency-name: dompurify
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-27 09:20:40 +00:00
Siddhant Rai
b7a6bad7cd
fix: minor bugs and route errors
2025-05-27 13:50:13 +05:30
Alex
e2f6c04406
(fix:AgentDetailsModal) update shared token URL format in AgentDetailsModal
2025-05-24 00:12:31 +01:00
Alex
c662725955
Merge pull request #1812 from ManishMadan2882/main
...
Tools redesign
2025-05-23 23:49:45 +01:00
ManishMadan2882
4b66ddfdef
(fix:config) use default variant for confirm modal
2025-05-24 01:20:57 +05:30
ManishMadan2882
2d55b1f592
(fix:confirmModal) only close modal on click outisde
2025-05-24 01:19:14 +05:30
ManishMadan2882
14adfabf7e
(feat:tools) reflect custom name on ui
2025-05-24 01:17:22 +05:30
Alex
e7a76ede76
Merge pull request #1813 from arc53/react-improve
...
React improve
2025-05-23 15:25:19 +01:00
Alex
de47df3bf9
fix: enhance ReActAgent's reasoning iterations and update planning prompt structure
2025-05-23 15:10:12 +01:00
Alex
5475e6f7c5
fix: enhance ReActAgent's response handling and update planning prompt
2025-05-23 14:21:02 +01:00
ManishMadan2882
8e3f3d74d4
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-05-23 18:22:20 +05:30
ManishMadan2882
046f6c66ed
(feat:tools) warn on unsaved changes, deep compare
2025-05-23 18:22:06 +05:30
Manish Madan
79f9d6552e
Merge branch 'arc53:main' into main
2025-05-23 03:37:53 +05:30
ManishMadan2882
56b4b63749
(fix/tools) custom actions only for api tool, allow delete
2025-05-23 03:36:27 +05:30
ManishMadan2882
b3246a48c7
(fix/addAction) duplicate placeholders
2025-05-23 03:11:54 +05:30
ManishMadan2882
71722ef6a3
(fix/config) correctly placed save btn
2025-05-23 00:57:42 +05:30
ManishMadan2882
ebf8f00302
(fix/input) minor details
2025-05-23 00:56:50 +05:30
Alex
7445928c7e
(fix:stream) handle empty history input and improve user identification
2025-05-22 13:14:10 +01:00
ManishMadan2882
5ab7602f2f
(feat:tools) ask for custom names
2025-05-22 17:14:52 +05:30
ManishMadan2882
a340aff63a
(feat:tools) store custom names
2025-05-22 17:14:05 +05:30
ManishMadan2882
f82042ff00
(feat:config) custom name
2025-05-22 15:27:29 +05:30
ManishMadan2882
920422e28c
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-05-22 15:25:28 +05:30
ManishMadan2882
50d6b7a6f8
(fix/input) placeholder
2025-05-22 15:24:58 +05:30
Alex
41d624a36a
Merge pull request #1810 from ManishMadan2882/main
...
(fix:layout) even action buttons
2025-05-21 18:59:01 +01:00
ManishMadan2882
f42c37c82e
(fix:layout) even action buttons
2025-05-21 23:23:49 +05:30
Alex
119fcdf6f6
Merge pull request #1809 from ManishMadan2882/feat/sources-in-widget
...
(release-widget)0.5.1
2025-05-21 14:04:38 +01:00
ManishMadan2882
a5b093d1a9
(release-widget)0.5.1
2025-05-21 16:36:52 +05:30
Alex
e07cb44a3e
Merge pull request #1806 from arc53/documentation-agents
...
Documentation agents
2025-05-21 11:44:05 +03:00
Alex
fec1bcfd5c
Merge pull request #1789 from ManishMadan2882/main
...
Frontend Fixes
2025-05-21 01:05:47 +03:00
Alex
dbcf658343
Merge pull request #1808 from ManishMadan2882/feat/sources-in-widget
...
Glassmorphic effect on search widget
2025-05-21 01:00:49 +03:00
ManishMadan2882
d89e78c9ca
(feat:search) minor adjust
2025-05-21 02:59:22 +05:30
ManishMadan2882
ec50650dfa
(fix/searchwidget) prominent placeholder, sleek spinner
2025-05-21 02:00:47 +05:30
ManishMadan2882
7432e551f9
(fix/loader) drop on empty input
2025-05-21 01:40:03 +05:30
ManishMadan2882
4ee6bd44d1
(feat:glassy) search widget
2025-05-21 01:26:34 +05:30
Pavel
26f819098d
agents and tools doc update
2025-05-20 20:32:38 +04:00
Alex
a1c79f93d7
Merge pull request #1801 from siiddhantt/feat/agents-enhance
...
feat: enhance agent sharing functionality and UI improvements
2025-05-20 18:40:22 +03:00
GH Action - Upstream Sync
9c1b202d74
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-05-20 01:42:17 +00:00
Pavel
8ad0f59f19
jwt update
2025-05-19 21:12:14 +04:00
Alex
50fbe3d5af
Merge pull request #1798 from arc53/dependabot/pip/application/markdownify-1.1.0
...
build(deps): bump markdownify from 0.14.1 to 1.1.0 in /application
2025-05-19 14:01:13 +03:00
GH Action - Upstream Sync
af40a77d24
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-05-19 01:45:51 +00:00
dependabot[bot]
8af9a5e921
build(deps): bump markdownify from 0.14.1 to 1.1.0 in /application
...
Bumps [markdownify](https://github.com/matthewwithanm/python-markdownify ) from 0.14.1 to 1.1.0.
- [Release notes](https://github.com/matthewwithanm/python-markdownify/releases )
- [Commits](https://github.com/matthewwithanm/python-markdownify/compare/0.14.1...1.1.0 )
---
updated-dependencies:
- dependency-name: markdownify
dependency-version: 1.1.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-18 12:07:13 +00:00
Alex
9807788ecb
Merge pull request #1795 from arc53/dependabot/pip/application/pypdf-5.5.0
...
build(deps): bump pypdf from 5.2.0 to 5.5.0 in /application
2025-05-18 15:05:57 +03:00
dependabot[bot]
5e2f329f15
build(deps): bump pypdf from 5.2.0 to 5.5.0 in /application
...
Bumps [pypdf](https://github.com/py-pdf/pypdf ) from 5.2.0 to 5.5.0.
- [Release notes](https://github.com/py-pdf/pypdf/releases )
- [Changelog](https://github.com/py-pdf/pypdf/blob/main/CHANGELOG.md )
- [Commits](https://github.com/py-pdf/pypdf/compare/5.2.0...5.5.0 )
---
updated-dependencies:
- dependency-name: pypdf
dependency-version: 5.5.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-18 12:02:27 +00:00
Alex
9572a7adaa
Merge pull request #1800 from arc53/dependabot/pip/application/boto3-1.38.18
...
build(deps): bump boto3 from 1.35.97 to 1.38.18 in /application
2025-05-18 15:00:45 +03:00
dependabot[bot]
1ba94f4f5f
build(deps): bump boto3 from 1.35.97 to 1.38.18 in /application
...
Bumps [boto3](https://github.com/boto/boto3 ) from 1.35.97 to 1.38.18.
- [Release notes](https://github.com/boto/boto3/releases )
- [Commits](https://github.com/boto/boto3/compare/1.35.97...1.38.18 )
---
updated-dependencies:
- dependency-name: boto3
dependency-version: 1.38.18
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-18 11:54:08 +00:00
Alex
237afa0a3a
Merge pull request #1799 from arc53/dependabot/pip/application/beautifulsoup4-4.13.4
...
build(deps): bump beautifulsoup4 from 4.12.3 to 4.13.4 in /application
2025-05-18 14:53:01 +03:00
GH Action - Upstream Sync
d80b7017cf
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-05-17 01:38:42 +00:00
Siddhant Rai
56793c8db7
feat: enhance agent sharing functionality and UI improvements
...
- Added shared agents state management in Navigation and AgentsList components.
- Implemented fetching and displaying shared agents in the AgentsList.
- Introduced functionality to hide shared agents with appropriate API integration.
- Updated the SharedAgent component layout for better UI consistency.
- Improved error handling in conversation fetching logic.
- Added new API endpoint for hiding shared agents.
- Updated Redux slice to manage shared agents state.
- Refactored AgentCard and AgentSection components for better code organization and readability.
2025-05-17 05:53:56 +05:30
ManishMadan2882
8edb217943
(fix) source.link is new source.source
2025-05-17 01:41:29 +05:30
ManishMadan2882
23ebcf1065
(fix:all_sources) inlined svg, dom heirarchy
2025-05-17 01:33:37 +05:30
ManishMadan2882
68a5a3d62a
(feat:source_cards) enhance ux
2025-05-17 00:15:42 +05:30
ManishMadan2882
8d7236b0db
(fix:action-buttons) redirect to conversations
2025-05-17 00:07:54 +05:30
ManishMadan2882
96c7daf818
(fix:modals) use portals
2025-05-16 16:15:02 +05:30
Alex
9d8073d468
Merge pull request #1794 from arc53/remove-duplicate-docs
...
remove duplicate chat widget page
2025-05-16 12:45:59 +03:00
ManishMadan2882
fc4942e189
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-05-16 14:33:55 +05:30
ManishMadan2882
ca69d025bd
(fix:agents) adhere to new MessageInput
2025-05-16 14:33:30 +05:30
GH Action - Upstream Sync
ffa428e32a
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-05-16 01:41:33 +00:00
ManishMadan2882
c24e90eaae
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-05-16 04:12:27 +05:30
ManishMadan2882
ab32eff588
(fix/tool_calls) prevent overscroll somehow
2025-05-16 04:09:52 +05:30
ManishMadan2882
7f592f2b35
(fix/layout) prevent overlap in tab screen
2025-05-16 01:56:53 +05:30
dependabot[bot]
3bf7f67adf
build(deps): bump beautifulsoup4 from 4.12.3 to 4.13.4 in /application
...
Bumps [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/ ) from 4.12.3 to 4.13.4.
---
updated-dependencies:
- dependency-name: beautifulsoup4
dependency-version: 4.13.4
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-15 20:15:17 +00:00
Pavel
594ce05292
remove duplicate chat widget page
2025-05-15 21:32:59 +04:00
Alex
fe02ca68d5
fix: update API key for DocsGPTWidget
2025-05-15 18:18:12 +01:00
Alex
21ef27ee9b
Merge pull request #1791 from arc53/fix-openai-conflict
...
fix for OPENAI_BASE_URL + ollama can't connect to container
2025-05-15 19:04:21 +03:00
Alex
09d37f669f
Merge pull request #1793 from arc53/prompts-update
...
refactor: enhance AI assistant prompts for clarity and creativity
2025-05-15 16:19:32 +03:00
Pavel
416b776062
redundant f string
2025-05-15 16:57:41 +04:00
Alex
5ed05d4020
refactor: enhance AI assistant prompts for clarity and creativity
2025-05-15 13:30:18 +01:00
Alex
4004bfb5ef
Merge pull request #1792 from arc53/read_webpage_tools
...
feat: add ReadWebpageTool for fetching and converting webpage content…
2025-05-15 15:14:02 +03:00
Alex
45aace8966
feat: add ReadWebpageTool for fetching and converting webpage content to Markdown
2025-05-15 12:56:06 +01:00
Alex
d9fc623dcb
Merge pull request #1790 from ManishMadan2882/setup-fix
...
(fix:dockercompose) volumes, user
2025-05-15 13:37:11 +03:00
Pavel
dbb822f6b0
fix for OPENAI_BASE_URL + ollama can't connect to container
...
- fix for OpenAI trying to use base_url=""
- fix for ollama container error:
`Error code: 404 - {'error': {'message': 'model "MODEL_NAME" not found, try pulling it first', 'type': 'api_error', 'param': None, 'code': None}}`
2025-05-15 13:50:08 +04:00
ManishMadan2882
3d64dffc32
(fix:dockercompose) volumes, user
2025-05-15 15:19:34 +05:30
GH Action - Upstream Sync
130ece7bc0
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-05-15 01:38:39 +00:00
Alex
b2809b2e9a
remove old deps
2025-05-14 22:03:27 +01:00
Alex
29e89d2965
Merge pull request #1785 from arc53/dependabot/pip/application/yarl-1.20.0
...
build(deps): bump yarl from 1.18.3 to 1.20.0 in /application
2025-05-14 23:55:09 +03:00
dependabot[bot]
e7d54a639e
build(deps): bump yarl from 1.18.3 to 1.20.0 in /application
...
Bumps [yarl](https://github.com/aio-libs/yarl ) from 1.18.3 to 1.20.0.
- [Release notes](https://github.com/aio-libs/yarl/releases )
- [Changelog](https://github.com/aio-libs/yarl/blob/master/CHANGES.rst )
- [Commits](https://github.com/aio-libs/yarl/compare/v1.18.3...v1.20.0 )
---
updated-dependencies:
- dependency-name: yarl
dependency-version: 1.20.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-14 20:50:26 +00:00
Alex
22df98e9bb
Merge pull request #1782 from arc53/dependabot/pip/application/prompt-toolkit-3.0.51
...
build(deps): bump prompt-toolkit from 3.0.50 to 3.0.51 in /application
2025-05-14 23:49:14 +03:00
dependabot[bot]
0d45c44c6f
build(deps): bump prompt-toolkit from 3.0.50 to 3.0.51 in /application
...
Bumps [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit ) from 3.0.50 to 3.0.51.
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases )
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/main/CHANGELOG )
- [Commits](https://github.com/prompt-toolkit/python-prompt-toolkit/compare/3.0.50...3.0.51 )
---
updated-dependencies:
- dependency-name: prompt-toolkit
dependency-version: 3.0.51
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-14 20:47:44 +00:00
Alex
63c6912841
lazy load elasticsearch
2025-05-14 21:45:30 +01:00
Alex
73bce73034
Merge pull request #1786 from arc53/dependabot/pip/application/flask-3.1.1
...
build(deps): bump flask from 3.1.0 to 3.1.1 in /application
2025-05-14 23:40:58 +03:00
Manish Madan
b2582796a2
Merge branch 'arc53:main' into main
2025-05-15 01:20:23 +05:30
Alex
8babb6e68f
Merge pull request #1787 from siiddhantt/refactor/agents
...
refactor: handle empty sources and chunks in agent
2025-05-14 14:39:01 +03:00
Siddhant Rai
d1d28df8a1
fix: handle empty chunks and retriever values in agent creation and update
2025-05-14 09:26:36 +05:30
GH Action - Upstream Sync
cd556d5d43
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-05-14 01:40:32 +00:00
ManishMadan2882
2855283a2c
(fix/shared) append to right state
2025-05-14 04:15:11 +05:30
ManishMadan2882
06c29500f2
(fix:input-lag) localised the input state to messageInput
2025-05-14 04:13:53 +05:30
ManishMadan2882
81104153a6
(feat:action-buttons) combine the buttons at the top of layout
2025-05-14 03:01:57 +05:30
dependabot[bot]
23bfd4683c
build(deps): bump flask from 3.1.0 to 3.1.1 in /application
...
Bumps [flask](https://github.com/pallets/flask ) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/pallets/flask/releases )
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/flask/compare/3.1.0...3.1.1 )
---
updated-dependencies:
- dependency-name: flask
dependency-version: 3.1.1
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-13 20:32:17 +00:00
Alex
a52a3e3158
Merge pull request #1750 from arc53/dependabot/pip/application/packaging-25.0
...
build(deps): bump packaging from 24.1 to 25.0 in /application
2025-05-13 18:34:56 +03:00
Alex
44e524e3c3
build(deps): update langchain and openai dependencies
2025-05-13 16:29:24 +01:00
dependabot[bot]
9a430f73e2
build(deps): bump packaging from 24.1 to 25.0 in /application
...
Bumps [packaging](https://github.com/pypa/packaging ) from 24.1 to 25.0.
- [Release notes](https://github.com/pypa/packaging/releases )
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pypa/packaging/compare/24.1...25.0 )
---
updated-dependencies:
- dependency-name: packaging
dependency-version: '25.0'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-13 15:10:29 +00:00
Alex
fdea40ec11
Merge pull request #1735 from arc53/dependabot/pip/application/referencing-0.36.2
...
build(deps): bump referencing from 0.30.2 to 0.36.2 in /application
2025-05-13 18:09:10 +03:00
Alex
526d340849
fix: stale deps
2025-05-13 16:03:48 +01:00
dependabot[bot]
fe95f6ad81
build(deps): bump referencing from 0.30.2 to 0.36.2 in /application
...
Bumps [referencing](https://github.com/python-jsonschema/referencing ) from 0.30.2 to 0.36.2.
- [Release notes](https://github.com/python-jsonschema/referencing/releases )
- [Changelog](https://github.com/python-jsonschema/referencing/blob/main/docs/changes.rst )
- [Commits](https://github.com/python-jsonschema/referencing/compare/v0.30.2...v0.36.2 )
---
updated-dependencies:
- dependency-name: referencing
dependency-version: 0.36.2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-13 13:20:27 +00:00
Alex
39e73c37ab
Merge pull request #1576 from arc53/dependabot/pip/application/portalocker-3.1.1
...
build(deps): bump portalocker from 2.10.1 to 3.1.1 in /application
2025-05-13 16:06:44 +03:00
Alex
39b36b6857
Feat: Add MD gen script, enable Qdrant lazy loading
2025-05-13 14:03:05 +01:00
dependabot[bot]
44e98748c5
build(deps): bump portalocker from 2.10.1 to 3.1.1 in /application
...
Bumps [portalocker](https://github.com/wolph/portalocker ) from 2.10.1 to 3.1.1.
- [Release notes](https://github.com/wolph/portalocker/releases )
- [Changelog](https://github.com/wolph/portalocker/blob/develop/CHANGELOG.rst )
- [Commits](https://github.com/wolph/portalocker/compare/v2.10.1...v3.1.1 )
---
updated-dependencies:
- dependency-name: portalocker
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-13 12:44:30 +00:00
Alex
8a7aeee955
Merge pull request #1751 from arc53/dependabot/pip/application/torch-2.7.0
...
build(deps): bump torch from 2.5.1 to 2.7.0 in /application
2025-05-13 15:41:10 +03:00
dependabot[bot]
1c7befb8d3
build(deps): bump torch from 2.5.1 to 2.7.0 in /application
...
Bumps [torch](https://github.com/pytorch/pytorch ) from 2.5.1 to 2.7.0.
- [Release notes](https://github.com/pytorch/pytorch/releases )
- [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md )
- [Commits](https://github.com/pytorch/pytorch/compare/v2.5.1...v2.7.0 )
---
updated-dependencies:
- dependency-name: torch
dependency-version: 2.7.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-05-13 12:20:22 +00:00
Alex
d5d59ac62c
Merge pull request #1759 from arc53/dependabot/pip/application/transformers-4.51.3
...
build(deps): bump transformers from 4.49.0 to 4.51.3 in /application
2025-05-13 15:19:18 +03:00
Alex
562f0762a0
Merge pull request #1775 from siiddhantt/feat/enhance-agents
...
feat: share and pin agents
2025-05-13 11:54:29 +03:00
Siddhant Rai
e46aedce21
Merge branch 'feat/enhance-agents' of https://github.com/siiddhantt/DocsGPT into feat/enhance-agents
2025-05-13 13:05:50 +05:30
Siddhant Rai
57cc09b1d7
feat: update tool display name and improve SharedAgent component layout
2025-05-13 13:05:20 +05:30
ManishMadan2882
e1e608b744
(fix:bubble) sleeker source cards
2025-05-13 06:16:16 +05:30
Alex
cbfa5a5118
Delete .jwt_secret_key
2025-05-12 15:11:42 +03:00
ManishMadan2882
ea9ab5b27c
(feat:sources) remove None option, don't close on select
2025-05-12 17:15:03 +05:30
ManishMadan2882
357ced6cba
Revert "(fix:message-input) no badge buttons when shared"
...
This reverts commit d873539856 .
2025-05-12 16:32:17 +05:30
ManishMadan2882
3ffda69651
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-05-12 14:38:33 +05:30
ManishMadan2882
e1bf4e0762
(fix/logs)log must render once
2025-05-12 14:38:15 +05:30
Siddhant Rai
ec7f14b82d
Merge branch 'main' into feat/enhance-agents
2025-05-12 13:45:18 +05:30
Siddhant Rai
6520be5b85
feat: shared and pinning agents + fix for streaming tools
2025-05-12 06:06:11 +05:30
GH Action - Upstream Sync
17e4fad6fb
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-05-10 01:36:32 +00:00
Alex
d84c416421
Merge pull request #1774 from arc53/limit-yield-on-tools
...
fix: truncate tool call results to 50 characters for cleaner output
2025-05-10 00:53:28 +03:00
Alex
32803c89a3
fix: truncate tool call results to 50 characters for cleaner output
2025-05-09 22:52:17 +01:00
Alex
a86bcb5c29
Merge pull request #1773 from arc53/cols-agent-fix
...
fix:(style) update layout for agent list and card components
2025-05-10 00:21:05 +03:00
Alex
7d76a33790
fix:(style) update layout for agent list and card components
2025-05-09 22:15:55 +01:00
ManishMadan2882
8552e81022
(fix:input) sync with translations
2025-05-09 21:39:54 +05:30
ManishMadan2882
eacdde829f
(fix/logs) abnormal scroll over page
2025-05-09 20:07:51 +05:30
ManishMadan2882
d873539856
(fix:message-input) no badge buttons when shared
2025-05-09 20:02:49 +05:30
Alex
24bb2e469d
Merge pull request #1772 from ManishMadan2882/main
...
Bug Fixes
2025-05-09 11:01:01 +03:00
ManishMadan2882
e1aa2cc0b8
(fix:ingestion) store file name as metadata, not path
2025-05-09 02:26:35 +05:30
ManishMadan2882
d073947f3b
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-05-08 16:11:14 +05:30
ManishMadan2882
3243740dd1
(fix-bubble) inconsistent width with snippets
2025-05-08 16:10:31 +05:30
Alex
f9bd566a3b
Merge pull request #1768 from ManishMadan2882/main
...
Attachments : File storage changes
2025-05-08 01:41:08 +03:00
Alex
183251487c
lint: remove unused import of 'io' in worker.py
2025-05-07 23:37:35 +01:00
ManishMadan2882
ff532210f7
lint
2025-05-08 00:15:28 +05:30
ManishMadan2882
d0a04d9801
(fix/lint) empty methods
2025-05-08 00:14:42 +05:30
ManishMadan2882
ea6533db4e
(fix:attachment) strictly use filename
2025-05-08 00:11:02 +05:30
ManishMadan2882
89d5e7bee5
(feat:attachment) store file in endpoint layer
2025-05-07 19:15:36 +05:30
Alex
7e6cdee592
Merge pull request #1732 from asminkarki012/feature/mermaid-integration
...
feat[mermaid]:integration of mermaid
2025-05-07 11:52:50 +03:00
ManishMadan2882
990c2fb416
Merge branch 'main' into 'feature/mermaid-integration'
2025-05-07 03:44:47 +05:30
ManishMadan2882
09e054c6aa
(fix/scroll) bring back arrowDown button, smoother scroll
2025-05-07 02:48:49 +05:30
ManishMadan2882
23f648f53a
(feat/mermaid) zoom as per the requirement
2025-05-07 02:07:57 +05:30
Siddhant Rai
07fa656e7c
feat: implement pinning functionality for agents with UI updates
2025-05-06 16:12:55 +05:30
Alex
7858c48f11
fix: zip file uploads
2025-05-06 11:12:26 +01:00
Alex
e56d54c3f0
fix: improve source and description handling in GetAgent and GetAgents responses
2025-05-06 10:59:25 +01:00
ManishMadan2882
f37ca95c10
(fix/mermaid loading): load only the diagrams which stream
2025-05-06 15:16:14 +05:30
ManishMadan2882
72e51bb072
(feat:mermaid) dont pass isDarkTheme
2025-05-06 04:38:38 +05:30
Alex
dcfcbf54be
Merge pull request #1767 from arc53/sources-icon-fix-agent-menu
...
fix: sources icon mini fix
2025-05-06 01:36:29 +03:00
Alex
204936b2d0
fix: sources icon mini fix
2025-05-05 23:34:13 +01:00
ManishMadan2882
98856b39ac
(feat:mermaid) zoom onhover, throw syntax errors
2025-05-06 00:53:33 +05:30
Alex
ad5f707486
lint: ruff fix
2025-05-05 18:03:45 +01:00
Alex
5ecfb0ce6d
fix: enhance error logging
2025-05-05 17:59:37 +01:00
Alex
2147b3f06f
lint: mini fix
2025-05-05 13:14:56 +01:00
Alex
7daed3daaf
Merge pull request #1764 from arc53/feat/better-logs
...
fix: enhance error logging with exception info across multiple modules
2025-05-05 15:13:21 +03:00
Alex
481df4d604
fix: enhance error logging with exception info across multiple modules
2025-05-05 13:12:39 +01:00
Alex
cf333873fd
fix: json body
2025-05-05 00:08:56 +01:00
Alex
ae700e8f3a
fix: display only 2 demos buttons on mobile
2025-05-04 18:56:33 +01:00
ManishMadan2882
16386a9524
(feat:mermaid) zoom on hover
2025-05-04 19:39:24 +05:30
ManishMadan2882
7e7ce276b2
(fix:mermaid/flicker) separated from markdown
2025-05-02 14:12:24 +05:30
Alex
71c6b41b83
Merge pull request #1762 from arc53/dartpain-patch-2
...
Update README.md
2025-05-01 17:19:10 +03:00
Alex
4b2faae29a
Update README.md
2025-05-01 17:15:08 +03:00
ManishMadan2882
7e28e562d0
(fix:mermaid) download svg/png
2025-05-01 19:37:03 +05:30
dependabot[bot]
93c2e2a597
build(deps): bump transformers from 4.49.0 to 4.51.3 in /application
...
Bumps [transformers](https://github.com/huggingface/transformers ) from 4.49.0 to 4.51.3.
- [Release notes](https://github.com/huggingface/transformers/releases )
- [Commits](https://github.com/huggingface/transformers/compare/v4.49.0...v4.51.3 )
---
updated-dependencies:
- dependency-name: transformers
dependency-version: 4.51.3
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-04-29 20:50:32 +00:00
Alex
c45d13d834
Merge pull request #1755 from siiddhantt/feat/agent-menu
...
feat: agent webhook and minor fixes
2025-04-29 00:41:36 +03:00
Alex
330276cdf7
fix: lint for ruff
2025-04-28 22:32:13 +01:00
Siddhant Rai
22c7015c69
refactor: webhook listener handle both POST and GET requests
2025-04-29 00:29:16 +05:30
Alex
cc67d4a1e2
process all request data implicitly
2025-04-28 17:49:29 +01:00
Siddhant Rai
eeb9da696f
Merge remote-tracking branch 'upstream/main' into feat/agent-menu
2025-04-28 17:01:46 +05:30
Siddhant Rai
4979e1ac9a
feat: add clsx dependency, enhance logging in agent logic, and improve agent logs component
2025-04-28 14:18:28 +05:30
ManishMadan2882
545353dabf
(feat:mermaid) use contentLoaded to render
2025-04-27 03:42:28 +05:30
ManishMadan2882
545376740c
(fix:re-render) useRef to check for bottom
2025-04-26 19:33:24 +05:30
Siddhant Rai
8289b02ab0
feat: add agent webhook endpoint and implement related functionality
2025-04-26 12:00:29 +05:30
ManishMadan2882
fc0060662b
(fix:mermaid) suppress mermaid injected errors in DOM
2025-04-25 21:18:49 +05:30
Alex
df9d432d29
fix: mongo db database name in settings
2025-04-24 17:29:41 +01:00
Alex
76fd6e15cc
Update Dockerfile
2025-04-24 18:54:58 +03:00
Alex
06982efda5
Merge pull request #1742 from ManishMadan2882/main
...
File System Abstraction
2025-04-24 01:32:27 +03:00
Alex
3cd9a72495
add storage type to the settings cofig
2025-04-23 23:13:39 +01:00
ManishMadan2882
0ce27f274a
(feat:storage) file indexes/faiss
2025-04-23 04:28:45 +05:30
ManishMadan2882
e60f78ac4a
(feat:storage) file uploads
2025-04-23 03:39:35 +05:30
ManishMadan2882
637d3a24a1
Revert "(feat:storage) file, indexes uploads"
...
This reverts commit 64c42f0ddf .
2025-04-23 00:52:55 +05:30
ManishMadan2882
24c8b24b1f
Revert "(fix:indexes) look for the right path"
...
This reverts commit 5ad34e2216 .
2025-04-23 00:52:22 +05:30
ManishMadan2882
5ad34e2216
(fix:indexes) look for the right path
2025-04-22 17:34:25 +05:30
ManishMadan2882
64c42f0ddf
(feat:storage) file, indexes uploads
2025-04-22 05:18:07 +05:30
ManishMadan2882
0a31ddaae6
(feat:storage) use get storage
2025-04-22 01:41:53 +05:30
ManishMadan2882
38476cfeb8
(gfeat:storage) get storage instance based on settings
2025-04-22 00:57:57 +05:30
asminkarki012
decc31f1f0
update latest changes
2025-04-21 21:05:12 +05:45
asminkarki012
ea0aa64330
fix: added renderer in answer bubble
2025-04-21 20:50:04 +05:45
Manish Madan
e9a6044645
Merge branch 'main' into main
2025-04-20 16:01:13 +05:30
Alex
474d700df2
Merge pull request #1745 from arc53/dependabot/pip/application/google-generativeai-0.8.5
...
build(deps): bump google-generativeai from 0.8.3 to 0.8.5 in /application
2025-04-20 01:39:11 +03:00
ManishMadan2882
c50ff6faa3
(feat:fs abstract) googleLLM class
2025-04-18 21:03:28 +05:30
ManishMadan2882
c8efef8f04
(fix:openai) image uplads, use lambda in process_files
2025-04-18 18:27:02 +05:30
dependabot[bot]
1d22f77568
build(deps): bump google-generativeai in /application
...
Bumps [google-generativeai](https://github.com/google/generative-ai-python ) from 0.8.3 to 0.8.5.
- [Release notes](https://github.com/google/generative-ai-python/releases )
- [Changelog](https://github.com/google-gemini/deprecated-generative-ai-python/blob/main/RELEASE.md )
- [Commits](https://github.com/google/generative-ai-python/compare/v0.8.3...v0.8.5 )
---
updated-dependencies:
- dependency-name: google-generativeai
dependency-version: 0.8.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-04-17 20:06:10 +00:00
ManishMadan2882
5aa51f5f36
(feat:file_abstract) openai attachments comply
2025-04-18 01:27:21 +05:30
ManishMadan2882
335c21c48a
(fix:attachment) dont calculate MIME again
2025-04-17 16:36:40 +05:30
ManishMadan2882
c35d1cecfe
(feat:file_abstract) return storage metadata after upload
2025-04-17 16:29:34 +05:30
ManishMadan2882
0d3e6157cd
(feat:attachmentUpload) parse content before upload
2025-04-17 16:23:01 +05:30
ManishMadan2882
68e4cf4d14
(feat:fsabstract) add factory class
2025-04-17 02:40:53 +05:30
ManishMadan2882
9454150f7d
(fix:s3) processor func
2025-04-17 02:36:55 +05:30
ManishMadan2882
0a0e16547e
(feat:fs_abstract) attachment uploads
2025-04-17 02:35:45 +05:30
Alex
0aec1b9969
Merge pull request #1739 from siiddhantt/feat/agent-menu
...
feat: new agents section
2025-04-16 17:50:11 +03:00
Alex
3e1ec23409
fix: lint
2025-04-16 15:47:39 +01:00
Siddhant Rai
2f9f428a2f
feat: add prompt management functionality with modal integration
2025-04-16 19:41:16 +05:30
Siddhant Rai
da15cde49c
Merge branch 'main' into feat/agent-menu
2025-04-16 18:35:38 +05:30
Siddhant Rai
e6ed37139a
feat: implement agent preview functionality and enhance conversation handling
2025-04-16 16:26:47 +05:30
ManishMadan2882
377e33c148
(feat:file_abstract) process files method
2025-04-16 03:36:45 +05:30
ManishMadan2882
e567d88951
((feat:fs_abstact) s3
2025-04-16 03:31:42 +05:30
ManishMadan2882
89b2937b11
((feat:fs_abstact) local
2025-04-16 03:31:28 +05:30
ManishMadan2882
142ed75468
((feat:fs_abstact) base
2025-04-16 03:31:06 +05:30
Siddhant Rai
d80eeb044c
feat: add agent timestamps and improve agent retrieval logic
2025-04-15 14:06:20 +05:30
Siddhant Rai
7c69e99914
feat: Enhance agent selection and conversation handling
...
- Added functionality to select agents in the Navigation component, allowing users to reset conversations and set the selected agent.
- Updated the MessageInput component to conditionally show source and tool buttons based on the selected agent.
- Modified the Conversation component to handle agent-specific queries and manage file uploads.
- Improved conversation fetching logic to include agent IDs and handle attachments.
- Introduced new types for conversation summaries and results to streamline API responses.
- Refactored Redux slices to manage selected agent state and improve overall state management.
- Enhanced error handling and loading states across components for better user experience.
2025-04-15 11:53:53 +05:30
Alex
5e1aaf5a44
Merge pull request #1733 from ManishMadan2882/main
...
Attachments: Enhancements , strategy specific to certain LLMs
2025-04-15 01:55:46 +03:00
Alex
ad610d2f90
fix: lint ruff
2025-04-14 23:49:40 +01:00
Alex
02934452d6
fix: remove comment
2025-04-14 23:48:17 +01:00
ManishMadan2882
8b054010e1
(Feat:input) sleek attachment pills
2025-04-15 03:30:11 +05:30
Alex
5b77f3839b
fix: maybe
2025-04-14 20:24:05 +01:00
Alex
231b792452
fix: streaming with tools google and openai halfway
2025-04-14 18:54:40 +01:00
ManishMadan2882
b468e0c164
(fix:generation) attach + tools
2025-04-13 18:33:26 +05:30
Siddhant Rai
fa1f9d7009
feat: agents route replacing chatbots
...
- Removed API Keys tab from SettingsBar and adjusted tab layout.
- Improved styling for tab scrolling buttons and gradient indicators.
- Introduced AgentDetailsModal for displaying agent access details.
- Updated Analytics component to fetch agent data and handle analytics for selected agent.
- Refactored Logs component to accept agentId as a prop for filtering logs.
- Enhanced type definitions for InputProps to include textSize.
- Cleaned up unused imports and optimized component structure across various files.
2025-04-11 17:24:22 +05:30
asminkarki012
c5a8f3abcd
refact:generate unique meraid id using crypto.randomUUID
2025-04-11 11:48:07 +05:45
ManishMadan2882
dfe6a8d3e3
(feat:attach) simplify the format for files
2025-04-11 01:53:17 +05:30
ManishMadan2882
292257770c
(refactor:attach) centralize attachment state
2025-04-10 03:02:39 +05:30
ManishMadan2882
b4c6b2b08b
(feat:utils) getOS, isTouchDevice
2025-04-10 01:44:49 +05:30
ManishMadan2882
6cb4577e1b
(feat:input) hotkey for sources open
2025-04-10 01:43:46 +05:30
ManishMadan2882
456784db48
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-04-10 01:29:52 +05:30
ManishMadan2882
dd9ea46e58
(feat:attach) strategy specific to google genai
2025-04-10 01:29:01 +05:30
GH Action - Upstream Sync
ed3af2fac0
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-04-09 01:27:51 +00:00
Alex
02f8132f3a
Update README.md
2025-04-08 15:56:34 +03:00
ManishMadan2882
55bd90fad9
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-04-08 17:51:27 +05:30
ManishMadan2882
cd7bbb45c3
(fix:popups) minor hover
2025-04-08 17:51:18 +05:30
Alex
6c7fc0ed22
Merge pull request #1729 from arc53/setup-windows
...
win-setup
2025-04-08 13:58:28 +03:00
ManishMadan2882
5421bc1386
(feat:attach) extend support for imgs
2025-04-08 15:51:37 +05:30
GH Action - Upstream Sync
051841e566
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-04-08 01:27:09 +00:00
ManishMadan2882
0c68815cf2
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-04-07 20:16:12 +05:30
ManishMadan2882
0c1138179b
(feat:attch) store file mime type
2025-04-07 20:16:03 +05:30
ManishMadan2882
1f3d1cc73e
(feat:attach) handle unsupported attachments
2025-04-07 20:15:11 +05:30
Alex
707d1332de
Merge pull request #1734 from arc53/fix-thought-param
...
fix: thought param in /api/answer
2025-04-07 13:08:23 +03:00
Alex
f6c88da81b
fix: thought param in /api/answer
2025-04-07 11:03:49 +01:00
GH Action - Upstream Sync
a651e6e518
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-04-07 01:37:46 +00:00
Alex
bea89b93eb
Merge pull request #1730 from arc53/dependabot/pip/application/multidict-6.3.2
...
build(deps): bump multidict from 6.1.0 to 6.3.2 in /application
2025-04-06 22:00:31 +03:00
ManishMadan2882
244c9b96a2
(fix:attach) pass attachment docs as it is
2025-04-06 16:02:30 +05:30
ManishMadan2882
a37bd76950
(feat:storeAttach) store in inputs, raise errors from worker
2025-04-06 16:01:57 +05:30
ManishMadan2882
9d70032de8
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-04-06 15:57:26 +05:30
ManishMadan2882
e4945b41e9
(feat:files) link attachment to openai_api
2025-04-06 15:57:18 +05:30
Pavel
493dc8689c
guide-updates
2025-04-05 17:49:56 +04:00
GH Action - Upstream Sync
bdac2ffa27
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-04-05 01:25:36 +00:00
asminkarki012
b1235f3ce0
feat[mermaid]:clean comment
2025-04-04 18:40:57 +05:45
asminkarki012
ba4bb63a1f
feat[mermaid]:integration of mermaid
2025-04-04 18:36:45 +05:45
Alex
3227b0e69c
Merge pull request #1722 from asminkarki012/fix/csv-parser-include-headers
...
fix[csv_parser]:missing header
2025-04-04 14:53:45 +03:00
ManishMadan2882
29c899627e
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-04-04 03:31:45 +05:30
ManishMadan2882
5923781484
(feat:attach) warning for error, progress, removal
2025-04-04 03:29:01 +05:30
dependabot[bot]
8bb263a2ec
build(deps): bump multidict from 6.1.0 to 6.3.2 in /application
...
Bumps [multidict](https://github.com/aio-libs/multidict ) from 6.1.0 to 6.3.2.
- [Release notes](https://github.com/aio-libs/multidict/releases )
- [Changelog](https://github.com/aio-libs/multidict/blob/master/CHANGES.rst )
- [Commits](https://github.com/aio-libs/multidict/compare/v6.1.0...v6.3.2 )
---
updated-dependencies:
- dependency-name: multidict
dependency-version: 6.3.2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-04-03 20:24:09 +00:00
Alex
94c7bba168
Merge pull request #1716 from ManishMadan2882/main
...
Sources + Tools
2025-04-03 02:03:47 +03:00
ManishMadan2882
f9ad4c068a
(feat:attach) fallback strategy to process docs
2025-04-03 03:26:37 +05:30
ManishMadan2882
19d68252cd
(fix/attach): inputs are created in application
2025-04-02 16:36:58 +05:30
ManishMadan2882
72bbe3b1ce
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-04-02 15:57:45 +05:30
ManishMadan2882
856824316b
(feat: attach) handle them locally from message input
2025-04-02 15:33:35 +05:30
ManishMadan2882
95e189d1d8
(feat:base/agents) default attachment
2025-04-02 15:29:04 +05:30
ManishMadan2882
c629460acb
(feat:attach) extract contents in endpoint layer
2025-04-02 15:21:33 +05:30
ManishMadan2882
f235a94986
(feat:attach) pass attachments for generation
2025-04-02 15:14:56 +05:30
GH Action - Upstream Sync
632cba86e9
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-04-02 01:36:06 +00:00
Alex
6b92c7eccc
Update README.md
2025-04-01 12:27:55 +03:00
Alex
ab0da1abac
Merge pull request #1721 from siiddhantt/feat/react-agent
...
feat: ReActAgent and agent refactor
2025-04-01 12:08:09 +03:00
Siddhant Rai
7f31ac7bcb
refactor: minor changes
2025-04-01 12:33:43 +05:30
Pavel
57a6fb31b2
periodic header injection
2025-03-31 22:28:04 +04:00
Siddhant Rai
fd2b6c111c
feat: enhance ClassicAgent and ReActAgent with tool preparation steps
2025-03-31 17:02:36 +05:30
GH Action - Upstream Sync
302458b505
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-30 01:40:32 +00:00
Alex
0e31329785
Merge pull request #1723 from arc53/dependabot/pip/application/langsmith-0.3.19
2025-03-29 21:14:46 +02:00
GH Action - Upstream Sync
8978a4cf2d
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-29 01:25:46 +00:00
dependabot[bot]
57d103116f
build(deps): bump langsmith from 0.3.15 to 0.3.19 in /application
...
Bumps [langsmith](https://github.com/langchain-ai/langsmith-sdk ) from 0.3.15 to 0.3.19.
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases )
- [Commits](https://github.com/langchain-ai/langsmith-sdk/compare/v0.3.15...v0.3.19 )
---
updated-dependencies:
- dependency-name: langsmith
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-03-28 20:55:06 +00:00
Alex
a4e9ee72d4
Merge pull request #1713 from arc53/dependabot/pip/application/pymongo-4.11.3
2025-03-28 22:45:04 +02:00
asminkarki012
c70be12bfd
fix[csv_parser]:missing header
2025-03-28 22:46:11 +05:45
ManishMadan2882
4241307990
(fix:responsive/messageInput) sleek badge buttons, aligned send btn
2025-03-28 20:42:12 +05:30
ManishMadan2882
727a8ef13d
(fix:responsive) tools and source pop
2025-03-28 20:40:46 +05:30
ManishMadan2882
7c92558ad1
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-03-28 18:13:42 +05:30
ManishMadan2882
45083d29a6
(feat:attach) show files on conversations
2025-03-28 18:13:24 +05:30
ManishMadan2882
5089d86095
(feat:attach) send attachment ids
2025-03-28 18:12:38 +05:30
ManishMadan2882
80e55ef385
(feat:attach) functionality to upload files
2025-03-28 18:10:18 +05:30
GH Action - Upstream Sync
b5ed98445f
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-28 01:26:07 +00:00
Siddhant Rai
82d377abf5
feat: add support for thought processing in conversation flow and introduce ReActAgent
2025-03-27 23:19:08 +05:30
ManishMadan2882
2dbea5d1b2
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-03-27 16:55:49 +05:30
ManishMadan2882
4ba35d6189
(feat: attachment) integrate upload on fe
2025-03-27 16:54:21 +05:30
Alex
1620b4f214
Merge pull request #1709 from Charlesnorris509/main
...
Update Navigation.tsx
2025-03-27 11:28:45 +02:00
GH Action - Upstream Sync
cec3f987f2
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-27 01:26:14 +00:00
GH Action - Upstream Sync
ec27445728
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-27 01:21:05 +00:00
ManishMadan2882
55050a9f58
(feat:attachment) upload single file
2025-03-27 03:28:03 +05:30
Alex
4b1f572b04
Merge pull request #1720 from arc53/dependabot/npm_and_yarn/docs/next-14.2.26
...
build(deps): bump next from 14.2.22 to 14.2.26 in /docs
2025-03-26 16:53:50 +02:00
ManishMadan2882
502dc9ec52
(feat:attachments) store and ingest files shared
2025-03-26 18:01:31 +05:30
dependabot[bot]
28f925ef75
build(deps): bump next from 14.2.22 to 14.2.26 in /docs
...
Bumps [next](https://github.com/vercel/next.js ) from 14.2.22 to 14.2.26.
- [Release notes](https://github.com/vercel/next.js/releases )
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js )
- [Commits](https://github.com/vercel/next.js/compare/v14.2.22...v14.2.26 )
---
updated-dependencies:
- dependency-name: next
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-03-26 06:23:32 +00:00
ManishMadan2882
9c8999a3ae
(fix:sources) doc selection for preLoaded
2025-03-25 19:04:31 +05:30
ManishMadan2882
90db42ce3a
Revert "(fix:sources) preloaded docs have ids too"
...
This reverts commit 02c8bd06f5 .
2025-03-25 16:08:59 +05:30
ManishMadan2882
551130f0e1
(feat:sources/tools) ui perfection for pop-ups
2025-03-25 03:22:21 +05:30
Charles Norris
98abeabc0d
Update ConversationTile.tsx
2025-03-24 16:10:41 -04:00
ManishMadan2882
2940a60b3c
(faet:input) tools pop-up
2025-03-24 17:16:24 +05:30
ManishMadan2882
76b9bc0d56
(feat:input) sources pop-up
2025-03-24 17:15:57 +05:30
ManishMadan2882
42422ccdcd
(feat:settings) routes for tab
2025-03-24 13:56:12 +05:30
ManishMadan2882
e9702ae2de
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-03-21 23:57:09 +05:30
ManishMadan2882
5c54852ebe
(fix:tools) no tools placeholder
2025-03-21 23:56:47 +05:30
GH Action - Upstream Sync
718a86ecda
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-21 01:26:21 +00:00
GH Action - Upstream Sync
e02f19058e
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-21 01:21:33 +00:00
Pavel
1223fd2149
win-setup
2025-03-20 21:48:59 +03:00
Alex
4095b2b674
Merge pull request #1714 from siiddhantt/fix/retrievers-broken
...
fix: brave and duckduckgo retrievers
2025-03-20 13:00:34 +00:00
Siddhant Rai
3be6e2132b
refactor: remove outdated vector store tests
2025-03-20 17:27:18 +05:30
ManishMadan2882
b09386d102
(clean:nav) rm source dropdown
2025-03-20 11:26:45 +05:30
ManishMadan2882
6464698b6d
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-03-20 09:47:38 +05:30
ManishMadan2882
9230fd3bd6
Revert "(feat:nav) clean-up source dropdown"
...
This reverts commit 561a125c92 .
2025-03-20 09:47:29 +05:30
ManishMadan2882
7771609ea0
(locales) udpate placeholder
2025-03-20 09:43:36 +05:30
ManishMadan2882
561a125c92
(feat:nav) clean-up source dropdown
2025-03-20 09:42:57 +05:30
ManishMadan2882
7149461d8e
(feat:sources) add pop-up to switch sources
2025-03-20 09:42:08 +05:30
ManishMadan2882
02c8bd06f5
(fix:sources) preloaded docs have ids too
2025-03-20 09:39:30 +05:30
Siddhant Rai
0732d9b6c8
fix: brave and duckduckgo retrievers
2025-03-20 08:27:00 +05:30
GH Action - Upstream Sync
2952c1be08
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-20 01:19:59 +00:00
dependabot[bot]
96c4a13c93
build(deps): bump pymongo from 4.10.1 to 4.11.3 in /application
...
Bumps [pymongo](https://github.com/mongodb/mongo-python-driver ) from 4.10.1 to 4.11.3.
- [Release notes](https://github.com/mongodb/mongo-python-driver/releases )
- [Changelog](https://github.com/mongodb/mongo-python-driver/blob/4.11.3/doc/changelog.rst )
- [Commits](https://github.com/mongodb/mongo-python-driver/compare/4.10.1...4.11.3 )
---
updated-dependencies:
- dependency-name: pymongo
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-03-19 08:40:51 +00:00
Alex
53abf1a79e
Merge pull request #1701 from siiddhantt/feat/jwt-auth
...
feat: implement JWT authentication and token management
2025-03-19 08:39:29 +00:00
Siddhant Rai
f00802dd6b
fix: llm tests failing
2025-03-19 10:25:46 +05:30
Siddhant Rai
ab95d90284
feat: pass decoded_token to llm and retrievers
2025-03-18 23:46:02 +05:30
ManishMadan2882
9f17eb1d28
feat(textInput) new design
2025-03-18 19:33:26 +05:30
Siddhant Rai
f4ab85a2bb
feat: minor fixes after merge
2025-03-18 18:56:02 +05:30
Siddhant Rai
5b40c5a9d7
Merge branch 'main' into feat/jwt-auth
2025-03-18 18:26:29 +05:30
Siddhant Rai
6583aeff08
feat: update authentication handling and integrate token usage across frontend and backend
2025-03-18 08:29:57 +05:30
Charles Norris
b1c531fbcc
Update Navigation.tsx
...
Typo on onCoversationClick() function it should be onConversationClick()
2025-03-17 16:51:33 -04:00
Siddhant Rai
4406426515
feat: implement session_jwt and enhance auth
2025-03-17 11:51:30 +05:30
Alex
af48782464
Merge pull request #1708 from ManishMadan2882/main
...
Refactor(fe): Conversation
2025-03-16 20:05:46 +00:00
Manish Madan
726d4ddd9f
Merge branch 'arc53:main' into main
2025-03-16 04:08:26 +05:30
ManishMadan2882
adc637b689
(clean:unused)
2025-03-16 04:07:33 +05:30
ManishMadan2882
d6c9b4fbc9
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-03-16 04:02:12 +05:30
ManishMadan2882
e17cc8ea34
(fix:date) handle iso 8601 date
2025-03-16 04:01:19 +05:30
ManishMadan2882
574a0e2dba
(fix:conv) perfect aligment
2025-03-16 03:57:31 +05:30
ManishMadan2882
fd0bd13b08
(refactor:conv) separate textarea
2025-03-16 02:01:32 +05:30
Alex
f8c92147cd
deps: bump langchian things
2025-03-15 19:51:30 +00:00
Alex
8136cd78d3
Merge pull request #1698 from arc53/dependabot/pip/application/duckduckgo-search-7.5.2
...
build(deps): bump duckduckgo-search from 7.4.2 to 7.5.2 in /application
2025-03-15 19:16:39 +00:00
ManishMadan2882
d9c4331480
(refactor:conv) wrap msgs separately
2025-03-15 16:41:56 +05:30
Alex
7af726f4b2
Merge pull request #1702 from nickaggarwal/main
...
fix signature for AzureOpenAILLM
2025-03-14 22:08:36 +00:00
ManishMadan2882
a50f3bc55b
(fix:sourceDropdown) ask before delete
2025-03-15 00:15:23 +05:30
Nilesh Agarwal
5438bf9754
fix signature for AzureOpenAILLM
2025-03-14 09:52:09 -07:00
Siddhant Rai
7fd377bdbe
feat: implement JWT authentication and token management in frontend and backend
2025-03-14 17:07:15 +05:30
Alex
84620a7375
Merge pull request #1700 from ScriptScientist/main
...
fix: docker compose up doesn't use the env
2025-03-14 10:39:28 +00:00
rock.lee
6968317db2
fix: docker compose up doesn't use the env and setup script will not exit when service start success
2025-03-14 17:09:10 +08:00
dependabot[bot]
67a92428b5
build(deps): bump duckduckgo-search from 7.4.2 to 7.5.2 in /application
...
Bumps [duckduckgo-search](https://github.com/deedy5/duckduckgo_search ) from 7.4.2 to 7.5.2.
- [Release notes](https://github.com/deedy5/duckduckgo_search/releases )
- [Commits](https://github.com/deedy5/duckduckgo_search/compare/v7.4.2...v7.5.2 )
---
updated-dependencies:
- dependency-name: duckduckgo-search
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-03-13 20:19:41 +00:00
Alex
5bb639f0ad
Merge pull request #1670 from ManishMadan2882/main
...
Figma consolidation
2025-03-13 15:21:03 +00:00
ManishMadan2882
5bc758aa2d
(fix:ui) minor adjustments
2025-03-13 20:39:17 +05:30
Pavel
27b24f19de
user-avatar-svg
2025-03-13 14:25:41 +03:00
GH Action - Upstream Sync
3dfde84827
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-13 01:25:22 +00:00
Alex
5e39be6a2c
fix: tests anthropic
2025-03-13 00:32:24 +00:00
Alex
35248991e7
fix: cache
2025-03-13 00:25:52 +00:00
Alex
b76e820122
fix: ruff fix
2025-03-13 00:11:50 +00:00
Alex
51eced00aa
fix: openai compatable with llama and gemini
2025-03-13 00:10:13 +00:00
ManishMadan2882
079a216f5b
(fix:chunkDocs) alike purple action btn
2025-03-13 03:08:02 +05:30
ManishMadan2882
8b5df98f57
(fix:ui) minor adjust
2025-03-13 03:06:49 +05:30
ManishMadan2882
fb6fd5b5b2
(fix:input) unwanted autocomplete style
2025-03-13 03:06:22 +05:30
Alex
5d5ea3eb8f
Merge pull request #1689 from ScriptScientist/main
...
feat: novita llms support
2025-03-12 21:03:09 +00:00
ManishMadan2882
21360981ee
(fix:tool-cards) ui adjust
2025-03-13 01:39:51 +05:30
ManishMadan2882
0b3cad152f
(fix:prompts) design specs
2025-03-13 00:43:56 +05:30
Alex
2c2dbe45a6
Merge pull request #1696 from arc53/fixes-cache
...
Fixes cache
2025-03-12 17:37:38 +00:00
ManishMadan2882
5c7a3a515c
(fix:general) perfect labels, delete btn
2025-03-12 22:52:08 +05:30
Alex
f2b05ad56d
fix: handle cache issues with more grace
2025-03-12 15:13:14 +00:00
Alex
5f9702b91c
fix: /search
2025-03-12 13:47:16 +00:00
ManishMadan2882
93de4065c7
(fix:tables) table header, name table data
2025-03-12 17:32:05 +05:30
ManishMadan2882
8e0e55fe5e
(fix:analytics) feedback title
2025-03-12 17:31:30 +05:30
ManishMadan2882
a8a8585570
(fix:purple-btn) hover to 976af3
2025-03-12 08:17:13 +05:30
ManishMadan2882
1f3c07979a
(fix:bubble) color adjustments
2025-03-12 06:41:37 +05:30
ManishMadan2882
fa07b3349d
(fix:sidebar) upload icon, bg perfect
2025-03-12 05:57:59 +05:30
GH Action - Upstream Sync
519ffe617b
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-11 01:24:52 +00:00
Alex
fe02bf9347
Merge pull request #1693 from siiddhantt/fix/response-and-sources
...
feat: agent use in answer and enhance search
2025-03-10 12:53:46 +00:00
Siddhant Rai
faa583864d
feat: enhance conversation saving and response streaming with source handling
2025-03-10 14:19:43 +05:30
GH Action - Upstream Sync
1a7504eba0
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-10 01:11:30 +00:00
Alex
46d32b4072
Merge pull request #1682 from arc53/dependabot/pip/application/jinja2-3.1.6
...
build(deps): bump jinja2 from 3.1.5 to 3.1.6 in /application
2025-03-10 00:04:03 +00:00
Alex
18d8b9c395
Merge pull request #1692 from arc53/tool-ntfy
...
feat: ntfy tool
2025-03-09 01:28:00 +00:00
Alex
8b9b74464e
feat: ntfy tool
2025-03-09 01:22:00 +00:00
rock.lee
867c375843
add novita provider
2025-03-08 15:45:49 +08:00
GH Action - Upstream Sync
54ca6acf5a
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-08 01:07:50 +00:00
ManishMadan2882
6ac2d6d228
(fix:tile) hover behaviour on rename
2025-03-08 00:48:53 +05:30
ManishMadan2882
10c7a5f36b
(clean) comments
2025-03-07 20:24:38 +05:30
Alex
4fd6c52951
fix: api tool avoid sending body if empty
2025-03-07 14:34:23 +00:00
ManishMadan2882
93fea17918
(feat:config) color name update
2025-03-07 19:55:47 +05:30
ManishMadan2882
b3f6a3aae6
(fix:ui) mninor adjustments
2025-03-07 17:20:14 +05:30
ManishMadan2882
773147701d
(fix:ui) tool cards
2025-03-07 17:19:14 +05:30
ManishMadan2882
d891c8dae2
(fix:ui) minor perfections
2025-03-07 17:18:28 +05:30
ManishMadan2882
101852c7d1
(feat:toggle) add id, aria props
2025-03-07 17:16:45 +05:30
ManishMadan2882
c1f13ba8b1
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-03-07 17:11:00 +05:30
ManishMadan2882
71e45860f3
(fix:input) remove ambiguous label prop
2025-03-07 17:10:48 +05:30
ManishMadan2882
25dfd63c4f
(fix:ui) color adjust
2025-03-07 17:09:00 +05:30
ManishMadan2882
fc12d7b4c8
(fix:tool) rely on reusable components
2025-03-07 17:07:01 +05:30
GH Action - Upstream Sync
a6eedc6d84
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-07 01:24:48 +00:00
Alex
b523a98289
Merge pull request #1671 from aidanbennettjones/AidanComponentEditChat
...
Enables Enter Key Functionality to Submit Edited Chats
2025-03-06 16:44:06 -05:00
Alex
a0929c96ba
fix: postgres tool migration
2025-03-06 16:20:19 +00:00
Alex
ae1f25379f
Merge pull request #1684 from arc53/brave-tool
...
brave-tool
2025-03-06 11:17:47 -05:00
Pavel
1e3c8cb7b1
fix imports
2025-03-06 19:13:19 +03:00
Pavel
b9f28705c8
brave-tool
2025-03-06 18:46:50 +03:00
Alex
ad4f3ce379
Merge pull request #1648 from siiddhantt/feat/agent-refactor-and-logging
...
feat: agent-retriever workflow + logging stack
2025-03-06 09:32:18 -05:00
Alex
d4f53bf6bb
fix: ruff check
2025-03-06 14:31:46 +00:00
dependabot[bot]
2ea2819477
build(deps): bump jinja2 from 3.1.5 to 3.1.6 in /application
...
Bumps [jinja2](https://github.com/pallets/jinja ) from 3.1.5 to 3.1.6.
- [Release notes](https://github.com/pallets/jinja/releases )
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/jinja/compare/3.1.5...3.1.6 )
---
updated-dependencies:
- dependency-name: jinja2
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-03-06 04:47:24 +00:00
Alex
49a2b2ce6d
fix: agent not forgotten
2025-03-05 16:11:06 -05:00
Alex
06edc261c0
fix: duplicates...
2025-03-05 16:09:13 -05:00
Alex
af69bc9d3c
Merge branch 'main' into feat/agent-refactor-and-logging
2025-03-05 16:04:09 -05:00
ManishMadan2882
6eb8256220
(feat:docs,chatbots) danger delete btn
2025-03-06 02:00:05 +05:30
ManishMadan2882
ecf3067d67
(fix:analytics) rename feedback title
2025-03-06 01:58:37 +05:30
ManishMadan2882
3a7f23f75e
(feat:logs) ui
2025-03-06 01:56:38 +05:30
Siddhant Rai
f88c34a0be
feat: streaming responses with function call
2025-03-05 09:02:55 +05:30
ManishMadan2882
572c57e023
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-03-05 03:53:34 +05:30
ManishMadan2882
79cf2150d5
(fix:ui) minor adjustments
2025-03-05 03:15:50 +05:30
ManishMadan2882
68b868047e
(feat:copy) prop to showText
2025-03-05 03:13:34 +05:30
ManishMadan2882
377670b34a
(feat:docs) adding view option
2025-03-05 03:12:48 +05:30
ManishMadan2882
2b7f4de832
(feat:docs):add contextMenu to actions
2025-03-04 18:53:23 +05:30
GH Action - Upstream Sync
4a88a63fa0
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-04 01:24:01 +00:00
Alex
bf195051e2
Merge pull request #1663 from arc53/dependabot/pip/application/primp-0.14.0
...
build(deps): bump primp from 0.10.0 to 0.14.0 in /application
2025-03-03 14:50:26 +00:00
GH Action - Upstream Sync
c3ccd9feff
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-03 01:25:14 +00:00
Alex
2d0f0948fb
Merge pull request #1673 from arc53/dependabot/pip/application/anthropic-0.49.0
...
build(deps): bump anthropic from 0.45.2 to 0.49.0 in /application
2025-03-02 22:44:03 +00:00
aidanbennettjones
fc7a5d098d
Merge branch 'arc53:main' into AidanComponentEditChat
2025-03-02 13:35:20 -05:00
aidanbennettjones
b7f766ab82
Fix Number of Rows and Remove Comments
2025-03-02 13:34:55 -05:00
ManishMadan2882
bfffd5e4b3
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-03-01 20:15:24 +05:30
ManishMadan2882
63ba005f4d
(fix:ui) minor color perfections
2025-03-01 20:15:10 +05:30
ManishMadan2882
f66ef05f2a
(feat:barGraph) on hover opacity
2025-03-01 20:14:27 +05:30
ManishMadan2882
a3b28843b6
(feat:confirm-modal) danger variant
2025-03-01 20:12:40 +05:30
ManishMadan2882
b07ec8accb
(feat:general) ui
2025-03-01 20:11:46 +05:30
GH Action - Upstream Sync
06f4b5823a
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-03-01 01:35:16 +00:00
Alex
99fe57f99a
Merge pull request #1664 from arc53/dependabot/pip/application/langchain-core-0.3.40
...
build(deps): bump langchain-core from 0.3.29 to 0.3.40 in /application
2025-03-01 00:58:31 +00:00
dependabot[bot]
d1226031e1
build(deps): bump anthropic from 0.45.2 to 0.49.0 in /application
...
Bumps [anthropic](https://github.com/anthropics/anthropic-sdk-python ) from 0.45.2 to 0.49.0.
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases )
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md )
- [Commits](https://github.com/anthropics/anthropic-sdk-python/compare/v0.45.2...v0.49.0 )
---
updated-dependencies:
- dependency-name: anthropic
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-28 20:35:48 +00:00
aidanbennettjones
78f3e64d5a
Merge branch 'arc53:main' into AidanComponentEditChat
2025-02-28 10:35:17 -05:00
ManishMadan2882
1d98e75b92
(fix:share) modal covers screen
2025-02-28 16:41:34 +05:30
ManishMadan2882
66d8d95763
(feat:input) floating input labels
2025-02-28 03:46:26 +05:30
ManishMadan2882
e2bf468195
(refactor) conv tile
2025-02-28 03:45:54 +05:30
ManishMadan2882
b7efc16257
(feat:menu) add reusable menu, ui
2025-02-28 03:44:14 +05:30
ManishMadan2882
ec6bcdff7e
(feat:convBubble) minor adjustment
2025-02-28 03:42:34 +05:30
ManishMadan2882
3e65885e1f
(feat:toggle) greener colors, flexible
2025-02-28 03:40:42 +05:30
Siddhant Rai
c6ce4d9374
feat: logging stacks
2025-02-27 19:14:10 +05:30
ManishMadan2882
0b437d0e8d
(feat:ui) updating hero, code snippets
2025-02-27 03:04:55 +05:30
dependabot[bot]
e1df3be4b9
build(deps): bump langchain-core from 0.3.29 to 0.3.40 in /application
...
Bumps [langchain-core](https://github.com/langchain-ai/langchain ) from 0.3.29 to 0.3.40.
- [Release notes](https://github.com/langchain-ai/langchain/releases )
- [Commits](https://github.com/langchain-ai/langchain/compare/langchain-core==0.3.29...langchain-core==0.3.40 )
---
updated-dependencies:
- dependency-name: langchain-core
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-26 20:16:15 +00:00
dependabot[bot]
b944769f8c
build(deps): bump primp from 0.10.0 to 0.14.0 in /application
...
Bumps [primp](https://github.com/deedy5/primp ) from 0.10.0 to 0.14.0.
- [Release notes](https://github.com/deedy5/primp/releases )
- [Commits](https://github.com/deedy5/primp/compare/v0.10.0...v0.14.0 )
---
updated-dependencies:
- dependency-name: primp
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-26 20:16:08 +00:00
Alex
56b8074c22
Merge pull request #1658 from ManishMadan2882/main
...
Widget upgrade to 0.5.0
2025-02-26 11:05:32 +00:00
ManishMadan2882
b577f322c9
Merge branch 'main' of https://github.com/arc53/docsgpt
2025-02-26 16:17:19 +05:30
ManishMadan2882
b007e2af8f
(update:docs) docsgpt dep
2025-02-26 16:12:38 +05:30
ManishMadan2882
df89990aa5
(upgrade:widget) v0.5.0
2025-02-26 16:09:12 +05:30
Alex
c108a53b11
fix: default keys
2025-02-26 10:35:26 +00:00
ManishMadan2882
4831f5bb5d
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-02-26 14:52:59 +05:30
ManishMadan2882
987ef63e64
(feat:widget) simplify scrolling
2025-02-26 14:52:48 +05:30
Alex
e997e12bb9
Merge pull request #1656 from arc53/dependabot/pip/application/lxml-5.3.1
...
build(deps): bump lxml from 5.3.0 to 5.3.1 in /application
2025-02-25 22:29:56 +00:00
Alex
6ba0add265
Merge pull request #1655 from arc53/dependabot/pip/application/qdrant-client-1.13.2
...
build(deps): bump qdrant-client from 1.12.2 to 1.13.2 in /application
2025-02-25 22:29:40 +00:00
Alex
9160c13039
Merge pull request #1651 from arc53/dependabot/pip/application/elasticsearch-8.17.1
...
build(deps): bump elasticsearch from 8.17.0 to 8.17.1 in /application
2025-02-25 22:28:49 +00:00
Alex
40be9f65e4
Merge pull request #1647 from ManishMadan2882/main
...
Analytics and feedback
2025-02-25 22:28:16 +00:00
dependabot[bot]
0aae53524c
build(deps): bump lxml from 5.3.0 to 5.3.1 in /application
...
Bumps [lxml](https://github.com/lxml/lxml ) from 5.3.0 to 5.3.1.
- [Release notes](https://github.com/lxml/lxml/releases )
- [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt )
- [Commits](https://github.com/lxml/lxml/compare/lxml-5.3.0...lxml-5.3.1 )
---
updated-dependencies:
- dependency-name: lxml
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-25 20:38:23 +00:00
dependabot[bot]
1d1efc00b5
build(deps): bump qdrant-client from 1.12.2 to 1.13.2 in /application
...
Bumps [qdrant-client](https://github.com/qdrant/qdrant-client ) from 1.12.2 to 1.13.2.
- [Release notes](https://github.com/qdrant/qdrant-client/releases )
- [Commits](https://github.com/qdrant/qdrant-client/compare/v1.12.2...v1.13.2 )
---
updated-dependencies:
- dependency-name: qdrant-client
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-25 20:38:17 +00:00
ManishMadan2882
7584305159
(feat:feedback) unset feedback when null
2025-02-26 01:01:30 +05:30
ManishMadan2882
554601d674
(fix:feedback) widget can handle feedback
2025-02-26 01:00:38 +05:30
Alex
6caf14f4b2
Merge pull request #1653 from asminkarki012/main
...
docs: Ensure --env-file .env is included for environment variable loa…
2025-02-25 17:16:58 +00:00
asminkarki012
edbd08be8a
docs: Ensure --env-file .env is included for environment variable loading
2025-02-25 21:52:39 +05:45
ManishMadan2882
caed6df53b
(feat:stream) save conversations optionally
2025-02-25 17:32:35 +05:30
ManishMadan2882
d823fba60b
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-02-25 16:23:55 +05:30
ManishMadan2882
92c8abe65d
(fix:sharedConv) makes sure that response state updates
2025-02-25 16:23:35 +05:30
Alex
91e966b480
Merge pull request #1650 from arc53/dependabot/pip/application/transformers-4.49.0
...
build(deps): bump transformers from 4.48.0 to 4.49.0 in /application
2025-02-25 08:51:41 +00:00
Siddhant Rai
1f0b779c64
refactor: folder restructure for agent based workflow
2025-02-25 09:03:45 +05:30
GH Action - Upstream Sync
0ccd76074a
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-02-25 01:22:53 +00:00
Alex
07c6dcab4a
Merge pull request #1652 from arc53/dependabot/pip/application/google-genai-1.3.0
...
build(deps): bump google-genai from 0.5.0 to 1.3.0 in /application
2025-02-24 22:34:16 +00:00
Alex
84cbc1201c
fix: googles update
2025-02-24 22:30:09 +00:00
dependabot[bot]
495bbc2aba
build(deps): bump google-genai from 0.5.0 to 1.3.0 in /application
...
Bumps [google-genai](https://github.com/googleapis/python-genai ) from 0.5.0 to 1.3.0.
- [Release notes](https://github.com/googleapis/python-genai/releases )
- [Changelog](https://github.com/googleapis/python-genai/blob/main/CHANGELOG.md )
- [Commits](https://github.com/googleapis/python-genai/compare/v0.5.0...v1.3.0 )
---
updated-dependencies:
- dependency-name: google-genai
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-24 22:24:08 +00:00
dependabot[bot]
cb0bceacfa
build(deps): bump elasticsearch from 8.17.0 to 8.17.1 in /application
...
Bumps [elasticsearch](https://github.com/elastic/elasticsearch-py ) from 8.17.0 to 8.17.1.
- [Release notes](https://github.com/elastic/elasticsearch-py/releases )
- [Commits](https://github.com/elastic/elasticsearch-py/compare/v8.17.0...v8.17.1 )
---
updated-dependencies:
- dependency-name: elasticsearch
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-24 22:23:48 +00:00
Alex
6799050718
Merge pull request #1601 from arc53/dependabot/pip/application/pydantic-2.10.6
...
build(deps): bump pydantic from 2.10.4 to 2.10.6 in /application
2025-02-24 22:23:46 +00:00
dependabot[bot]
4b892e8939
build(deps): bump transformers from 4.48.0 to 4.49.0 in /application
...
Bumps [transformers](https://github.com/huggingface/transformers ) from 4.48.0 to 4.49.0.
- [Release notes](https://github.com/huggingface/transformers/releases )
- [Commits](https://github.com/huggingface/transformers/compare/v4.48.0...v4.49.0 )
---
updated-dependencies:
- dependency-name: transformers
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-24 22:23:30 +00:00
Alex
674001b499
Merge pull request #1583 from arc53/dependabot/pip/application/openapi-schema-validator-0.6.3
...
build(deps): bump openapi-schema-validator from 0.6.2 to 0.6.3 in /application
2025-02-24 22:23:27 +00:00
ManishMadan2882
c730777134
(fix:bubble) keeping feedback visible once submitted
2025-02-25 00:51:33 +05:30
ManishMadan2882
8148876249
(feat:message analytics) count individual queries
2025-02-25 00:45:19 +05:30
ManishMadan2882
4cf946f856
(feat:feedback) timestamp feedback
2025-02-24 18:53:29 +05:30
ManishMadan2882
05706f1641
(feat:feedback and tokens) count apiKey docs separately
2025-02-24 17:24:53 +05:30
Siddhant Rai
6fed84958e
feat: agent-retriever workflow + query rephrase
2025-02-24 16:41:57 +05:30
ManishMadan2882
64011c5988
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-02-24 16:28:44 +05:30
ManishMadan2882
3e02d5a56f
(feat:conv) save the conv with key
2025-02-24 16:28:24 +05:30
Alex
14f57bc3a4
Update README.md
2025-02-23 15:30:59 +00:00
aidanbennettjones
ac8f1b9aa3
Merge branch 'arc53:main' into AidanComponentEditChat
2025-02-21 15:02:39 -05:00
Alex
104c6ef457
Merge pull request #1645 from ManishMadan2882/main
...
Settings: Improving table layout
2025-02-20 22:47:25 +00:00
ManishMadan2882
84661cea36
lint
2025-02-21 00:54:06 +05:30
ManishMadan2882
c2b0ed85d2
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-02-21 00:42:56 +05:30
ManishMadan2882
5a081f2419
(feat/docs) prevent event bubble
2025-02-21 00:42:27 +05:30
ManishMadan2882
88016f9c35
(fix/chatbots) prevent overflow
2025-02-21 00:41:30 +05:30
ManishMadan2882
0d56e62bb8
(fix/tables) responsiveness issues
2025-02-20 14:48:16 +05:30
GH Action - Upstream Sync
567756edd3
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-02-20 01:21:11 +00:00
ManishMadan2882
7cc0a3620e
(fix:docs) consistency
2025-02-20 03:33:35 +05:30
ManishMadan2882
b5587e458f
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-02-20 01:39:37 +05:30
ManishMadan2882
b22d965b7b
(fix:chatbots) ui
2025-02-20 01:39:25 +05:30
Alex
cc0b41ddfb
Merge pull request #1642 from siiddhantt/fix/minor-bugs
...
fix: minor bugs and enhancement
2025-02-19 16:16:05 +00:00
ManishMadan2882
006aeeebb0
(fix:typo) copy
2025-02-19 16:56:15 +05:30
ManishMadan2882
3cfb1abf62
(fix/merge) revert dropdown skeletons
2025-02-19 16:55:36 +05:30
ManishMadan2882
e1da69040d
(fix/merge error) tool config modal
2025-02-19 16:44:35 +05:30
Siddhant Rai
5924693e90
fix: merge errors
2025-02-19 14:37:47 +05:30
Siddhant Rai
9ee7d659df
Merge branch 'main' into fix/minor-bugs
2025-02-19 14:16:56 +05:30
Siddhant Rai
ac1b1c3cdd
feat: add loading spinner to AddToolModal and improve label spacing in General settings
2025-02-19 13:58:40 +05:30
Alex
8440138ba0
Merge pull request #1641 from ManishMadan2882/main
...
Refactor: Apply base modal for UI consitency
2025-02-18 23:42:06 +00:00
ManishMadan2882
877b44ec0a
(lint)
2025-02-19 04:49:22 +05:30
ManishMadan2882
cc4acb8766
(feat:createAPIModal): UI inconsistency
2025-02-19 04:38:49 +05:30
ManishMadan2882
3aa85bb51c
(refactor:modals) reuse wrapper modal
2025-02-19 04:35:33 +05:30
ManishMadan2882
4e948d8bff
(refactor:tools modal) reuse wrapper modal
2025-02-19 04:15:31 +05:30
ManishMadan2882
28489d244c
(feat:input) consistent colors
2025-02-19 04:10:14 +05:30
ManishMadan2882
acf3dd2762
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-02-19 04:01:23 +05:30
ManishMadan2882
8589303753
(feat:consitency)modals, dropdowns
2025-02-19 04:01:14 +05:30
ManishMadan2882
0d9fc26119
(refactor): purge unused files
2025-02-19 03:39:15 +05:30
Alex
9dd63c1da4
Merge pull request #1636 from arc53/dependabot/pip/application/duckduckgo-search-7.4.2
...
build(deps): bump duckduckgo-search from 6.3.0 to 7.4.2 in /application
2025-02-18 21:55:44 +00:00
aidanbennettjones
7ff03ab098
Enables "Enter" Key Functionality for Edit Chat Submission
2025-02-18 15:58:37 -05:00
Alex
750345d209
feat: architecrure guide
2025-02-18 14:51:17 +00:00
Alex
03ee16f5ca
Update _app.mdx
2025-02-18 09:09:37 +00:00
Alex
586fc80c19
Merge pull request #1640 from ManishMadan2882/docs
2025-02-18 08:54:28 +00:00
ManishMadan2882
13cd221fe5
(feat:widget) udpate docs
2025-02-18 14:19:53 +05:30
Siddhant Rai
f35af54e9f
refactor: clean up code and improve UI elements in various components
2025-02-18 13:10:35 +05:30
Alex
67e37f1ce1
bump docs widget docs
2025-02-17 23:46:23 +00:00
ManishMadan2882
49ff27a5fe
Merge branch 'main' of https://github.com/manishmadan2882/docsgpt
2025-02-18 04:22:32 +05:30
ManishMadan2882
04730ba8c7
(feat:theme)exacting the designs
2025-02-18 04:20:20 +05:30
Alex
b2fcf91958
Merge pull request #1637 from arc53/feat/sources-in-widget
...
Feat/sources in widget
2025-02-17 21:55:02 +00:00
ManishMadan2882
b78d2bd4b1
(feat:widget) add optional sources
2025-02-18 02:09:13 +05:30
dependabot[bot]
2612ce5ad9
build(deps): bump duckduckgo-search from 6.3.0 to 7.4.2 in /application
...
Bumps [duckduckgo-search](https://github.com/deedy5/duckduckgo_search ) from 6.3.0 to 7.4.2.
- [Release notes](https://github.com/deedy5/duckduckgo_search/releases )
- [Commits](https://github.com/deedy5/duckduckgo_search/compare/v6.3.0...v7.4.2 )
---
updated-dependencies:
- dependency-name: duckduckgo-search
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-17 20:34:44 +00:00
Manish Madan
798913740e
Merge pull request #1317 from utin-francis-peter/feat/sources-in-react-widget
...
Feat/sources in react widget
2025-02-17 16:26:43 +05:30
Manish Madan
7d0445cc20
Merge branch 'main' into feat/sources-in-react-widget
2025-02-17 15:41:34 +05:30
Alex
361f6895ee
Merge pull request #1514 from ayaan-qadri/Fixing-1513
2025-02-16 20:10:33 +00:00
Alex
47442f4f58
fix: bandit workflow only on main repo
2025-02-15 15:06:18 +00:00
dependabot[bot]
307c2e1682
build(deps): bump openapi-schema-validator in /application
...
Bumps [openapi-schema-validator](https://github.com/python-openapi/openapi-schema-validator ) from 0.6.2 to 0.6.3.
- [Release notes](https://github.com/python-openapi/openapi-schema-validator/releases )
- [Commits](https://github.com/python-openapi/openapi-schema-validator/compare/0.6.2...0.6.3 )
---
updated-dependencies:
- dependency-name: openapi-schema-validator
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-14 14:49:26 +00:00
Alex
2190359e4d
Merge pull request #1631 from arc53/dependabot/pip/application/anthropic-0.45.2
...
build(deps): bump anthropic from 0.40.0 to 0.45.2 in /application
2025-02-14 14:47:32 +00:00
Alex
27a933c7b7
Merge pull request #1628 from ManishMadan2882/main
...
Smoother transition in settings
2025-02-14 14:47:16 +00:00
ManishMadan2882
71970a0d1d
(feat:transit): reduce delay to 250
2025-02-14 20:06:50 +05:30
ManishMadan2882
7661273cfd
(fix/logs) append loader
2025-02-14 19:50:19 +05:30
ManishMadan2882
cd06334049
(feat:transitions) uniform color and animation
2025-02-14 17:38:58 +05:30
Alex
05319e36a7
Merge pull request #1630 from siiddhantt/feat/show-tool-execution
...
feat: tool calls tracking
2025-02-14 10:27:15 +00:00
ManishMadan2882
200a3b81e5
(feat:loaders) loader for logs, dropdown
2025-02-14 02:20:29 +05:30
dependabot[bot]
5647755762
build(deps): bump anthropic from 0.40.0 to 0.45.2 in /application
...
Bumps [anthropic](https://github.com/anthropics/anthropic-sdk-python ) from 0.40.0 to 0.45.2.
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases )
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md )
- [Commits](https://github.com/anthropics/anthropic-sdk-python/compare/v0.40.0...v0.45.2 )
---
updated-dependencies:
- dependency-name: anthropic
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-13 20:24:49 +00:00
ManishMadan2882
adb2947b52
(feat:transitions): reshaped the tablular loaders
2025-02-14 01:01:07 +05:30
Siddhant Rai
7b05afab74
refactor: formatting + token limit for gemini-2.0-flash-exp
2025-02-14 00:27:27 +05:30
Siddhant Rai
5cf5bed6a8
feat: enhance tool call handling with structured message cleaning and improved UI display
2025-02-14 00:15:01 +05:30
Alex
095cb58df3
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-02-13 11:48:59 +00:00
ManishMadan2882
181bf69994
(feat:transitions) custom hook to loading state
2025-02-13 17:16:17 +05:30
Alex
927b513bf8
fix: error warning
2025-02-13 11:44:05 +00:00
Alex
05801cd90c
Update README.md
2025-02-13 11:37:47 +00:00
Alex
a8ac00469d
fix: bandit
2025-02-13 11:30:02 +00:00
Alex
1e3ae948a2
feat: add static code analysis
2025-02-13 11:25:03 +00:00
Alex
2d8aa229c6
fix: used for security comment
2025-02-13 11:10:44 +00:00
Alex
84f4812189
Update CONTRIBUTING.md
2025-02-13 10:48:49 +00:00
Siddhant Rai
8a3612e56c
fix: improve tool call handling and UI adjustments
2025-02-13 05:02:10 +05:30
ManishMadan2882
d08861fb30
(fix/docs) revert effected portions
2025-02-13 01:16:11 +05:30
ManishMadan2882
ecc0f9d9f5
Merge branch 'main' of https://github.com/arc53/docsgpt
2025-02-13 00:17:58 +05:30
Siddhant Rai
e209699b19
feat: add tool calls tracking and show in frontend
2025-02-12 21:47:47 +05:30
Alex
c8d8690cfd
Update README.md
2025-02-12 16:09:53 +00:00
Alex
59d05b698a
Update README.md
2025-02-12 16:09:22 +00:00
Alex
1bcbfc8d18
Merge pull request #1629 from arc53/easy-deploy
2025-02-12 15:13:36 +00:00
Pavel
bafed63d40
super-final
2025-02-12 17:41:59 +03:00
ManishMadan2882
828a056e21
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-02-12 20:10:36 +05:30
ManishMadan2882
9424f6303a
(feat:upload) smooth transitions on advanced fields
2025-02-12 20:10:21 +05:30
Pavel
c0dc5c3a4d
finished
2025-02-12 17:33:11 +03:00
Alex
d0fb3da285
Merge pull request #1626 from arc53/dependabot/pip/application/prompt-toolkit-3.0.50
...
build(deps): bump prompt-toolkit from 3.0.48 to 3.0.50 in /application
2025-02-12 13:49:50 +00:00
Pavel
ccce01800d
index-desc
2025-02-12 14:43:24 +03:00
Pavel
b44b9d8016
models+guide-upd+extentions
2025-02-12 14:38:21 +03:00
dependabot[bot]
7592c45bd9
build(deps): bump prompt-toolkit from 3.0.48 to 3.0.50 in /application
...
Bumps [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit ) from 3.0.48 to 3.0.50.
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases )
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG )
- [Commits](https://github.com/prompt-toolkit/python-prompt-toolkit/compare/3.0.48...3.0.50 )
---
updated-dependencies:
- dependency-name: prompt-toolkit
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-12 10:32:09 +00:00
Alex
b024936ad7
Update devc-welcome.md
2025-02-12 09:48:21 +00:00
Manish Madan
be2246283f
Merge branch 'arc53:main' into main
2025-02-12 00:00:23 +05:30
ManishMadan2882
a7969f6ec8
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-02-11 23:58:14 +05:30
ManishMadan2882
ac447dd055
(feat:settings) smoother transitions
2025-02-11 23:55:30 +05:30
Pavel
28cdbe407c
tools-remove
2025-02-11 21:19:09 +03:00
Alex
bf486082c9
fix: centering
2025-02-11 17:27:45 +00:00
Alex
41290b463c
feat: cards
2025-02-11 17:17:12 +00:00
Pavel
385ebe234e
setup+development-docs
2025-02-11 19:17:59 +03:00
Alex
72e9fcc895
Update README.md
2025-02-11 16:08:48 +00:00
Alex
5f42e4ac3f
fix: default file codespace
2025-02-11 09:53:26 +00:00
Alex
926ec89f48
Create devc-welcome.md
2025-02-11 09:48:45 +00:00
GH Action - Upstream Sync
440e1b9156
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-02-11 01:19:54 +00:00
ManishMadan2882
ea0a6e413d
(feat:bubble) formattedtable/inline code
2025-02-11 02:07:54 +05:30
Alex
0de4241b56
Merge pull request #1625 from arc53/handle-bad-tool-names
...
Handle bad tool names
2025-02-10 17:25:45 +00:00
Alex
6e8a53a204
fix: open new tool after its added
2025-02-10 16:52:59 +00:00
Alex
60772889d5
fix: handle bad tool name input
2025-02-10 16:20:37 +00:00
Alex
7db7c9e978
Merge pull request #1612 from arc53/dependabot/pip/application/marshmallow-3.26.1
...
build(deps): bump marshmallow from 3.24.1 to 3.26.1 in /application
2025-02-10 13:19:04 +00:00
dependabot[bot]
d85bf67103
build(deps): bump marshmallow from 3.24.1 to 3.26.1 in /application
...
Bumps [marshmallow](https://github.com/marshmallow-code/marshmallow ) from 3.24.1 to 3.26.1.
- [Changelog](https://github.com/marshmallow-code/marshmallow/blob/dev/CHANGELOG.rst )
- [Commits](https://github.com/marshmallow-code/marshmallow/compare/3.24.1...3.26.1 )
---
updated-dependencies:
- dependency-name: marshmallow
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-10 13:06:17 +00:00
Alex
926f2e9f48
Merge pull request #1621 from ManishMadan2882/main
...
Refactor Upload
2025-02-10 13:04:53 +00:00
ManishMadan2882
2019f29e8c
(clean) mock changes
2025-02-10 16:02:37 +05:30
ManishMadan2882
3b45b63d2a
(fix:upload) ui adjust
2025-02-10 16:02:02 +05:30
Alex
1c08c53121
Merge pull request #1624 from siiddhantt/feat/edit-chunks
...
feat: view chunks for docs and add/delete them
2025-02-10 09:48:11 +00:00
Siddhant Rai
7623bde159
feat: add update chunk API endpoint and service method
2025-02-10 09:36:18 +05:30
GH Action - Upstream Sync
1ed0f5e78d
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-02-10 01:21:14 +00:00
Piotr Idzik
568ab33a37
style: use underscore for an unused loop variable ( #1593 )
...
This addresses the SC2034 warning.
2025-02-09 22:56:52 +00:00
Alex
f639b052e3
fix: remove debugging code
2025-02-09 12:08:19 +00:00
Alex
56f91948f8
feat: improve logging
2025-02-09 12:05:37 +00:00
GH Action - Upstream Sync
6c5e481318
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-02-09 01:24:07 +00:00
ManishMadan2882
f487f1e8c1
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-02-09 01:31:15 +05:30
ManishMadan2882
68ee9743fe
(feat:upload) advanced fields
2025-02-09 01:31:01 +05:30
Alex
f4cb48ed0d
fix: logging
2025-02-08 19:29:54 +00:00
Alex
ad77fe1116
fix: logging in submodules
2025-02-08 18:07:03 +00:00
Alex
28a0667da6
fix: minor logging issue
2025-02-08 12:49:42 +00:00
Siddhant Rai
1f0366c989
Merge branch 'feat/edit-chunks' of https://github.com/siiddhantt/DocsGPT into feat/edit-chunks
2025-02-08 15:00:20 +05:30
Siddhant Rai
3a51922650
fix: linting error
2025-02-08 15:00:02 +05:30
Siddhant Rai
82b2be5046
Merge branch 'main' into feat/edit-chunks
2025-02-08 14:56:34 +05:30
Siddhant Rai
0fc9718c35
feat: loading state and spinner + delete chunk option
2025-02-08 14:52:32 +05:30
GH Action - Upstream Sync
976733a3c3
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-02-08 01:17:57 +00:00
Alex
5d17072709
fix: readme space
2025-02-07 19:22:01 +00:00
Alex
fbad183d39
fix: post create devcontainers
2025-02-07 18:44:24 +00:00
Alex
7356a2ff07
fix: minor docker fixes
2025-02-07 18:39:07 +00:00
Alex
6ff948c107
fix: dockerfile in devcontainer build dir fix
2025-02-07 14:35:44 +00:00
Alex
e3ebce117b
fix: devcontainer paths 2
2025-02-07 14:34:19 +00:00
Alex
ce69b09730
fix: devcontainer paths
2025-02-07 14:30:15 +00:00
Alex
c823cef405
fix: devcontainer codespaces correct api address
2025-02-07 14:25:09 +00:00
Siddhant Rai
0379b81d43
feat: view and add document chunks for mongodb and faiss
2025-02-07 19:39:07 +05:30
ManishMadan2882
6a997163fd
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-02-07 19:37:39 +05:30
ManishMadan2882
93f8466230
(feat:Upload): required form fields
2025-02-07 19:37:24 +05:30
ManishMadan2882
114c8d3c22
(feat:Input) required prop
2025-02-07 17:59:28 +05:30
GH Action - Upstream Sync
3e77e79194
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-02-07 01:20:29 +00:00
dependabot[bot]
ca91d36979
build(deps): bump pydantic from 2.10.4 to 2.10.6 in /application
...
Bumps [pydantic](https://github.com/pydantic/pydantic ) from 2.10.4 to 2.10.6.
- [Release notes](https://github.com/pydantic/pydantic/releases )
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md )
- [Commits](https://github.com/pydantic/pydantic/compare/v2.10.4...v2.10.6 )
---
updated-dependencies:
- dependency-name: pydantic
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-02-06 20:01:07 +00:00
Alex
d47232246a
fix: remove old pypdf
2025-02-06 19:59:42 +00:00
Alex
d819222cf7
fix: remove unused import
2025-02-06 19:46:11 +00:00
Alex
0c4c4d5622
fix: improve error logging
2025-02-06 19:44:09 +00:00
Alex
ad051ed083
fix: docker compose files
2025-02-06 18:51:17 +00:00
ManishMadan2882
1aa0af3e58
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-02-06 20:16:31 +05:30
ManishMadan2882
72556b37f5
(refactor:upload) simplify call to /api/remote
2025-02-06 20:16:07 +05:30
Manish Madan
0bddae5775
Merge branch 'arc53:main' into main
2025-02-06 04:09:08 +05:30
ManishMadan2882
1f1e710a6d
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-02-06 04:07:51 +05:30
ManishMadan2882
b57d418b98
(refactor:upload) remove redundant types
2025-02-06 04:04:18 +05:30
Alex
0913c43219
feat: edit deploymen files locations
2025-02-05 18:04:41 +00:00
Alex
d754a43fba
feat: devcontainer
2025-02-05 11:54:06 +00:00
Manish Madan
f97b56a87b
(fix): date formatting ( #1617 )
2025-02-05 10:20:14 +00:00
Michele Grimaldi
2f78398914
Fixing issues #1445 ( #1603 )
...
* Fixing issues #1445
* Fixed issue #1445
2025-02-05 08:52:18 +00:00
Manish Madan
81b9a34e5e
Merge branch 'arc53:main' into main
2025-02-05 03:33:20 +05:30
Alex
73ba078efc
fix: init push to ghcr
2025-02-04 22:02:56 +00:00
ManishMadan2882
1ffe0ad85c
(fix): date formatting
2025-02-05 03:31:17 +05:30
Alex
797b36a81e
fix: container name
2025-02-04 21:56:26 +00:00
Alex
b82c14892e
Arm builds ( #1615 )
...
* fix: matrix build
* fix: trigger build
* fix: trigger wrong name
* fix: runner name
* fix: manifest fix
* fix: yaml error
* fix: manifest build
* fix: build error
* feat: multi arch containers
2025-02-04 21:02:44 +00:00
Alex
a8891dabec
feat: docker arm64
2025-02-04 17:46:44 +00:00
Alex
86ba797665
Merge pull request #1614 from arc53/documentation-footer
...
footer text with links
2025-02-04 17:35:22 +00:00
Pavel
3830dcb3f3
footer text with links
2025-02-04 19:42:24 +03:00
Alex
c20fe7a773
Update docker-compose.yaml
2025-02-03 13:21:28 +00:00
Alex
fa01f86b19
Merge pull request #1608 from siiddhantt/feat/api-tool
...
feat: API Tool
2025-02-03 11:48:57 +00:00
Alex
9583095734
Merge pull request #1586 from aalghooneh/main
...
websocket implementation of elevenlabs
2025-02-03 10:00:00 +00:00
Siddhant Rai
a5b2eb3a28
feat: api tool config section + agent refactor for more llm fields
2025-02-03 06:07:10 +05:30
Alex
72f2784588
Merge pull request #1610 from ManishMadan2882/main
...
Refactor: Ingestor types for remote resources in Upload Component
2025-02-01 11:30:54 +00:00
ManishMadan2882
5c5b730bb8
purge logs, unused
2025-02-01 00:40:30 +05:30
ManishMadan2882
b9ec6b4315
(refactor:upload) separate name from the configurations
2025-02-01 00:08:01 +05:30
ManishMadan2882
4b83fa3549
(refactor:remote types) enhance abstraction
2025-01-31 06:29:35 +05:30
ManishMadan2882
a69e81076a
(feat:components) add label props
2025-01-31 06:23:54 +05:30
ManishMadan2882
4cd2b73f19
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-01-31 00:48:53 +05:30
ManishMadan2882
4ea0bebd92
(refactor:remote uploads) dynamic ingestor types
2025-01-31 00:48:03 +05:30
Alex
bbcdae25a1
Update README.md
2025-01-29 15:33:06 +00:00
Ayaan
220a801138
Requested changes
2025-01-29 20:29:39 +05:30
Ayaan
c6821d9cc3
Improve edit message interface
2025-01-29 20:11:55 +05:30
Ayaan
8b59245e6a
Decreased margin right for message hover button
2025-01-29 20:06:10 +05:30
Manish Madan
9b5ee2e694
Merge pull request #1606 from arc53/dependabot/npm_and_yarn/frontend/reduxjs/toolkit-2.5.1
...
build(deps): bump @reduxjs/toolkit from 2.2.7 to 2.5.1 in /frontend
2025-01-29 16:57:17 +05:30
dependabot[bot]
e932d86b69
build(deps): bump @reduxjs/toolkit from 2.2.7 to 2.5.1 in /frontend
...
Bumps [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit ) from 2.2.7 to 2.5.1.
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases )
- [Commits](https://github.com/reduxjs/redux-toolkit/compare/v2.2.7...v2.5.1 )
---
updated-dependencies:
- dependency-name: "@reduxjs/toolkit"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-29 09:38:06 +00:00
Manish Madan
96f05311b8
Merge pull request #1596 from arc53/dependabot/npm_and_yarn/frontend/vite-5.4.14
...
build(deps-dev): bump vite from 5.4.11 to 5.4.14 in /frontend
2025-01-29 14:58:18 +05:30
dependabot[bot]
3e2d68782c
build(deps-dev): bump vite from 5.4.11 to 5.4.14 in /frontend
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 5.4.11 to 5.4.14.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.14/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v5.4.14/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-29 09:22:13 +00:00
Manish Madan
db2a4349cb
Merge pull request #1590 from arc53/dependabot/npm_and_yarn/frontend/katex-0.16.21
...
build(deps): bump katex from 0.16.11 to 0.16.21 in /frontend
2025-01-29 14:46:47 +05:30
Ahmad Alghooneh
2014fe83a3
fixed the import error
2025-01-28 18:29:56 -05:00
Alex
55439aab5e
Merge pull request #1607 from ManishMadan2882/main
...
Perfecting Settings/Documents
2025-01-28 10:08:32 +00:00
ManishMadan2882
8c91864f1c
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-01-28 13:53:05 +05:30
Siddhant Rai
9319ec5bb2
feat: api tool + fix google ai no parameters error
2025-01-28 09:53:32 +05:30
ManishMadan2882
83e4023c19
(feat:settings/docs) confirm on delete
2025-01-28 04:50:28 +05:30
GH Action - Upstream Sync
a14701bdd2
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-01-27 01:20:14 +00:00
ManishMadan2882
379dd011ff
(fix:settings/docs) avoid refresh on modal close
2025-01-27 03:32:32 +05:30
ManishMadan2882
49b3ccfe2b
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-01-27 03:01:56 +05:30
ManishMadan2882
16608370a6
(feat:settings)docs table design perfection
2025-01-27 03:01:39 +05:30
Alex
53015c9d8e
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-01-26 15:43:01 +00:00
Alex
6d68b89ea0
fix: history bug on 2nd message
2025-01-26 15:42:47 +00:00
Alex
254582da89
Update README.md
2025-01-26 13:10:29 +00:00
Alex
af54b7cfef
Update README.md
2025-01-26 13:06:00 +00:00
GH Action - Upstream Sync
f13149db8e
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-01-26 01:21:17 +00:00
Alex
79912a4067
Update README.md
2025-01-25 20:55:24 +00:00
Alex
c0b6b85ec0
Merge pull request #1604 from arc53/update-docs-readme
...
Update docs readme
2025-01-25 20:47:10 +00:00
Alex
a4895f5166
fix: add links to dev env instructions
2025-01-25 20:44:56 +00:00
Alex
4d7670a12e
fix: name
2025-01-25 20:41:59 +00:00
Alex
8c21954049
feat: improved docs
2025-01-25 20:36:10 +00:00
Alex
132fab1c03
feat: improve readme
2025-01-25 20:14:23 +00:00
Alex
e7b8d71010
Update index.mdx
2025-01-25 15:10:30 +00:00
Alex
fff8cfdee0
Update index.mdx
2025-01-25 15:08:36 +00:00
Alex
3e45a3b4d8
Update README.md
2025-01-25 14:39:38 +00:00
GH Action - Upstream Sync
7c66e21356
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-01-25 01:15:23 +00:00
Alex
c477a49777
Merge pull request #1600 from arc53/postgres-tool
...
feat: postgres tool
2025-01-24 15:11:08 +00:00
Alex
5a38c09f8d
feat: postgres tool
2025-01-24 15:06:16 +00:00
ManishMadan2882
fe4657b122
(fix:analytics) updated to show feedback
2025-01-24 02:46:57 +05:30
GH Action - Upstream Sync
c1dcd2e57d
Merge branch 'main' of https://github.com/arc53/DocsGPT
2025-01-23 01:18:56 +00:00
ManishMadan2882
26d993674e
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-01-23 02:50:52 +05:30
ManishMadan2882
9d475001ee
(feat:chatbots) confirm before deletion
2025-01-23 02:50:24 +05:30
ManishMadan2882
34eb25b0ba
(feat:documents) design perfection
2025-01-23 01:15:01 +05:30
ManishMadan2882
716b935177
(feat:documents) formatting date
2025-01-23 01:12:14 +05:30
Alex
92528af600
Update README.md
2025-01-22 19:14:40 +00:00
Alex
2606e6b82d
Merge pull request #1594 from arc53/googleai-compatability-tools
...
Googleai compatability tools
2025-01-21 09:53:56 +00:00
Alex
b965ce7376
Merge branch 'main' into googleai-compatability-tools
2025-01-21 09:49:09 +00:00
Alex
048f1b53c0
Merge pull request #1581 from siiddhantt/refactor/parser-and-handler-in-tools
...
refactor: tool agent for action parser and handlers
2025-01-21 09:48:22 +00:00
Alex
43340c4aa8
fix: finale test
2025-01-21 09:44:53 +00:00
Alex
9f073fcbcf
fix: tests
2025-01-21 09:39:02 +00:00
Alex
c0c60a4875
fix: ruff linting
2025-01-21 09:37:11 +00:00
Alex
94f682e461
fix roles in retriever layer
2025-01-21 09:31:38 +00:00
Siddhant Rai
1086bfe1ba
fix: wrong role in req messages
2025-01-21 07:19:02 +05:30
Siddhant Rai
d441d5763f
fix: decorators + client error
2025-01-20 19:44:14 +05:30
Alex
c0a2daa3a3
Delete HACKTOBERFEST.md
2025-01-20 13:09:38 +00:00
Alex
3de51b6a65
Merge pull request #1588 from arc53/web_loader_fix
...
web loader fix
2025-01-20 12:45:00 +00:00
Alex
a741388447
fix: system message
2025-01-19 22:21:50 +00:00
Alex
1ea9b87498
Merge pull request #1591 from ManishMadan2882/main
...
Sync locales
2025-01-18 22:30:18 +00:00
ManishMadan2882
0cab007c37
(fix:locale) missing text
2025-01-19 01:37:14 +05:30
Siddhant Rai
4a331db5fc
fix: api_key attribute
2025-01-18 20:00:51 +05:30
Siddhant Rai
904b0bf2da
fix: GoogleLLM, agent and handler according to the new genai SDK
2025-01-18 19:56:25 +05:30
ManishMadan2882
90425542f8
(fix:locales) missing translations
2025-01-18 18:58:12 +05:30
Alex
eae0141d50
Merge pull request #1589 from arc53/dependabot/npm_and_yarn/docs/katex-0.16.21
...
build(deps): bump katex from 0.16.10 to 0.16.21 in /docs
2025-01-18 12:37:29 +00:00
ManishMadan2882
9594c82005
(purge) unused file
2025-01-18 03:58:29 +05:30
ManishMadan2882
657aacceb5
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-01-18 03:46:21 +05:30
ManishMadan2882
a35dbf99a6
(sync:locales) with static content
2025-01-18 03:46:05 +05:30
dependabot[bot]
0d80f5d752
build(deps): bump katex from 0.16.11 to 0.16.21 in /frontend
...
Bumps [katex](https://github.com/KaTeX/KaTeX ) from 0.16.11 to 0.16.21.
- [Release notes](https://github.com/KaTeX/KaTeX/releases )
- [Changelog](https://github.com/KaTeX/KaTeX/blob/main/CHANGELOG.md )
- [Commits](https://github.com/KaTeX/KaTeX/compare/v0.16.11...v0.16.21 )
---
updated-dependencies:
- dependency-name: katex
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-17 21:38:19 +00:00
dependabot[bot]
b36f4dfd08
build(deps): bump katex from 0.16.10 to 0.16.21 in /docs
...
Bumps [katex](https://github.com/KaTeX/KaTeX ) from 0.16.10 to 0.16.21.
- [Release notes](https://github.com/KaTeX/KaTeX/releases )
- [Changelog](https://github.com/KaTeX/KaTeX/blob/main/CHANGELOG.md )
- [Commits](https://github.com/KaTeX/KaTeX/compare/v0.16.10...v0.16.21 )
---
updated-dependencies:
- dependency-name: katex
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-17 21:34:08 +00:00
Pavel
fddee69f92
web loader fix
...
Changes web loader to the correct output.
2025-01-17 19:13:23 +03:00
Siddhant Rai
ec270a3b54
update: requirements
2025-01-17 09:51:11 +05:30
Siddhant Rai
c97d1e3363
fix: google parser, llm handler and other errors
2025-01-17 09:22:41 +05:30
Ahmad Reza Alghooneh
554c1ed1f7
Merge branch 'main' into main
2025-01-16 20:42:54 -05:00
Alex
a90b286482
Merge pull request #1584 from arc53/dependabot/pip/application/primp-0.10.0
...
build(deps): bump primp from 0.9.3 to 0.10.0 in /application
2025-01-16 13:49:01 +00:00
ManishMadan2882
cc78ea7222
(fix:locales) sync static text
2025-01-16 18:24:27 +05:30
Ahmad Reza Alghooneh
7f2cc3b232
Delete application/tts/output_audio.mp3
2025-01-16 00:45:41 -05:00
Ahmad Alghooneh
00b10f17c1
eleven labs
2025-01-16 00:41:09 -05:00
dependabot[bot]
cab6305462
build(deps): bump primp from 0.9.3 to 0.10.0 in /application
...
Bumps [primp](https://github.com/deedy5/primp ) from 0.9.3 to 0.10.0.
- [Release notes](https://github.com/deedy5/primp/releases )
- [Commits](https://github.com/deedy5/primp/compare/v0.9.3...v0.10.0 )
---
updated-dependencies:
- dependency-name: primp
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-15 20:59:45 +00:00
Alex
7218403ad7
Merge pull request #1582 from arc53/scraper-2
...
scraper with markdownify
2025-01-15 12:15:37 +00:00
Siddhant Rai
811dfecf98
refactor: tool agent for action parser and handlers
2025-01-15 16:35:26 +05:30
Alex
acbbf30a0e
Merge pull request #1577 from arc53/dependabot/pip/application/flask-3.1.0
...
build(deps): bump flask from 3.0.3 to 3.1.0 in /application
2025-01-15 10:52:57 +00:00
Alex
4d29f8f679
Merge pull request #1578 from arc53/dependabot/pip/application/transformers-4.48.0
...
build(deps): bump transformers from 4.47.1 to 4.48.0 in /application
2025-01-15 10:52:42 +00:00
Pavel
13fcbe3e74
scraper with markdownify
2025-01-15 01:08:09 +03:00
dependabot[bot]
850b79f459
build(deps): bump transformers from 4.47.1 to 4.48.0 in /application
...
Bumps [transformers](https://github.com/huggingface/transformers ) from 4.47.1 to 4.48.0.
- [Release notes](https://github.com/huggingface/transformers/releases )
- [Commits](https://github.com/huggingface/transformers/compare/v4.47.1...v4.48.0 )
---
updated-dependencies:
- dependency-name: transformers
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-14 20:35:19 +00:00
dependabot[bot]
9e6f970bc4
build(deps): bump flask from 3.0.3 to 3.1.0 in /application
...
Bumps [flask](https://github.com/pallets/flask ) from 3.0.3 to 3.1.0.
- [Release notes](https://github.com/pallets/flask/releases )
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/flask/compare/3.0.3...3.1.0 )
---
updated-dependencies:
- dependency-name: flask
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-14 20:35:08 +00:00
ManishMadan2882
cbcb717aee
(feat:locals) sync with en.json
2025-01-14 16:52:35 +05:30
ManishMadan2882
5aea46c214
(feat:settings) locale lang for analytics and logs
2025-01-14 15:49:01 +05:30
Alex
6394720c5a
Merge pull request #1570 from ManishMadan2882/basic-ui
...
Widget fixes
2025-01-13 23:46:34 +00:00
Alex
6af627ea97
Merge pull request #1574 from arc53/dependabot/pip/application/langsmith-0.2.10
...
build(deps): bump langsmith from 0.2.6 to 0.2.10 in /application
2025-01-13 23:41:27 +00:00
Alex
85277f2b4f
Merge pull request #1572 from arc53/dependabot/pip/application/openapi3-parser-1.1.19
...
build(deps): bump openapi3-parser from 1.1.18 to 1.1.19 in /application
2025-01-13 23:40:51 +00:00
Alex
7b0876204e
Merge pull request #1571 from arc53/dependabot/pip/application/tqdm-4.67.1
...
build(deps): bump tqdm from 4.66.5 to 4.67.1 in /application
2025-01-13 23:40:28 +00:00
Alex
cf65942504
Merge pull request #1573 from arc53/dependabot/pip/application/elastic-transport-8.17.0
...
build(deps): bump elastic-transport from 8.15.1 to 8.17.0 in /application
2025-01-13 23:39:19 +00:00
dependabot[bot]
7369b02bf4
build(deps): bump langsmith from 0.2.6 to 0.2.10 in /application
...
Bumps [langsmith](https://github.com/langchain-ai/langsmith-sdk ) from 0.2.6 to 0.2.10.
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases )
- [Commits](https://github.com/langchain-ai/langsmith-sdk/compare/v0.2.6...v0.2.10 )
---
updated-dependencies:
- dependency-name: langsmith
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-13 20:06:32 +00:00
dependabot[bot]
1438fea76b
build(deps): bump elastic-transport in /application
...
Bumps [elastic-transport](https://github.com/elastic/elastic-transport-python ) from 8.15.1 to 8.17.0.
- [Release notes](https://github.com/elastic/elastic-transport-python/releases )
- [Changelog](https://github.com/elastic/elastic-transport-python/blob/v8.17.0/CHANGELOG.md )
- [Commits](https://github.com/elastic/elastic-transport-python/compare/v8.15.1...v8.17.0 )
---
updated-dependencies:
- dependency-name: elastic-transport
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-13 20:06:27 +00:00
dependabot[bot]
e0912f0cf0
build(deps): bump openapi3-parser from 1.1.18 to 1.1.19 in /application
...
Bumps [openapi3-parser](https://github.com/manchenkoff/openapi3-parser ) from 1.1.18 to 1.1.19.
- [Release notes](https://github.com/manchenkoff/openapi3-parser/releases )
- [Commits](https://github.com/manchenkoff/openapi3-parser/compare/v1.1.18...v1.1.19 )
---
updated-dependencies:
- dependency-name: openapi3-parser
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-13 20:06:20 +00:00
dependabot[bot]
838525b452
build(deps): bump tqdm from 4.66.5 to 4.67.1 in /application
...
Bumps [tqdm](https://github.com/tqdm/tqdm ) from 4.66.5 to 4.67.1.
- [Release notes](https://github.com/tqdm/tqdm/releases )
- [Commits](https://github.com/tqdm/tqdm/compare/v4.66.5...v4.67.1 )
---
updated-dependencies:
- dependency-name: tqdm
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-13 20:06:18 +00:00
ManishMadan2882
774cbbf47a
(fix/widget) centered the toolkit msg
2025-01-13 18:20:08 +05:30
Alex
d15bc6d32c
Merge pull request #1569 from arc53/dependabot/pip/application/pillow-11.1.0
...
build(deps): bump pillow from 10.4.0 to 11.1.0 in /application
2025-01-13 11:57:37 +00:00
Alex
99e0766f53
Merge pull request #1528 from ManishMadan2882/basic-ui
...
Basic UI
2025-01-13 10:58:37 +00:00
Alex
51225b18b2
add google
2025-01-13 10:37:53 +00:00
Ahmad Alghooneh
96ab01b0c1
commited reqs
2025-01-13 00:53:28 -05:00
Ahmad Alghooneh
a4eb4ea66d
initial websocket impl
2025-01-13 00:33:10 -05:00
ManishMadan2882
54819e288a
(feat:accessibility) add missing labels, alt text and contrast
2025-01-13 04:53:50 +05:30
ManishMadan2882
ec5fbded4f
(fix:pa11y) aria-labels, alt text and contrast^C
2025-01-12 01:22:25 +05:30
dependabot[bot]
f939576311
build(deps): bump pillow from 10.4.0 to 11.1.0 in /application
...
Bumps [pillow](https://github.com/python-pillow/Pillow ) from 10.4.0 to 11.1.0.
- [Release notes](https://github.com/python-pillow/Pillow/releases )
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst )
- [Commits](https://github.com/python-pillow/Pillow/compare/10.4.0...11.1.0 )
---
updated-dependencies:
- dependency-name: pillow
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-10 21:58:53 +00:00
Alex
628784da35
Merge pull request #1568 from arc53/dependabot/pip/application/pathable-0.4.4
...
build(deps): bump pathable from 0.4.3 to 0.4.4 in /application
2025-01-10 21:58:01 +00:00
Alex
9ea3231060
Merge pull request #1567 from arc53/dependabot/pip/application/langchain-openai-0.3.0
...
build(deps): bump langchain-openai from 0.2.14 to 0.3.0 in /application
2025-01-10 21:57:39 +00:00
Alex
0b7858494f
Merge pull request #1566 from arc53/dependabot/pip/application/boto3-1.35.97
...
build(deps): bump boto3 from 1.34.153 to 1.35.97 in /application
2025-01-10 21:57:18 +00:00
dependabot[bot]
8f98c8a3c9
build(deps): bump pathable from 0.4.3 to 0.4.4 in /application
...
Bumps [pathable](https://github.com/p1c2u/pathable ) from 0.4.3 to 0.4.4.
- [Release notes](https://github.com/p1c2u/pathable/releases )
- [Commits](https://github.com/p1c2u/pathable/compare/0.4.3...0.4.4 )
---
updated-dependencies:
- dependency-name: pathable
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-10 20:58:17 +00:00
dependabot[bot]
67f9b3a6e0
build(deps): bump langchain-openai from 0.2.14 to 0.3.0 in /application
...
Bumps [langchain-openai](https://github.com/langchain-ai/langchain ) from 0.2.14 to 0.3.0.
- [Release notes](https://github.com/langchain-ai/langchain/releases )
- [Commits](https://github.com/langchain-ai/langchain/compare/langchain-openai==0.2.14...langchain-openai==0.3.0 )
---
updated-dependencies:
- dependency-name: langchain-openai
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-10 20:58:13 +00:00
dependabot[bot]
5defc0a87b
build(deps): bump boto3 from 1.34.153 to 1.35.97 in /application
...
Bumps [boto3](https://github.com/boto/boto3 ) from 1.34.153 to 1.35.97.
- [Release notes](https://github.com/boto/boto3/releases )
- [Commits](https://github.com/boto/boto3/compare/1.34.153...1.35.97 )
---
updated-dependencies:
- dependency-name: boto3
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-10 20:58:08 +00:00
Alex
b4bcb09707
Merge pull request #1536 from arc53/dependabot/npm_and_yarn/frontend/tailwindcss-3.4.17
...
build(deps-dev): bump tailwindcss from 3.4.15 to 3.4.17 in /frontend
2025-01-10 14:43:59 +00:00
Alex
b2d74f66b3
Merge pull request #1541 from arc53/dependabot/npm_and_yarn/frontend/prettier-3.4.2
...
build(deps-dev): bump prettier from 3.3.3 to 3.4.2 in /frontend
2025-01-10 14:43:40 +00:00
dependabot[bot]
75223e18ee
build(deps-dev): bump tailwindcss from 3.4.15 to 3.4.17 in /frontend
...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss ) from 3.4.15 to 3.4.17.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.17/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.15...v3.4.17 )
---
updated-dependencies:
- dependency-name: tailwindcss
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-10 14:31:23 +00:00
dependabot[bot]
4aea9c727d
build(deps-dev): bump prettier from 3.3.3 to 3.4.2 in /frontend
...
Bumps [prettier](https://github.com/prettier/prettier ) from 3.3.3 to 3.4.2.
- [Release notes](https://github.com/prettier/prettier/releases )
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/prettier/compare/3.3.3...3.4.2 )
---
updated-dependencies:
- dependency-name: prettier
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-10 14:31:21 +00:00
Alex
7d779afcd4
Merge pull request #1561 from arc53/dependabot/npm_and_yarn/frontend/prettier-plugin-tailwindcss-0.6.9
...
build(deps-dev): bump prettier-plugin-tailwindcss from 0.6.8 to 0.6.9 in /frontend
2025-01-10 14:30:08 +00:00
Alex
5cb7a69a46
Merge pull request #1558 from arc53/dependabot/pip/application/langchain-text-splitters-0.3.5
...
build(deps): bump langchain-text-splitters from 0.3.4 to 0.3.5 in /application
2025-01-09 23:47:02 +00:00
dependabot[bot]
0e88bfc570
build(deps): bump langchain-text-splitters in /application
...
Bumps [langchain-text-splitters](https://github.com/langchain-ai/langchain ) from 0.3.4 to 0.3.5.
- [Release notes](https://github.com/langchain-ai/langchain/releases )
- [Commits](https://github.com/langchain-ai/langchain/compare/langchain-text-splitters==0.3.4...langchain-text-splitters==0.3.5 )
---
updated-dependencies:
- dependency-name: langchain-text-splitters
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-09 23:43:15 +00:00
Alex
48cf56557b
Merge pull request #1560 from arc53/dependabot/pip/application/protobuf-5.29.3
...
build(deps): bump protobuf from 5.28.2 to 5.29.3 in /application
2025-01-09 23:40:27 +00:00
Alex
9c9354cf38
Merge pull request #1557 from arc53/dependabot/pip/application/orjson-3.10.14
...
build(deps): bump orjson from 3.10.7 to 3.10.14 in /application
2025-01-09 23:27:13 +00:00
Alex
e730ae66ae
Merge pull request #1556 from arc53/dependabot/pip/application/qdrant-client-1.12.2
...
build(deps): bump qdrant-client from 1.11.0 to 1.12.2 in /application
2025-01-09 23:27:00 +00:00
Alex
58d6b71808
Merge pull request #1559 from arc53/dependabot/pip/application/gtts-2.5.4
...
build(deps): bump gtts from 2.3.2 to 2.5.4 in /application
2025-01-09 23:24:08 +00:00
dependabot[bot]
4b9c1c4863
build(deps-dev): bump prettier-plugin-tailwindcss in /frontend
...
Bumps [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss ) from 0.6.8 to 0.6.9.
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.6.8...v0.6.9 )
---
updated-dependencies:
- dependency-name: prettier-plugin-tailwindcss
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-09 20:29:30 +00:00
dependabot[bot]
e1cdacaebf
build(deps): bump protobuf from 5.28.2 to 5.29.3 in /application
...
Bumps [protobuf](https://github.com/protocolbuffers/protobuf ) from 5.28.2 to 5.29.3.
- [Release notes](https://github.com/protocolbuffers/protobuf/releases )
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl )
- [Commits](https://github.com/protocolbuffers/protobuf/compare/v5.28.2...v5.29.3 )
---
updated-dependencies:
- dependency-name: protobuf
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-09 20:23:19 +00:00
dependabot[bot]
af120248d7
build(deps): bump gtts from 2.3.2 to 2.5.4 in /application
...
Bumps [gtts](https://github.com/pndurette/gTTS ) from 2.3.2 to 2.5.4.
- [Release notes](https://github.com/pndurette/gTTS/releases )
- [Changelog](https://github.com/pndurette/gTTS/blob/main/CHANGELOG.md )
- [Commits](https://github.com/pndurette/gTTS/compare/v2.3.2...v2.5.4 )
---
updated-dependencies:
- dependency-name: gtts
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-09 20:23:12 +00:00
dependabot[bot]
3749b327f9
build(deps): bump orjson from 3.10.7 to 3.10.14 in /application
...
Bumps [orjson](https://github.com/ijl/orjson ) from 3.10.7 to 3.10.14.
- [Release notes](https://github.com/ijl/orjson/releases )
- [Changelog](https://github.com/ijl/orjson/blob/master/CHANGELOG.md )
- [Commits](https://github.com/ijl/orjson/compare/3.10.7...3.10.14 )
---
updated-dependencies:
- dependency-name: orjson
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-09 20:23:04 +00:00
dependabot[bot]
017ccd6351
build(deps): bump qdrant-client from 1.11.0 to 1.12.2 in /application
...
Bumps [qdrant-client](https://github.com/qdrant/qdrant-client ) from 1.11.0 to 1.12.2.
- [Release notes](https://github.com/qdrant/qdrant-client/releases )
- [Commits](https://github.com/qdrant/qdrant-client/compare/v1.11.0...v1.12.2 )
---
updated-dependencies:
- dependency-name: qdrant-client
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-09 20:23:00 +00:00
Alex
cdc860933e
Create FUNDING.yml
2025-01-09 18:16:25 +00:00
Alex
7b408f338a
Merge pull request #1540 from arc53/dependabot/npm_and_yarn/frontend/react-chartjs-2-5.3.0
...
build(deps): bump react-chartjs-2 from 5.2.0 to 5.3.0 in /frontend
2025-01-08 21:33:03 +00:00
Alex
b326c0c9ae
Merge pull request #1555 from arc53/dependabot/pip/application/openai-1.59.5
...
build(deps): bump openai from 1.58.1 to 1.59.5 in /application
2025-01-08 21:19:59 +00:00
Alex
f06f409f2d
Merge branch 'dependabot/pip/application/openai-1.59.5' of https://github.com/arc53/DocsGPT into dependabot/pip/application/openai-1.59.5
2025-01-08 21:14:02 +00:00
Alex
a0e8b70e6d
Merge pull request #1550 from arc53/dependabot/pip/application/prompt-toolkit-3.0.48
...
build(deps): bump prompt-toolkit from 3.0.47 to 3.0.48 in /application
2025-01-08 21:12:24 +00:00
dependabot[bot]
5294178bb7
build(deps): bump prompt-toolkit from 3.0.47 to 3.0.48 in /application
...
Bumps [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit ) from 3.0.47 to 3.0.48.
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases )
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG )
- [Commits](https://github.com/prompt-toolkit/python-prompt-toolkit/compare/3.0.47...3.0.48 )
---
updated-dependencies:
- dependency-name: prompt-toolkit
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-08 21:12:13 +00:00
dependabot[bot]
9050d48bc3
build(deps): bump openai from 1.58.1 to 1.59.5 in /application
...
Bumps [openai](https://github.com/openai/openai-python ) from 1.58.1 to 1.59.5.
- [Release notes](https://github.com/openai/openai-python/releases )
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md )
- [Commits](https://github.com/openai/openai-python/compare/v1.58.1...v1.59.5 )
---
updated-dependencies:
- dependency-name: openai
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-08 21:11:48 +00:00
Alex
9d0b54f461
Merge pull request #1553 from arc53/dependabot/pip/application/marshmallow-3.24.1
...
build(deps): bump marshmallow from 3.23.2 to 3.24.1 in /application
2025-01-08 21:10:06 +00:00
Alex
4ba848a483
Merge pull request #1551 from arc53/dependabot/pip/application/urllib3-2.3.0
...
build(deps): bump urllib3 from 2.2.3 to 2.3.0 in /application
2025-01-08 21:09:41 +00:00
Alex
0b26e6232a
Merge pull request #1552 from arc53/dependabot/pip/application/pydantic-core-2.27.2
...
build(deps): bump pydantic-core from 2.23.4 to 2.27.2 in /application
2025-01-08 21:07:44 +00:00
Alex
88ad827a87
bump pydantic
2025-01-08 21:03:31 +00:00
ManishMadan2882
0b0f0a959a
Merge branch 'main' into basic-ui
2025-01-09 02:22:43 +05:30
ManishMadan2882
25ee749724
(fix:locale) sync other locales with en)
2025-01-09 02:17:49 +05:30
dependabot[bot]
204b871fa2
build(deps): bump openai from 1.58.1 to 1.59.5 in /application
...
Bumps [openai](https://github.com/openai/openai-python ) from 1.58.1 to 1.59.5.
- [Release notes](https://github.com/openai/openai-python/releases )
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md )
- [Commits](https://github.com/openai/openai-python/compare/v1.58.1...v1.59.5 )
---
updated-dependencies:
- dependency-name: openai
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-08 20:32:44 +00:00
Alex
f45db6014d
Merge pull request #1549 from ManishMadan2882/main
...
Releasing docsgpt npm library v0.4.9
2025-01-08 13:50:44 +00:00
dependabot[bot]
475850ef94
build(deps): bump marshmallow from 3.23.2 to 3.24.1 in /application
...
Bumps [marshmallow](https://github.com/marshmallow-code/marshmallow ) from 3.23.2 to 3.24.1.
- [Changelog](https://github.com/marshmallow-code/marshmallow/blob/dev/CHANGELOG.rst )
- [Commits](https://github.com/marshmallow-code/marshmallow/compare/3.23.2...3.24.1 )
---
updated-dependencies:
- dependency-name: marshmallow
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-07 20:36:03 +00:00
dependabot[bot]
602fe086b9
build(deps): bump pydantic-core from 2.23.4 to 2.27.2 in /application
...
Bumps [pydantic-core](https://github.com/pydantic/pydantic-core ) from 2.23.4 to 2.27.2.
- [Release notes](https://github.com/pydantic/pydantic-core/releases )
- [Commits](https://github.com/pydantic/pydantic-core/compare/v2.23.4...v2.27.2 )
---
updated-dependencies:
- dependency-name: pydantic-core
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-07 20:36:01 +00:00
dependabot[bot]
5ad76cf2af
build(deps): bump urllib3 from 2.2.3 to 2.3.0 in /application
...
Bumps [urllib3](https://github.com/urllib3/urllib3 ) from 2.2.3 to 2.3.0.
- [Release notes](https://github.com/urllib3/urllib3/releases )
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst )
- [Commits](https://github.com/urllib3/urllib3/compare/2.2.3...2.3.0 )
---
updated-dependencies:
- dependency-name: urllib3
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-07 20:35:51 +00:00
ManishMadan2882
03e8c56f05
(upgrade/widget) v0.4.9
2025-01-07 20:49:31 +05:30
ManishMadan2882
d1981967b2
(fix:locales) sync conversation
2025-01-07 20:28:59 +05:30
Alex
c6094ad575
Merge pull request #1544 from arc53/dependabot/pip/application/langchain-community-0.3.14
...
build(deps): bump langchain-community from 0.3.13 to 0.3.14 in /application
2025-01-06 23:37:02 +00:00
Alex
93e376ad2f
fix: bump dependency
2025-01-06 23:33:34 +00:00
Alex
6bba3d164a
Merge pull request #1547 from arc53/dependabot/pip/application/networkx-3.4.2
...
build(deps): bump networkx from 3.3 to 3.4.2 in /application
2025-01-06 23:27:39 +00:00
Alex
b5decffaa2
Merge pull request #1545 from arc53/dependabot/pip/application/primp-0.9.3
...
build(deps): bump primp from 0.6.3 to 0.9.3 in /application
2025-01-06 23:27:17 +00:00
Alex
c068ac48d1
Merge pull request #1546 from arc53/dependabot/pip/application/torch-2.5.1
...
build(deps): bump torch from 2.4.1 to 2.5.1 in /application
2025-01-06 23:25:53 +00:00
Alex
d4b89803b2
Merge pull request #1548 from arc53/dependabot/pip/application/pymongo-4.10.1
...
build(deps): bump pymongo from 4.8.0 to 4.10.1 in /application
2025-01-06 21:59:58 +00:00
dependabot[bot]
d5b73236de
build(deps): bump pymongo from 4.8.0 to 4.10.1 in /application
...
Bumps [pymongo](https://github.com/mongodb/mongo-python-driver ) from 4.8.0 to 4.10.1.
- [Release notes](https://github.com/mongodb/mongo-python-driver/releases )
- [Changelog](https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst )
- [Commits](https://github.com/mongodb/mongo-python-driver/compare/4.8.0...4.10.1 )
---
updated-dependencies:
- dependency-name: pymongo
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-06 20:34:39 +00:00
dependabot[bot]
1e011879b1
build(deps): bump networkx from 3.3 to 3.4.2 in /application
...
Bumps [networkx](https://github.com/networkx/networkx ) from 3.3 to 3.4.2.
- [Release notes](https://github.com/networkx/networkx/releases )
- [Commits](https://github.com/networkx/networkx/compare/networkx-3.3...networkx-3.4.2 )
---
updated-dependencies:
- dependency-name: networkx
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-06 20:34:31 +00:00
dependabot[bot]
9c30ff3024
build(deps): bump torch from 2.4.1 to 2.5.1 in /application
...
Bumps [torch](https://github.com/pytorch/pytorch ) from 2.4.1 to 2.5.1.
- [Release notes](https://github.com/pytorch/pytorch/releases )
- [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md )
- [Commits](https://github.com/pytorch/pytorch/compare/v2.4.1...v2.5.1 )
---
updated-dependencies:
- dependency-name: torch
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-06 20:34:27 +00:00
dependabot[bot]
035f41b12c
build(deps): bump primp from 0.6.3 to 0.9.3 in /application
...
Bumps [primp](https://github.com/deedy5/primp ) from 0.6.3 to 0.9.3.
- [Release notes](https://github.com/deedy5/primp/releases )
- [Commits](https://github.com/deedy5/primp/compare/v0.6.3...v0.9.3 )
---
updated-dependencies:
- dependency-name: primp
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-06 20:34:22 +00:00
dependabot[bot]
0bbf1db434
build(deps): bump langchain-community in /application
...
Bumps [langchain-community](https://github.com/langchain-ai/langchain ) from 0.3.13 to 0.3.14.
- [Release notes](https://github.com/langchain-ai/langchain/releases )
- [Commits](https://github.com/langchain-ai/langchain/compare/langchain-community==0.3.13...langchain-community==0.3.14 )
---
updated-dependencies:
- dependency-name: langchain-community
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-06 20:34:20 +00:00
Alex
639e267392
Merge pull request #1538 from arc53/dependabot/pip/application/langchain-core-0.3.29
...
build(deps): bump langchain-core from 0.3.28 to 0.3.29 in /application
2025-01-05 02:10:07 +00:00
dependabot[bot]
bd5504461e
build(deps): bump langchain-core from 0.3.28 to 0.3.29 in /application
...
Bumps [langchain-core](https://github.com/langchain-ai/langchain ) from 0.3.28 to 0.3.29.
- [Release notes](https://github.com/langchain-ai/langchain/releases )
- [Commits](https://github.com/langchain-ai/langchain/compare/langchain-core==0.3.28...langchain-core==0.3.29 )
---
updated-dependencies:
- dependency-name: langchain-core
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-05 02:04:46 +00:00
Alex
c46aa23fdd
Merge pull request #1537 from arc53/dependabot/pip/application/regex-2024.11.6
...
build(deps): bump regex from 2024.9.11 to 2024.11.6 in /application
2025-01-05 02:03:40 +00:00
Alex
d654e79be3
Merge pull request #1535 from arc53/dependabot/pip/application/jiter-0.8.2
...
build(deps): bump jiter from 0.5.0 to 0.8.2 in /application
2025-01-05 02:03:15 +00:00
dependabot[bot]
c41877920a
build(deps): bump jiter from 0.5.0 to 0.8.2 in /application
...
Bumps [jiter](https://github.com/pydantic/jiter ) from 0.5.0 to 0.8.2.
- [Release notes](https://github.com/pydantic/jiter/releases )
- [Commits](https://github.com/pydantic/jiter/compare/v0.5.0...v0.8.2 )
---
updated-dependencies:
- dependency-name: jiter
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-05 01:58:52 +00:00
Alex
3f11e3e6a6
Merge pull request #1533 from arc53/dependabot/pip/application/transformers-4.47.1
...
build(deps): bump transformers from 4.47.0 to 4.47.1 in /application
2025-01-05 01:55:03 +00:00
Alex
225e73c8cf
Merge pull request #1534 from arc53/dependabot/pip/application/markupsafe-3.0.2
...
build(deps): bump markupsafe from 2.1.5 to 3.0.2 in /application
2025-01-05 01:54:46 +00:00
dependabot[bot]
95ec541a38
build(deps): bump react-chartjs-2 from 5.2.0 to 5.3.0 in /frontend
...
Bumps [react-chartjs-2](https://github.com/reactchartjs/react-chartjs-2 ) from 5.2.0 to 5.3.0.
- [Release notes](https://github.com/reactchartjs/react-chartjs-2/releases )
- [Changelog](https://github.com/reactchartjs/react-chartjs-2/blob/master/CHANGELOG.md )
- [Commits](https://github.com/reactchartjs/react-chartjs-2/compare/v5.2.0...v5.3.0 )
---
updated-dependencies:
- dependency-name: react-chartjs-2
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-05 01:48:13 +00:00
Alex
1941bd36bb
Merge pull request #1531 from ManishMadan2882/main
...
Adding hover effects in Search component
2025-01-05 01:48:05 +00:00
dependabot[bot]
e1b6d61558
build(deps): bump regex from 2024.9.11 to 2024.11.6 in /application
...
Bumps [regex](https://github.com/mrabarnett/mrab-regex ) from 2024.9.11 to 2024.11.6.
- [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt )
- [Commits](https://github.com/mrabarnett/mrab-regex/compare/2024.9.11...2024.11.6 )
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-05 01:47:50 +00:00
dependabot[bot]
c873e4ef42
build(deps): bump markupsafe from 2.1.5 to 3.0.2 in /application
...
Bumps [markupsafe](https://github.com/pallets/markupsafe ) from 2.1.5 to 3.0.2.
- [Release notes](https://github.com/pallets/markupsafe/releases )
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/markupsafe/compare/2.1.5...3.0.2 )
---
updated-dependencies:
- dependency-name: markupsafe
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-05 01:47:42 +00:00
dependabot[bot]
90eb261da6
build(deps): bump transformers from 4.47.0 to 4.47.1 in /application
...
Bumps [transformers](https://github.com/huggingface/transformers ) from 4.47.0 to 4.47.1.
- [Release notes](https://github.com/huggingface/transformers/releases )
- [Commits](https://github.com/huggingface/transformers/compare/v4.47.0...v4.47.1 )
---
updated-dependencies:
- dependency-name: transformers
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-05 01:47:38 +00:00
Alex
fb46cc9fdf
Update dependabot.yml
2025-01-05 01:46:47 +00:00
Alex
2d5a2eb52b
Merge pull request #1530 from arc53/dependabot/npm_and_yarn/docs/next-14.2.22
...
build(deps): bump next from 14.2.20 to 14.2.22 in /docs
2025-01-05 01:45:10 +00:00
ManishMadan2882
fa108126bb
(feat:settings) sync with locales
2025-01-05 03:39:33 +05:30
ManishMadan2882
b9540ba2bc
(fix:locale) add missing keys/semantics in es
2025-01-05 02:04:18 +05:30
ManishMadan2882
1992acaf61
(fix:locale) add missing keys in jp
2025-01-05 01:44:29 +05:30
ManishMadan2882
8c586a34e7
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2025-01-05 01:04:45 +05:30
ManishMadan2882
44399a03c1
(feat:search) add hover states
2025-01-05 01:04:33 +05:30
dependabot[bot]
3e70af9a57
build(deps): bump next from 14.2.20 to 14.2.22 in /docs
...
Bumps [next](https://github.com/vercel/next.js ) from 14.2.20 to 14.2.22.
- [Release notes](https://github.com/vercel/next.js/releases )
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js )
- [Commits](https://github.com/vercel/next.js/compare/v14.2.20...v14.2.22 )
---
updated-dependencies:
- dependency-name: next
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-04 02:59:13 +00:00
Alex
475d20b627
Merge pull request #1529 from siiddhantt/refactor/minor-changes
...
refactor: UI enhancement in tools
2025-01-03 16:25:12 +00:00
ManishMadan2882
69c5c6d6b8
(fix/locale) missing keys in chinese
2025-01-03 19:30:43 +05:30
ManishMadan2882
2480dc83b2
(fix/locale) missing keys in locale
2025-01-03 19:29:57 +05:30
Manish Madan
7c8b617f62
Merge branch 'arc53:main' into basic-ui
2025-01-03 18:13:01 +05:30
Manish Madan
7377fee8ca
Merge pull request #1525 from arc53/dependabot/npm_and_yarn/frontend/lint-staged-15.3.0
...
build(deps-dev): bump lint-staged from 15.2.11 to 15.3.0 in /frontend
2025-01-03 17:31:31 +05:30
dependabot[bot]
bdd78b664f
build(deps-dev): bump lint-staged from 15.2.11 to 15.3.0 in /frontend
...
Bumps [lint-staged](https://github.com/lint-staged/lint-staged ) from 15.2.11 to 15.3.0.
- [Release notes](https://github.com/lint-staged/lint-staged/releases )
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md )
- [Commits](https://github.com/lint-staged/lint-staged/compare/v15.2.11...v15.3.0 )
---
updated-dependencies:
- dependency-name: lint-staged
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-03 11:58:00 +00:00
Manish Madan
9272d4725a
Merge pull request #1522 from arc53/dependabot/npm_and_yarn/frontend/eslint-plugin-react-7.37.3
...
build(deps-dev): bump eslint-plugin-react from 7.37.2 to 7.37.3 in /frontend
2025-01-03 17:26:52 +05:30
dependabot[bot]
4ae6a8e25d
build(deps-dev): bump eslint-plugin-react in /frontend
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.37.2 to 7.37.3.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.37.2...v7.37.3 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-03 11:50:25 +00:00
Manish Madan
6e660140ae
Merge pull request #1523 from arc53/dependabot/npm_and_yarn/frontend/react-i18next-15.4.0
...
build(deps): bump react-i18next from 15.0.2 to 15.4.0 in /frontend
2025-01-03 17:18:20 +05:30
dependabot[bot]
5315429195
build(deps): bump react-i18next from 15.0.2 to 15.4.0 in /frontend
...
Bumps [react-i18next](https://github.com/i18next/react-i18next ) from 15.0.2 to 15.4.0.
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/react-i18next/compare/v15.0.2...v15.4.0 )
---
updated-dependencies:
- dependency-name: react-i18next
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-01-03 11:45:19 +00:00
Alex
abf898e032
Merge pull request #1527 from ManishMadan2882/main
...
React extensions: Updating Search Bar
2025-01-03 11:43:45 +00:00
Manish Madan
eef112d83d
Merge pull request #1521 from arc53/dependabot/npm_and_yarn/frontend/i18next-browser-languagedetector-8.0.2
...
build(deps): bump i18next-browser-languagedetector from 8.0.0 to 8.0.2 in /frontend
2025-01-03 17:10:28 +05:30
Siddhant Rai
e1784abbeb
fix: extra padding in confirmation modal
2025-01-03 12:42:23 +05:30
Siddhant Rai
0031ca3159
refactor: UI enhancement in tools
2025-01-03 12:27:54 +05:30
ManishMadan2882
411115523e
(fix:search) ui adjustments
2025-01-03 02:49:40 +05:30
ManishMadan2882
8b206b087c
(feat:search) adding buttonTextt prop, minor ui
2025-01-02 19:36:07 +05:30
ManishMadan2882
0d126106c0
(fix: sources) inconcistent capitalisation
2025-01-02 13:32:25 +05:30
ManishMadan2882
0751debff7
(feat:nav) add enter/esc to rename in tile
2025-01-02 02:31:29 +05:30
ManishMadan2882
33a28a64ec
(fix:ui/mobile) button squashed
2025-01-02 01:33:49 +05:30
Manish Madan
28e37d8ad2
Merge branch 'arc53:main' into main
2025-01-01 15:14:40 +05:30
ManishMadan2882
190f571718
(feat/search) exacting ui
2025-01-01 15:14:03 +05:30
Alex
c7d7dfbd50
Merge pull request #1518 from arc53/dependabot/pip/application/marshmallow-3.23.2
...
build(deps): bump marshmallow from 3.22.0 to 3.23.2 in /application
2024-12-31 15:02:26 +00:00
dependabot[bot]
efb018d2b0
build(deps): bump marshmallow from 3.22.0 to 3.23.2 in /application
...
Bumps [marshmallow](https://github.com/marshmallow-code/marshmallow ) from 3.22.0 to 3.23.2.
- [Changelog](https://github.com/marshmallow-code/marshmallow/blob/dev/CHANGELOG.rst )
- [Commits](https://github.com/marshmallow-code/marshmallow/compare/3.22.0...3.23.2 )
---
updated-dependencies:
- dependency-name: marshmallow
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-31 14:58:26 +00:00
Alex
cae9a45832
Merge pull request #1517 from arc53/dependabot/pip/application/tiktoken-0.8.0
...
build(deps): bump tiktoken from 0.7.0 to 0.8.0 in /application
2024-12-31 14:57:35 +00:00
dependabot[bot]
3daeab5186
build(deps): bump tiktoken from 0.7.0 to 0.8.0 in /application
...
Bumps [tiktoken](https://github.com/openai/tiktoken ) from 0.7.0 to 0.8.0.
- [Release notes](https://github.com/openai/tiktoken/releases )
- [Changelog](https://github.com/openai/tiktoken/blob/main/CHANGELOG.md )
- [Commits](https://github.com/openai/tiktoken/compare/0.7.0...0.8.0 )
---
updated-dependencies:
- dependency-name: tiktoken
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-31 14:57:29 +00:00
Alex
83914d5a56
Merge pull request #1520 from arc53/dependabot/pip/application/redis-5.2.1
...
build(deps): bump redis from 5.0.1 to 5.2.1 in /application
2024-12-31 14:55:58 +00:00
dependabot[bot]
0f611eb87b
build(deps): bump redis from 5.0.1 to 5.2.1 in /application
...
Bumps [redis](https://github.com/redis/redis-py ) from 5.0.1 to 5.2.1.
- [Release notes](https://github.com/redis/redis-py/releases )
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES )
- [Commits](https://github.com/redis/redis-py/compare/v5.0.1...v5.2.1 )
---
updated-dependencies:
- dependency-name: redis
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-31 14:52:21 +00:00
Alex
f70b2d0839
Merge pull request #1519 from arc53/dependabot/pip/application/celery-5.4.0
...
build(deps): bump celery from 5.3.6 to 5.4.0 in /application
2024-12-31 14:42:47 +00:00
ManishMadan2882
2f33a46e89
(feat:search/UX) enhance function
2024-12-31 17:33:06 +05:30
ManishMadan2882
598c7a5d76
(feat:search) load geist font
2024-12-31 16:25:44 +05:30
ManishMadan2882
8724c12c11
(feat:search) new UI
2024-12-31 15:30:24 +05:30
Alex
22d9020331
Merge pull request #1516 from arc53/dependabot/pip/application/langsmith-0.2.6
...
build(deps): bump langsmith from 0.2.3 to 0.2.6 in /application
2024-12-30 20:29:16 +00:00
dependabot[bot]
b4d77080e8
build(deps): bump i18next-browser-languagedetector in /frontend
...
Bumps [i18next-browser-languagedetector](https://github.com/i18next/i18next-browser-languageDetector ) from 8.0.0 to 8.0.2.
- [Changelog](https://github.com/i18next/i18next-browser-languageDetector/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/i18next-browser-languageDetector/compare/v8.0.0...v8.0.2 )
---
updated-dependencies:
- dependency-name: i18next-browser-languagedetector
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-30 20:22:47 +00:00
dependabot[bot]
e42fc97d03
build(deps): bump celery from 5.3.6 to 5.4.0 in /application
...
Bumps [celery](https://github.com/celery/celery ) from 5.3.6 to 5.4.0.
- [Release notes](https://github.com/celery/celery/releases )
- [Changelog](https://github.com/celery/celery/blob/main/Changelog.rst )
- [Commits](https://github.com/celery/celery/compare/v5.3.6...v5.4.0 )
---
updated-dependencies:
- dependency-name: celery
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-30 20:17:25 +00:00
dependabot[bot]
e45648b389
build(deps): bump langsmith from 0.2.3 to 0.2.6 in /application
...
Bumps [langsmith](https://github.com/langchain-ai/langsmith-sdk ) from 0.2.3 to 0.2.6.
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases )
- [Commits](https://github.com/langchain-ai/langsmith-sdk/compare/v0.2.3...v0.2.6 )
---
updated-dependencies:
- dependency-name: langsmith
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-30 20:17:15 +00:00
ManishMadan2882
085c4ddf09
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-12-27 17:40:22 +05:30
ManishMadan2882
5ddf9bd7ec
(feat:search) handle blockquotes in markdown
2024-12-27 17:40:04 +05:30
ManishMadan2882
2420af3b6d
(feat:Search) highlight keywords on searching
2024-12-27 16:20:47 +05:30
ManishMadan2882
b8fade251b
(feat: searchResults): adding utility to preprocess markdown
2024-12-24 17:15:17 +05:30
Alex
8935dc4e31
feat: add tool parsing
2024-12-24 00:52:14 +00:00
Alex
ae61d89494
Merge pull request #1508 from arc53/dependabot/npm_and_yarn/frontend/react-router-dom-7.1.1
...
build(deps): bump react-router-dom from 6.8.1 to 7.1.1 in /frontend
2024-12-23 23:30:59 +00:00
dependabot[bot]
753832d701
build(deps): bump react-router-dom from 6.8.1 to 7.1.1 in /frontend
...
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom ) from 6.8.1 to 7.1.1.
- [Release notes](https://github.com/remix-run/react-router/releases )
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md )
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.1.1/packages/react-router-dom )
---
updated-dependencies:
- dependency-name: react-router-dom
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 22:06:40 +00:00
Alex
8926cf777c
Merge pull request #1497 from arc53/dependabot/npm_and_yarn/frontend/lint-staged-15.2.11
...
build(deps-dev): bump lint-staged from 15.2.10 to 15.2.11 in /frontend
2024-12-23 22:04:57 +00:00
dependabot[bot]
868ea1a1e2
build(deps-dev): bump lint-staged from 15.2.10 to 15.2.11 in /frontend
...
Bumps [lint-staged](https://github.com/lint-staged/lint-staged ) from 15.2.10 to 15.2.11.
- [Release notes](https://github.com/lint-staged/lint-staged/releases )
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md )
- [Commits](https://github.com/lint-staged/lint-staged/compare/v15.2.10...v15.2.11 )
---
updated-dependencies:
- dependency-name: lint-staged
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 22:03:05 +00:00
Alex
1e1707ec0b
Merge pull request #1496 from arc53/dependabot/npm_and_yarn/frontend/typescript-5.7.2
...
build(deps-dev): bump typescript from 5.6.2 to 5.7.2 in /frontend
2024-12-23 22:01:45 +00:00
dependabot[bot]
636ac2a56c
build(deps-dev): bump typescript from 5.6.2 to 5.7.2 in /frontend
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.6.2 to 5.7.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.6.2...v5.7.2 )
---
updated-dependencies:
- dependency-name: typescript
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 21:58:40 +00:00
Alex
45076b05f7
Merge pull request #1495 from arc53/dependabot/npm_and_yarn/frontend/postcss-8.4.49
...
build(deps-dev): bump postcss from 8.4.47 to 8.4.49 in /frontend
2024-12-23 21:56:20 +00:00
dependabot[bot]
ba9e2101bb
build(deps-dev): bump postcss from 8.4.47 to 8.4.49 in /frontend
...
Bumps [postcss](https://github.com/postcss/postcss ) from 8.4.47 to 8.4.49.
- [Release notes](https://github.com/postcss/postcss/releases )
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/postcss/compare/8.4.47...8.4.49 )
---
updated-dependencies:
- dependency-name: postcss
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 21:52:27 +00:00
Alex
7301b61cb8
Merge pull request #1490 from arc53/dependabot/pip/application/elasticsearch-8.17.0
...
build(deps): bump elasticsearch from 8.15.1 to 8.17.0 in /application
2024-12-23 21:50:44 +00:00
Alex
ee3f657751
Merge pull request #1507 from arc53/dependabot/npm_and_yarn/frontend/i18next-24.2.0
...
build(deps): bump i18next from 23.15.1 to 24.2.0 in /frontend
2024-12-23 21:49:47 +00:00
Alex
e30291966a
fix: bump elastic transport
2024-12-23 21:47:31 +00:00
dependabot[bot]
2536bd0988
build(deps): bump elasticsearch from 8.15.1 to 8.17.0 in /application
...
Bumps [elasticsearch](https://github.com/elastic/elasticsearch-py ) from 8.15.1 to 8.17.0.
- [Release notes](https://github.com/elastic/elasticsearch-py/releases )
- [Commits](https://github.com/elastic/elasticsearch-py/compare/v8.15.1...v8.17.0 )
---
updated-dependencies:
- dependency-name: elasticsearch
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 21:44:39 +00:00
Alex
5234350bde
Merge pull request #1510 from arc53/dependabot/pip/application/langchain-openai-0.2.14
...
build(deps): bump langchain-openai from 0.2.0 to 0.2.14 in /application
2024-12-23 21:43:25 +00:00
Alex
36e4398bcb
fix: bump deps
2024-12-23 21:39:33 +00:00
Alex
4b040280c3
Merge branch 'dependabot/pip/application/langchain-openai-0.2.14' of https://github.com/arc53/DocsGPT into dependabot/pip/application/langchain-openai-0.2.14
2024-12-23 21:34:18 +00:00
dependabot[bot]
fdd2300517
build(deps): bump langchain-openai from 0.2.0 to 0.2.14 in /application
...
Bumps [langchain-openai](https://github.com/langchain-ai/langchain ) from 0.2.0 to 0.2.14.
- [Release notes](https://github.com/langchain-ai/langchain/releases )
- [Commits](https://github.com/langchain-ai/langchain/compare/langchain-openai==0.2.0...langchain-openai==0.2.14 )
---
updated-dependencies:
- dependency-name: langchain-openai
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 21:31:04 +00:00
Alex
49913b2258
Merge pull request #1509 from arc53/dependabot/pip/application/numpy-2.2.1
...
build(deps): bump numpy from 1.26.4 to 2.2.1 in /application
2024-12-23 21:30:04 +00:00
Alex
4927b64d27
bump pytest
2024-12-23 21:26:22 +00:00
Alex
fb2df05e3f
feat: upgrade python and bump faiss-cpu
2024-12-23 21:23:54 +00:00
dependabot[bot]
ab90a93eec
build(deps): bump numpy from 1.26.4 to 2.2.1 in /application
...
Bumps [numpy](https://github.com/numpy/numpy ) from 1.26.4 to 2.2.1.
- [Release notes](https://github.com/numpy/numpy/releases )
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst )
- [Commits](https://github.com/numpy/numpy/compare/v1.26.4...v2.2.1 )
---
updated-dependencies:
- dependency-name: numpy
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 21:15:46 +00:00
Alex
48c17169b5
Merge pull request #1506 from arc53/dependabot/pip/application/jinja2-3.1.5
...
build(deps): bump jinja2 from 3.1.4 to 3.1.5 in /application
2024-12-23 21:13:40 +00:00
Alex
41cd83f20e
Merge branch 'dependabot/pip/application/jinja2-3.1.5' of https://github.com/arc53/DocsGPT into dependabot/pip/application/jinja2-3.1.5
2024-12-23 21:08:16 +00:00
dependabot[bot]
52dd3f798a
build(deps): bump jinja2 from 3.1.4 to 3.1.5 in /application
...
Bumps [jinja2](https://github.com/pallets/jinja ) from 3.1.4 to 3.1.5.
- [Release notes](https://github.com/pallets/jinja/releases )
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/jinja/compare/3.1.4...3.1.5 )
---
updated-dependencies:
- dependency-name: jinja2
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 21:06:38 +00:00
Alex
070efd6951
Merge pull request #1493 from arc53/dependabot/pip/application/yarl-1.18.3
...
build(deps): bump yarl from 1.11.1 to 1.18.3 in /application
2024-12-23 21:04:35 +00:00
dependabot[bot]
502d82e1c9
build(deps): bump langchain-openai from 0.2.0 to 0.2.14 in /application
...
Bumps [langchain-openai](https://github.com/langchain-ai/langchain ) from 0.2.0 to 0.2.14.
- [Release notes](https://github.com/langchain-ai/langchain/releases )
- [Commits](https://github.com/langchain-ai/langchain/compare/langchain-openai==0.2.0...langchain-openai==0.2.14 )
---
updated-dependencies:
- dependency-name: langchain-openai
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 20:58:59 +00:00
dependabot[bot]
7760e779ae
build(deps): bump i18next from 23.15.1 to 24.2.0 in /frontend
...
Bumps [i18next](https://github.com/i18next/i18next ) from 23.15.1 to 24.2.0.
- [Release notes](https://github.com/i18next/i18next/releases )
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md )
- [Commits](https://github.com/i18next/i18next/compare/v23.15.1...v24.2.0 )
---
updated-dependencies:
- dependency-name: i18next
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 20:14:33 +00:00
dependabot[bot]
474298c969
build(deps): bump jinja2 from 3.1.4 to 3.1.5 in /application
...
Bumps [jinja2](https://github.com/pallets/jinja ) from 3.1.4 to 3.1.5.
- [Release notes](https://github.com/pallets/jinja/releases )
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/jinja/compare/3.1.4...3.1.5 )
---
updated-dependencies:
- dependency-name: jinja2
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-23 18:12:13 +00:00
Alex
b2a013c027
fix: remove reqs from scripts folder
2024-12-23 18:11:15 +00:00
Alex
cca5ef098b
Merge pull request #1503 from arc53/chunking
...
test version
2024-12-23 17:53:45 +00:00
Alex
41b4c28430
fix: linting
2024-12-23 17:41:44 +00:00
Alex
90962ee056
fix: debugger in launch json
2024-12-23 17:41:13 +00:00
Alex
953cff09a0
Merge branch 'chunking' of https://github.com/arc53/DocsGPT into chunking
2024-12-23 16:59:44 +00:00
Pavel
b41a989051
test version
2024-12-23 16:59:27 +00:00
Alex
4fcd45c1ae
Merge pull request #1473 from arc53/tool-use
...
Tools + agent
2024-12-20 18:17:39 +00:00
Alex
1f75f0c082
fix: tests
2024-12-20 18:13:37 +00:00
Alex
c2a95b5bec
lint: fixing index and classc rag
2024-12-20 17:32:58 +00:00
Alex
0a246d3de7
Merge branch 'main' into tool-use
2024-12-20 17:29:41 +00:00
Alex
2d6238d431
Merge pull request #1502 from siiddhantt/feat/tools-section
...
feat: tools frontend and endpoints refactor
2024-12-20 16:27:29 +00:00
Pavel
c4f3dc4434
test version
2024-12-20 18:41:47 +03:00
Alex
2aea24afdd
depriciate mock backend
2024-12-20 11:01:57 +00:00
Alex
666240f21e
Merge pull request #1455 from Niharika0104/FIXES-#1166
...
Fixed the feedback issue
2024-12-19 18:27:54 +00:00
Alex
fb4ab220d6
Merge pull request #1501 from arc53/dependabot/npm_and_yarn/docs/next-14.2.20
...
build(deps): bump next from 14.2.12 to 14.2.20 in /docs
2024-12-19 18:25:49 +00:00
Alex
5a882fe37f
Merge pull request #1500 from ManishMadan2882/main
...
Limiting Conversational history
2024-12-19 18:23:44 +00:00
Alex
132326136a
added gpt-4o-mini model
2024-12-19 18:17:12 +00:00
Alex
6fc4723d61
feat: flask debugger for vscode
2024-12-19 16:03:39 +00:00
Alex
8564198321
mini-model as default
2024-12-19 16:02:27 +00:00
Siddhant Rai
4c3f990d4b
feat: tools agent refactor for custom fields and unique actions
2024-12-19 20:34:20 +05:30
ManishMadan2882
b19c14787e
(fix) avoid stringifying list
2024-12-19 17:58:55 +05:30
Siddhant Rai
f67b79f007
fix: missing yield in tool agent
2024-12-19 17:55:58 +05:30
Siddhant Rai
daa332aa20
fix: python lint errors
2024-12-19 10:06:06 +05:30
Siddhant Rai
c3f538c2f6
fix: merge errors
2024-12-19 09:59:38 +05:30
Siddhant Rai
a0e677ea00
Merge branch 'feat/tools-section' of https://github.com/siiddhantt/DocsGPT into feat/tools-section
2024-12-19 09:58:41 +05:30
Siddhant Rai
343569ba19
fix: create_tool endpoint for new fields
2024-12-19 09:58:32 +05:30
ManishMadan2882
9096013e13
(refactor) remove preprocessing in retrieval
2024-12-19 05:20:55 +05:30
ManishMadan2882
89a2f249c1
(feat:conv history) token limit from settings
2024-12-19 05:15:33 +05:30
Manish Madan
4b0e094272
Merge branch 'arc53:main' into main
2024-12-19 02:15:40 +05:30
Siddhant Rai
97713e872a
Merge branch 'tool-use' into feat/tools-section
2024-12-18 22:53:31 +05:30
Siddhant Rai
f9a7db11eb
feat: tools frontend and endpoints refactor
2024-12-18 22:48:40 +05:30
dependabot[bot]
1448d7e6eb
build(deps): bump next from 14.2.12 to 14.2.20 in /docs
...
Bumps [next](https://github.com/vercel/next.js ) from 14.2.12 to 14.2.20.
- [Release notes](https://github.com/vercel/next.js/releases )
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js )
- [Commits](https://github.com/vercel/next.js/compare/v14.2.12...v14.2.20 )
---
updated-dependencies:
- dependency-name: next
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-18 12:02:03 +00:00
Manish Madan
8e7d5340d7
Merge pull request #1489 from arc53/dependabot/pip/application/sentence-transformers-3.3.1
...
build(deps): bump sentence-transformers from 3.0.1 to 3.3.1 in /application
2024-12-18 17:30:51 +05:30
Niharika Goulikar
47ecf98e2a
Resolved merge conflicts
2024-12-18 10:47:34 +00:00
ManishMadan2882
f8e4e42a36
(feat:limit conv history) add util method
2024-12-17 16:14:17 +05:30
dependabot[bot]
38753c4395
build(deps): bump yarl from 1.11.1 to 1.18.3 in /application
...
Bumps [yarl](https://github.com/aio-libs/yarl ) from 1.11.1 to 1.18.3.
- [Release notes](https://github.com/aio-libs/yarl/releases )
- [Changelog](https://github.com/aio-libs/yarl/blob/master/CHANGES.rst )
- [Commits](https://github.com/aio-libs/yarl/compare/v1.11.1...v1.18.3 )
---
updated-dependencies:
- dependency-name: yarl
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-16 20:09:34 +00:00
dependabot[bot]
b473e13b83
build(deps): bump sentence-transformers in /application
...
Bumps [sentence-transformers](https://github.com/UKPLab/sentence-transformers ) from 3.0.1 to 3.3.1.
- [Release notes](https://github.com/UKPLab/sentence-transformers/releases )
- [Commits](https://github.com/UKPLab/sentence-transformers/compare/v3.0.1...v3.3.1 )
---
updated-dependencies:
- dependency-name: sentence-transformers
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-16 20:09:08 +00:00
Manish Madan
9092575186
Merge pull request #1488 from arc53/dependabot/pip/application/langsmith-0.2.3
...
build(deps): bump langsmith from 0.1.125 to 0.2.3 in /application
2024-12-14 15:27:00 +05:30
ManishMadan2882
ffe5ac2aad
(update) langchain, core and community
2024-12-14 15:21:52 +05:30
dependabot[bot]
0ab6f75410
build(deps): bump langsmith from 0.1.125 to 0.2.3 in /application
...
Bumps [langsmith](https://github.com/langchain-ai/langsmith-sdk ) from 0.1.125 to 0.2.3.
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases )
- [Commits](https://github.com/langchain-ai/langsmith-sdk/compare/v0.1.125...v0.2.3 )
---
updated-dependencies:
- dependency-name: langsmith
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-14 09:40:13 +00:00
Manish Madan
099245f27e
Merge pull request #1479 from arc53/dependabot/pip/application/transformers-4.47.0
...
build(deps): bump transformers from 4.44.2 to 4.47.0 in /application
2024-12-14 05:09:25 +05:30
ManishMadan2882
0a0fe20fa0
(update) tokenizers
2024-12-14 04:53:06 +05:30
dependabot[bot]
c2aa5cc994
build(deps): bump transformers from 4.44.2 to 4.47.0 in /application
...
Bumps [transformers](https://github.com/huggingface/transformers ) from 4.44.2 to 4.47.0.
- [Release notes](https://github.com/huggingface/transformers/releases )
- [Commits](https://github.com/huggingface/transformers/compare/v4.44.2...v4.47.0 )
---
updated-dependencies:
- dependency-name: transformers
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-13 23:19:47 +00:00
Manish Madan
f84e59a7fb
Merge pull request #1485 from arc53/dependabot/npm_and_yarn/docs/nanoid-3.3.8
...
build(deps): bump nanoid from 3.3.7 to 3.3.8 in /docs
2024-12-14 02:47:21 +05:30
Manish Madan
613c032994
Merge pull request #1484 from arc53/dependabot/npm_and_yarn/extensions/react-widget/nanoid-3.3.8
...
build(deps): bump nanoid from 3.3.7 to 3.3.8 in /extensions/react-widget
2024-12-14 02:46:39 +05:30
Manish Madan
7829db97bf
Merge pull request #1469 from arc53/dependabot/npm_and_yarn/frontend/vitejs/plugin-react-4.3.4
...
build(deps-dev): bump @vitejs/plugin-react from 4.3.1 to 4.3.4 in /frontend
2024-12-14 02:39:50 +05:30
dependabot[bot]
acdfde6752
build(deps-dev): bump @vitejs/plugin-react in /frontend
...
Bumps [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react ) from 4.3.1 to 4.3.4.
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases )
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.4/packages/plugin-react )
---
updated-dependencies:
- dependency-name: "@vitejs/plugin-react"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-13 20:54:30 +00:00
dependabot[bot]
c673c0b245
Merge pull request #1467 from arc53/dependabot/npm_and_yarn/frontend/eslint-plugin-import-2.31.0
2024-12-13 20:50:35 +00:00
dependabot[bot]
4bf4e11cee
build(deps-dev): bump eslint-plugin-import in /frontend
...
Bumps [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import ) from 2.30.0 to 2.31.0.
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases )
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md )
- [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.30.0...v2.31.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-import
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-13 20:42:34 +00:00
dependabot[bot]
770175456f
Merge pull request #1390 from arc53/dependabot/npm_and_yarn/frontend/eslint-plugin-react-7.37.2
2024-12-13 19:23:05 +00:00
dependabot[bot]
0abbf71f15
build(deps-dev): bump eslint-plugin-react in /frontend
...
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react ) from 7.35.0 to 7.37.2.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases )
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.35.0...v7.37.2 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-13 19:06:16 +00:00
Alex
46b0de367a
fix: strings
2024-12-12 10:40:55 +00:00
Alex
30309659d3
Merge pull request #1486 from Srayash/Srayash/Languages
...
Fix language support for Chinese and add Russian language
2024-12-11 14:44:20 +00:00
Srayash Singh
acadd6bddc
Merge branch 'arc53:main' into Srayash/Languages
2024-12-11 16:46:40 +05:30
Srayash
96c57260cb
Add Russian and fix Traditional Chinese
2024-12-11 16:45:41 +05:30
dependabot[bot]
f29f58b2ac
build(deps): bump nanoid from 3.3.7 to 3.3.8 in /docs
...
Bumps [nanoid](https://github.com/ai/nanoid ) from 3.3.7 to 3.3.8.
- [Release notes](https://github.com/ai/nanoid/releases )
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ai/nanoid/compare/3.3.7...3.3.8 )
---
updated-dependencies:
- dependency-name: nanoid
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-10 23:17:23 +00:00
dependabot[bot]
124a04738c
build(deps): bump nanoid from 3.3.7 to 3.3.8 in /extensions/react-widget
...
Bumps [nanoid](https://github.com/ai/nanoid ) from 3.3.7 to 3.3.8.
- [Release notes](https://github.com/ai/nanoid/releases )
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ai/nanoid/compare/3.3.7...3.3.8 )
---
updated-dependencies:
- dependency-name: nanoid
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-10 23:17:21 +00:00
Alex
3a60c31df9
Merge pull request #1483 from ManishMadan2882/main
...
Fixes: Client.__init__() got an unexpected keyword argument 'proxies'
2024-12-10 23:16:14 +00:00
ManishMadan2882
501cf3973c
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-12-11 02:04:31 +05:30
ManishMadan2882
c73251e998
(fix:TypeError) Client Proxies Argument
2024-12-11 02:04:20 +05:30
Alex
201fb61bd4
Delete lexeu-competition.md
2024-12-10 14:23:38 +00:00
Alex
f87ae429f4
fix: edit names
2024-12-09 17:52:20 +00:00
Alex
35e8e2df44
Merge pull request #1475 from ManishMadan2882/main
...
Highlight Similar substrings in search results
2024-12-09 16:20:57 +00:00
ManishMadan2882
7c3f80f13d
(fix: filter search) trim keyword pre processing
2024-12-09 12:47:13 +05:30
ManishMadan2882
17a176ad4e
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-12-09 02:44:50 +05:30
ManishMadan2882
ca5eb06de9
(feat:filter results) improve markdown format, add filter
2024-12-09 02:43:26 +05:30
ManishMadan2882
2378548cf1
(feat: filer result) remove iterator; optimisation
2024-12-09 02:41:06 +05:30
ManishMadan2882
fdd265f47f
(feat:filter search result) use node iterator
2024-12-09 01:51:06 +05:30
Alex
3e2e1ecddf
fix: add status to tools
2024-12-06 23:11:16 +00:00
Alex
863950963f
simple user tool handling endpoint
2024-12-06 22:19:01 +00:00
GH Action - Upstream Sync
defa1b28a8
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-12-06 01:27:00 +00:00
Alex
1f649274d1
feat: tooling init
2024-12-05 22:44:40 +00:00
ManishMadan2882
3ce04de161
(feat:highlightSearch) recursively filter the DOM
2024-12-06 03:33:44 +05:30
Alex
e798d18e70
Merge pull request #1470 from ManishMadan2882/main
...
Minor frontend changes
2024-12-05 11:47:45 +00:00
Manish Madan
ed2609d3b3
Merge branch 'main' into main
2024-12-05 16:33:55 +05:30
Alex
6d2a2632c5
Merge pull request #1463 from Srayash/feature/drag-and-drop-training
...
feature: Drag and drop training, from input box
2024-12-05 10:53:19 +00:00
Srayash
dbf95a95a4
default assign renderTab and receivedFiles to null and [] respectively
2024-12-05 16:15:57 +05:30
ManishMadan2882
0e4bd06795
(feat:shared)add meta:og twitter tags
2024-12-05 02:49:00 +05:30
ManishMadan2882
4d38280cfa
(fix:title) remove dino emoji
2024-12-04 02:49:10 +05:30
ManishMadan2882
75173473ae
(feat:bubble) replace emoji with user profile
2024-12-04 02:47:57 +05:30
Srayash
b314b27260
Internationalization: add translations.
2024-12-02 23:24:26 +05:30
Srayash
cc7e223082
enhancement: style the drag and drop feature.
2024-12-02 23:21:41 +05:30
Srayash
79f87d4c20
add comma
2024-12-02 01:03:20 +05:30
Srayash
8adbd6720a
noClick set to true for Dropzone.
2024-12-02 00:53:18 +05:30
Srayash
c3973571a7
feature: Drag and drop training, from input box.
2024-12-02 00:22:16 +05:30
Srayash
bf63509a6e
modify upload component to take receivedFile and renderTab as props.
2024-12-02 00:16:47 +05:30
Alex
6552fe831b
Merge pull request #1461 from ManishMadan2882/main
...
(fix:edit-query)delete following queries
2024-11-30 23:49:20 +00:00
ManishMadan2882
05fdf6b93a
(fix:edit-query) replace input with textarea
2024-11-30 02:44:24 +05:30
ManishMadan2882
6953c3dbe4
(fix:markdown) no overflowing words
2024-11-29 03:32:36 +05:30
ManishMadan2882
55ecda902d
(fix:edit-feat): exacting the UI/UX
2024-11-29 03:28:35 +05:30
Alex
0495610257
Merge pull request #1430 from arc53/dependabot/pip/application/werkzeug-3.1.3
2024-11-28 19:25:37 +00:00
Alex
301bb2dcfe
Merge pull request #1409 from arc53/dependabot/npm_and_yarn/frontend/react-dropzone-14.3.5
2024-11-28 19:15:03 +00:00
Alex
598b8f9980
Merge pull request #1448 from arc53/dependabot/github_actions/codecov/codecov-action-5
2024-11-28 19:13:42 +00:00
GH Action - Upstream Sync
9528f34a25
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-11-28 01:26:19 +00:00
ManishMadan2882
625aed151d
(fix:edit-query)delete following queries
2024-11-28 04:02:05 +05:30
Alex
4ffdf3f9a2
Merge pull request #1456 from ManishMadan2882/main
...
Minor UI adjustments
2024-11-27 15:14:53 +00:00
ManishMadan2882
0a97e5b7be
(fix:delete_old) del source from db even when FileNotFound err
2024-11-27 16:57:47 +05:30
ManishMadan2882
bfeae3a95b
(fix:settings) truncate long doc names
2024-11-27 16:54:05 +05:30
Manish Madan
4ab12663be
Merge branch 'arc53:main' into main
2024-11-27 03:41:23 +05:30
Alex
0584c29781
Merge pull request #1442 from fadingNA/document-table
...
Table Styling & Add search feature to backend
2024-11-26 20:08:12 +00:00
ManishMadan2882
a8231d375a
(fix:markdown) code overflows
2024-11-27 00:45:01 +05:30
ManishMadan2882
a86b342ba5
fix(bubble) smaller fonts on mobile questions
2024-11-26 19:14:50 +05:30
ManishMadan2882
0a7a313e5d
(fix:conv) input touches viewport bottom in mobile
2024-11-26 18:57:11 +05:30
Niharika Goulikar
9d4aee5de2
fixed the python error
2024-11-26 13:05:50 +00:00
Niharika Goulikar
faf031ce80
fixed linting issues
2024-11-26 12:28:16 +00:00
Niharika Goulikar
e9a2b8f03a
Fixed the feedback issue
2024-11-26 12:16:21 +00:00
fadingNA
d89bd0941d
change visible to block
2024-11-25 08:35:24 -05:00
Alex
8d8423b6e0
Merge pull request #1444 from Niharika0104/Fixes-#1260
...
Fixed edit and resend issue
2024-11-25 11:12:56 +00:00
fadingNA
e22669f91d
add text center when no data
2024-11-24 17:05:36 -05:00
fadingNA
b5e5fb7f10
fix table header text wrap
2024-11-24 17:02:57 -05:00
fadingNA
2709994ede
update APIKey Table and dark styling
2024-11-24 11:18:42 -05:00
fadingNA
e5bd194b6c
Remove dangling console log
2024-11-23 20:04:53 -05:00
fadingNA
f01f76dba7
Move Pagination Outside Scrollable Area | Add smooth transition dropdown rows per page select | adjust sync button
2024-11-23 18:06:54 -05:00
Alex
289bd41570
Merge pull request #1428 from arc53/dependabot/npm_and_yarn/frontend/vite-5.4.11
...
build(deps-dev): bump vite from 5.4.6 to 5.4.11 in /frontend
2024-11-23 21:30:42 +00:00
dependabot[bot]
6a0d6a8faf
build(deps-dev): bump vite from 5.4.6 to 5.4.11 in /frontend
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 5.4.6 to 5.4.11.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.11/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-23 21:01:43 +00:00
Alex
dcc39d954e
Merge pull request #1446 from arc53/dependabot/npm_and_yarn/frontend/tailwindcss-3.4.15
...
build(deps-dev): bump tailwindcss from 3.4.11 to 3.4.15 in /frontend
2024-11-23 21:00:25 +00:00
Niharika Goulikar
8a67f18cd9
Fixed minor ui issues
2024-11-23 06:13:07 +00:00
Alex
2e02304c71
Merge pull request #1450 from ManishMadan2882/main
...
React Widget: Updating to v0.4.8
2024-11-22 23:23:16 +00:00
ManishMadan2882
ce975c5d93
(documentation): udpate with search bar
2024-11-23 03:09:03 +05:30
ManishMadan2882
fb4bb54aca
(upgrade) v0.4.8
2024-11-23 02:44:06 +05:30
ManishMadan2882
dae0942d03
(refactor): separate browser ready builds
2024-11-23 02:29:27 +05:30
fadingNA
25b1173db7
remove table type column
2024-11-22 09:10:58 -05:00
Alex
92d90866ca
Merge pull request #1436 from ManishMadan2882/main
...
React Widget: Search bar component
2024-11-22 13:40:50 +00:00
ManishMadan2882
1595e0210a
(fix:search) change toolkit info
2024-11-22 17:55:37 +05:30
ManishMadan2882
ea4ef40a12
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-11-22 17:31:06 +05:30
ManishMadan2882
9986fce8bf
(fix:search) spacing, minor bug
2024-11-22 17:30:50 +05:30
GH Action - Upstream Sync
628f83172a
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-11-22 01:25:17 +00:00
ManishMadan2882
c855896221
(fix:events): enter on pc, tap on mobile
2024-11-22 00:05:07 +05:30
ManishMadan2882
94b5241e70
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-11-21 23:54:34 +05:30
ManishMadan2882
0600f095f5
(feat:widget) append prefilledQuery
2024-11-21 23:54:19 +05:30
Alex
a0a05b676f
Merge pull request #1303 from jayantp2003/bugfix/859-large-zip-breaking-stream-endpoint
...
Bugfix/859 large zip breaking stream endpoint
2024-11-21 17:34:21 +00:00
Alex
a818975823
Update README.md
2024-11-21 14:43:54 +00:00
Niharika Goulikar
8e9f31cc32
Fixed python linting issues
2024-11-21 11:22:33 +00:00
Niharika Goulikar
0d4bc4ec2c
Made the requested changes
2024-11-21 11:17:58 +00:00
GH Action - Upstream Sync
7a0118b31c
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-11-21 01:23:51 +00:00
ManishMadan2882
e9a8161811
(feat/widget): autofocus input
2024-11-20 17:11:33 +05:30
ManishMadan2882
a6bface632
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-11-20 17:04:55 +05:30
ManishMadan2882
48f47351ee
(feat:keydown): listen cross platform events
2024-11-20 17:04:45 +05:30
GH Action - Upstream Sync
d3eab30d74
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-11-20 01:24:08 +00:00
Alex
f65ecb9a0f
fix: lint import
2024-11-19 19:16:24 +00:00
Alex
312cb9ae70
feat: image parser
2024-11-19 19:06:53 +00:00
ManishMadan2882
e0a3b8004c
(fix): minor ui; loading state
2024-11-19 04:41:12 +05:30
ManishMadan2882
91239820e3
(feat/search): debounce and abort previous pending req
2024-11-19 04:25:54 +05:30
ManishMadan2882
8641a91182
(feat-search): adding loader, no-results
2024-11-19 03:38:13 +05:30
dependabot[bot]
84bffd24f2
build(deps): bump codecov/codecov-action from 4 to 5
...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action ) from 4 to 5.
- [Release notes](https://github.com/codecov/codecov-action/releases )
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codecov/codecov-action/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: codecov/codecov-action
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-18 20:43:34 +00:00
dependabot[bot]
9fb37b1179
build(deps-dev): bump tailwindcss from 3.4.11 to 3.4.15 in /frontend
...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss ) from 3.4.11 to 3.4.15.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.15/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.11...v3.4.15 )
---
updated-dependencies:
- dependency-name: tailwindcss
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-18 20:13:53 +00:00
ManishMadan2882
4eee10b5d5
(feat/search): redirect to sources
2024-11-18 19:06:41 +05:30
ManishMadan2882
c53456876c
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-11-18 17:01:05 +05:30
ManishMadan2882
1a9f31174d
(search): modal triggers on ctrl k
2024-11-18 17:00:56 +05:30
fadingNA
0493352292
frontend: remove search on localstate, change to backend search use mongo passing searchTerm
2024-11-18 00:06:18 -05:00
fadingNA
13b91193cc
backend : update sources/paginated to search document by query 'name'
2024-11-18 00:05:48 -05:00
GH Action - Upstream Sync
9a367c76a0
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-11-18 01:26:31 +00:00
ManishMadan2882
f58e7cc154
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-11-18 03:18:48 +05:30
ManishMadan2882
5ee0f15d94
(feat: search): close on click outside
2024-11-18 03:18:39 +05:30
Niharika Goulikar
626689cbe0
Merge branch 'arc53:main' into Fixes-#1260
2024-11-17 16:18:11 +05:30
Niharika Goulikar
a44319d815
Fixed edit and resend issue
2024-11-17 10:29:29 +00:00
utin-francis-peter
2c8a2945f0
feat: better sources scroll management
2024-11-17 10:34:22 +01:00
utin-francis-peter
ba59042e5c
Merge branch 'main' into feat/sources-in-react-widget
2024-11-17 09:19:20 +01:00
GH Action - Upstream Sync
3273af7f40
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-11-17 01:36:05 +00:00
ManishMadan2882
cbf33e698b
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-11-17 03:31:19 +05:30
ManishMadan2882
868e59bca0
(fix: css conflict): replace global keyframes
2024-11-17 03:31:09 +05:30
fadingNA
2ad6b4fa4e
update table styling
2024-11-15 23:16:58 -05:00
GH Action - Upstream Sync
8e94688b77
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-11-16 01:23:10 +00:00
ManishMadan2882
fab367f041
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-11-16 02:14:02 +05:30
ManishMadan2882
94617c5ef7
(fix:animations) minor fix
2024-11-16 02:13:40 +05:30
ManishMadan2882
d33246612d
(widget) unmount with timeout
2024-11-15 18:16:45 +05:30
GH Action - Upstream Sync
8eaeaa91f9
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-11-15 01:25:08 +00:00
ManishMadan2882
7bd0351ee9
(fix): mount only when open
2024-11-15 06:25:24 +05:30
ManishMadan2882
811a20f080
search: add themes, fix css override
2024-11-15 05:52:46 +05:30
GH Action - Upstream Sync
2d15492190
Merge branch 'main' of https://github.com/arc53/DocsGPT
2024-11-14 01:20:08 +00:00
ManishMadan2882
d696f0d081
Merge branch 'main' of https://github.com/ManishMadan2882/docsgpt
2024-11-14 04:52:49 +05:30
ManishMadan2882
9409e4498f
(feat:search bar) initiating seach bar
2024-11-14 04:52:15 +05:30
ManishMadan2882
541a6417b7
(refactor): separate widget core
2024-11-14 04:51:26 +05:30
dependabot[bot]
0ef232f731
build(deps): bump werkzeug from 3.0.4 to 3.1.3 in /application
...
Bumps [werkzeug](https://github.com/pallets/werkzeug ) from 3.0.4 to 3.1.3.
- [Release notes](https://github.com/pallets/werkzeug/releases )
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/werkzeug/compare/3.0.4...3.1.3 )
---
updated-dependencies:
- dependency-name: werkzeug
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-11 21:01:52 +00:00
utin-francis-peter
6f83bd8961
Merge branch 'main' into feat/sources-in-react-widget
2024-11-11 14:36:34 +01:00
utin-francis-peter
a7aae3ff7e
style: minor adjustments in border-radius and spacings
2024-11-10 03:29:56 +01:00
utin-francis-peter
25feab9a29
chore: removed unused import
2024-11-10 03:11:41 +01:00
utin-francis-peter
97916bf925
chore: returned themes cofig into DocsGPTWidget component
2024-11-10 03:08:35 +01:00
utin-francis-peter
42e2c784c4
Merge branch 'main' of https://github.com/utin-francis-peter/DocsGPT into feat/sources-in-react-widget
2024-11-10 03:06:23 +01:00
utin-francis-peter
1a8f89573d
feat: query sources in widget
2024-11-09 01:09:22 +01:00
utin-francis-peter
3e87d83ae8
chore: adjusted spacing in source bubble
2024-11-05 21:50:42 +01:00
dependabot[bot]
fe18d6e638
build(deps): bump react-dropzone from 14.2.3 to 14.3.5 in /frontend
...
Bumps [react-dropzone](https://github.com/react-dropzone/react-dropzone ) from 14.2.3 to 14.3.5.
- [Release notes](https://github.com/react-dropzone/react-dropzone/releases )
- [Commits](https://github.com/react-dropzone/react-dropzone/compare/v14.2.3...v14.3.5 )
---
updated-dependencies:
- dependency-name: react-dropzone
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-04 20:41:57 +00:00
utin-francis-peter
0784823e21
Merge branch 'main' of https://github.com/utin-francis-peter/DocsGPT into feat/sources-in-react-widget
2024-11-04 16:36:13 +01:00
utin-francis-peter
1a9f47b1bc
chore: modified query sources and removed tooltip
2024-11-04 16:33:00 +01:00
utin-francis-peter
991a38df28
Merge branch 'main' of https://github.com/utin-francis-peter/DocsGPT into feat/sources-in-react-widget
2024-10-28 17:44:50 +01:00
utin-francis-peter
656f4da8f9
feat: rendering of response source
2024-10-28 17:34:35 +01:00
utin-francis-peter
f8d65b84db
chore: wrapped the base component with ThemeProvider at the root level to make theme props available globally
2024-10-28 17:33:40 +01:00
utin-francis-peter
bd66d0a987
Merge branch 'main' of https://github.com/utin-francis-peter/DocsGPT into feat/sources-in-react-widget
2024-10-14 13:02:38 +01:00
utin-francis-peter
62802eb138
chore: styled component styles for sources, added showSources prop to widget, handled sources data.type, and rendering sources when available
2024-10-14 12:37:02 +01:00
utin-francis-peter
848beb11df
chore: corrected typo in var declaration
2024-10-14 12:33:56 +01:00
utin-francis-peter
0481e766ae
chore: updated Query and WidgetProps interface with source property
2024-10-14 12:30:57 +01:00
jayantp2003
3db07f3a26
Fix #859 : Resolve issue with large zip breaking stream endpoint
2024-10-11 17:10:12 +05:30
jayantp2003
a2ef45e13f
Fix #859 : Resolve issue with large zip breaking stream endpoint
2024-10-11 17:08:04 +05:30
utin-francis-peter
aa57984bde
build: added missing dependency
2024-10-11 03:55:35 +01:00