Commit graph

128 commits

Author SHA1 Message Date
Lucas Oliveira
e0015f35db
fix: update onboarding design, make opensearch index be initialized after onboarding, make flow reset change the models to the provider chosen (#100)
* changed tooltip stype

* added start on label wrapper

* changed switch to checkbox on openai onboarding and changed copies

* made border be red when api key is invalid

* Added embedding configuration after onboarding

* changed openrag ingest docling to have same embedding model component as other flows

* changed flows service to get flow by id, not by path

* modify reset_langflow to also put right embedding model

* added endpoint and project id to provider config

* added replacing the model with the provider model when resetting

* Moved consts to settings.py

* raise when flow_id is not found
2025-09-26 12:04:17 -03:00
Lucas Oliveira
28e566a1f4
feat: add session delete functionality (#70)
* implement delete user conversation on agent

* format

* implement delete session endpoint

* implement delete session on persistence services

* added deletion of sessions and added fetch sessions with query instead of with useEffect

* removed unused texts

* implemented dropdown menu on conversations
2025-09-24 17:41:53 -03:00
Mike Fortman
fc2e20b150 fix agent settings 2025-09-24 15:17:40 -05:00
Mike Fortman
56541abb4d
Merge pull request #71 from langflow-ai/setting-updates
settings updates for true flow updates
2025-09-24 14:53:00 -05:00
Mike Fortman
03f9f25a51 pr feedback 2025-09-24 14:20:29 -05:00
Deon Sanchez
be8e13a173
feat: add knowledge status (#53)
* feat: add status handling and visual indicators for file statuses

* refactor: comment out status field and related rendering logic in SearchPage

* format

* add timeout on mutation delete document

* make file fields be optional

* fetch task files and display them on knowledge page

* add tasks to files inside task context

* added failed to status badge

* added files on get all tasks on backend

* Changed models to get parameters by settings if not existent

* changed settings page to get models when is no ajth mode

* fixed openai allowing validation even when value is not present

* removed unused console log

---------

Co-authored-by: Lucas Oliveira <lucas.edu.oli@hotmail.com>
Co-authored-by: Mike Fortman <michael.fortman@datastax.com>
2025-09-24 10:27:59 -03:00
Mike Fortman
917b078c20 old tweaks cleanup 2025-09-23 16:01:02 -05:00
Cole Goldsmith
744a799c11 Merge branch 'main' into feat/move-filters 2025-09-23 09:27:01 -05:00
Lucas Oliveira
c6794adca9
fix: make different providers have their edges connected, redirect to main page from onboarding (#58)
* Changed flows and components to support different models

* Changed onboarding to redirect automatically

* Added new components and ids to settings

* Changed flows service to change llm text components as well

* changed models service to not remove : on ollama

* fix edge not connecting on nudges flow
2025-09-22 18:02:56 -03:00
Cole Goldsmith
a343d94cb9 Merge branch 'main' into feat/move-filters 2025-09-22 15:02:31 -05:00
Mike Fortman
de733eee70
Merge pull request #50 from langflow-ai/feat/onboarding
Add onboarding and update settings
2025-09-22 14:14:54 -05:00
Lucas Oliveira
dfd60574d0 changed regex to replace everything related to the old edges and nodes, changed update_provider_components to get updated flow from langflow 2025-09-22 13:15:04 -03:00
Lucas Oliveira
34add855ca added function to update model parameters on flows service 2025-09-22 13:00:37 -03:00
Lucas Oliveira
ce9859a031 changed models service to check embedding and llm models 2025-09-22 11:19:10 -03:00
Cole Goldsmith
8d5791971d Merge branch 'main' into feat/move-filters 2025-09-22 09:02:16 -05:00
Mike Fortman
abb1ae0819 Merge branch 'feat/onboarding' of github.com:langflow-ai/openrag into feat/onboarding 2025-09-20 11:05:10 -05:00
Mike Fortman
7da9b98204 add docling presets 2025-09-20 11:05:01 -05:00
Lucas Oliveira
43f94f9f4b added model validation and onboarding finishing 2025-09-20 12:09:27 -03:00
Cole Goldsmith
4291cf5d45 Merge branch 'main' into feat/move-filters 2025-09-19 15:21:25 -05:00
Cole Goldsmith
8f3b149034 add more mutation queries and fix backend to wait for updates 2025-09-19 15:21:18 -05:00
Edwin Jose
5d43bb1abb
Merge branch 'main' into feat-add-owner-info-env 2025-09-19 13:45:12 -04:00
phact
f81bff1043 task tracking running jobs 2025-09-19 11:22:01 -04:00
Mike Fortman
9ad1fb3f4f Merge branch 'main' of github.com:langflow-ai/openrag into feat/onboarding 2025-09-18 21:04:37 -05:00
Edwin Jose
9dfe067e1e Add global var headers to MCP server updates
Extend AuthService and LangflowMCPService to support updating MCP servers with multiple global variable headers (JWT, OWNER, OWNER_NAME, OWNER_EMAIL) during login. This enables passing user context to MCP servers via custom headers, improving downstream identification and authorization.
2025-09-18 20:55:03 -04:00
Lucas Oliveira
d68a787017 Added models fetching 2025-09-18 18:25:00 -03:00
Deon Sanchez
9b5a7be8b0 Merge branch 'main' of https://github.com/langflow-ai/openrag into delete-knowledge 2025-09-18 14:09:51 -06:00
Edwin Jose
e89c4fa40f
Merge branch 'main' into feat-add-langflow-mcp-service 2025-09-18 14:14:50 -04:00
Lucas Oliveira
ecf3cf1402 Merge remote-tracking branch 'origin/main' into feat/onboarding 2025-09-18 14:19:05 -03:00
phact
096c1803b5 fix: no-auth process directory tasks bug 2025-09-18 12:56:15 -04:00
Lucas Oliveira
7010c73c50 Add assign model provider function to replace the flow with components 2025-09-17 17:43:14 -03:00
Edwin Jose
713f90c3c4 Integrate Langflow MCP JWT header update in AuthService
Added LangflowMCPService to update MCP servers with the user's JWT header after authentication. AuthService now triggers a background update to MCP servers on successful login, ensuring JWT propagation for downstream services.
2025-09-17 02:01:03 -04:00
Deon Sanchez
f28ba54da3 Implement Delete Confirmation Dialog and Enhance Knowledge Dropdown
- Added a new `DeleteConfirmationDialog` component for confirming deletions.
- Updated `KnowledgeDropdown` to include a loading state and improved user feedback during file operations.
- Enhanced the search page to support bulk deletion of documents with confirmation dialog.
- Integrated event dispatching for knowledge updates after file operations.
- Refactored various components for better readability and maintainability.
2025-09-16 16:07:49 -06:00
Edwin Jose
6dbcf5dbf5 Update langflow_history_service.py 2025-09-10 13:10:42 -04:00
Edwin Jose
6f76044395 Merge branch 'main' into fix-logger 2025-09-10 13:10:08 -04:00
Edwin Jose
4212c1025c Update session_ownership_service.py 2025-09-10 12:42:09 -04:00
Edwin Jose
8390653861 Update langflow_history_service.py 2025-09-10 12:42:05 -04:00
Edwin Jose
8672c89743 Update conversation_persistence_service.py 2025-09-10 12:41:58 -04:00
Edwin Jose
fe88378d05 Update chat_service.py 2025-09-10 12:41:04 -04:00
phact
e6f3dabcf9 consolidate langflow clients 2025-09-10 12:03:11 -04:00
Sebastián Estévez
5e1e8cc99b
Merge branch 'main' into cz/remove-chat-default 2025-09-09 15:36:13 -04:00
Mike Fortman
ab10e01286
Merge pull request #26 from langflow-ai/ingest-settings
Add ingest settings
2025-09-09 14:03:10 -05:00
phact
6cfdb827c7 task timings 2025-09-09 14:33:15 -04:00
Sebastián Estévez
e2caae94f1
Merge branch 'main' into ingest-settings 2025-09-09 13:29:27 -04:00
cristhianzl
9fb24ab369 🔧 (chat_service.py): remove redundant code block that adds local metadata to conversations array
♻️ (chat_service.py): refactor code to remove unnecessary loop for adding local metadata to conversations array
2025-09-09 14:22:47 -03:00
Mike Fortman
643539b548 support for ingest 2025-09-09 11:12:48 -05:00
Mike Fortman
05cd115162 Merge branch 'main' of github.com:langflow-ai/openrag into ingest-settings 2025-09-09 10:00:19 -05:00
Edwin Jose
8dff280930 add langflow routers with langflow file processor 2025-09-09 03:20:21 -04:00
Edwin Jose
faac0c912e Merge branch 'main' into langflow-ingestion-modes 2025-09-09 02:42:52 -04:00
phact
132194d1f8 filenames 2025-09-09 00:13:16 -04:00
Gabriel Luiz Freitas Almeida
0539f7751a Enhance ingestion flow by adding user metadata and improving context handling
This commit updates the ingestion flow to include user metadata such as owner ID, name, and email, enhancing the context for downstream services. It also refines the handling of tweaks in the LangflowFileService to incorporate this metadata, ensuring better tracking and clarity in the ingestion process. These changes align with best practices for robust async development and improve the overall functionality of the ingestion flow.
2025-09-08 23:49:46 -03:00