Skip to content
Open
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
b453a72
feat: add category column to variable model and validation logic
ogabrielluiz Mar 14, 2025
dcf8d0c
feat: add LLM loading and utility functions
ogabrielluiz Mar 14, 2025
ee37cc8
feat: enhance variable management with category support and LLM settings
ogabrielluiz Mar 14, 2025
b1b862a
feat: implement async LLM generation and loading in Component
ogabrielluiz Mar 14, 2025
5699903
test: add unit and integration tests for LLM loading functionality
ogabrielluiz Mar 14, 2025
a9b0d26
feat: add hook to retrieve variables by category and enhance global v…
ogabrielluiz Mar 14, 2025
4890a45
feat: add LLM settings page and integrate into settings navigation
ogabrielluiz Mar 14, 2025
f183436
feat: enhance validation for LLM settings in DatabaseVariableService
ogabrielluiz Mar 14, 2025
2dda874
feat: add async method to retrieve global LLM instance
ogabrielluiz Mar 14, 2025
205f9b1
feat: add nullable category column to variable table in migration script
ogabrielluiz Apr 7, 2025
0fcb3d8
fix: update down_revision in migration script for category column add…
ogabrielluiz Apr 16, 2025
9fc688c
Merge branch 'main' into global-llm
ogabrielluiz Sep 17, 2025
7408646
refactor: remove unused LLM attribute from Component class
ogabrielluiz Sep 17, 2025
0dddf96
feat: add abstract method for retrieving variables by category
ogabrielluiz Sep 17, 2025
320f8ad
feat: add CATEGORY_KB to valid categories in constants
ogabrielluiz Sep 17, 2025
30effce
feat: add non-nullable category column to variable table
ogabrielluiz Sep 17, 2025
9ff9226
chore: clean up package-lock.json by removing deprecated and unused d…
ogabrielluiz Sep 17, 2025
a9a9e02
feat: replace LLMSettingsPage with KBSettingsPage for Knowledge Base …
ogabrielluiz Sep 17, 2025
7825f52
feat: implement vector store factory for Knowledge Bases
ogabrielluiz Sep 17, 2025
6c19fa1
feat: add provider-aware metadata adapters for Knowledge Bases
ogabrielluiz Sep 17, 2025
45a6cfa
feat: enhance metadata extraction for Knowledge Bases with user-aware…
ogabrielluiz Sep 17, 2025
6a42bc5
feat: refactor vector store integration for Knowledge Bases
ogabrielluiz Sep 17, 2025
ba9a795
feat: add unit tests for knowledge bases functionality
ogabrielluiz Sep 17, 2025
51da64d
feat: add unit tests for knowledge bases functionality
ogabrielluiz Sep 17, 2025
4c4e15e
Merge branch 'main' into global-llm
ogabrielluiz Sep 18, 2025
d33858b
feat: enhance OpenSearch vector store integration with new adapter an…
ogabrielluiz Sep 18, 2025
dd95e47
fix: improve OpenSearch metadata adapter functionality and error hand…
ogabrielluiz Sep 18, 2025
07866f5
refactor: enhance OpenSearch with classmethods
ogabrielluiz Sep 18, 2025
74bf0d2
chore: add blank line for improved readability in test file
ogabrielluiz Sep 18, 2025
de4cdf2
refactor: update OpenSearch vector store tests to use new adapter
ogabrielluiz Sep 18, 2025
0227bd8
refactor: update OpenSearch vector store tests to use real adapter
ogabrielluiz Sep 18, 2025
d62f78e
Merge branch 'main' of https://github.com/langflow-ai/langflow into g…
deon-sanchez Oct 16, 2025
4a658ca
chore: update component index
github-actions[bot] Oct 16, 2025
a8ee772
Merge branch 'main' into global-llm
deon-sanchez Oct 16, 2025
0e605b4
chore: update component index
github-actions[bot] Oct 16, 2025
7739c56
Update src/backend/base/langflow/alembic/versions/e5fc330efa7c_add_ca…
erichare Oct 16, 2025
1bb4bb0
Update src/frontend/src/pages/SettingsPage/KBSettingsPage.tsx
erichare Oct 16, 2025
b65362b
Update src/backend/tests/unit/base/knowledge_bases/test_database_fact…
erichare Oct 16, 2025
7d3fcb2
Update src/frontend/src/pages/SettingsPage/KBSettingsPage.tsx
erichare Oct 16, 2025
11d58c2
chore: update component index
github-actions[bot] Oct 16, 2025
ebaa39d
Merge branch 'main' into global-llm
erichare Oct 16, 2025
c8062cc
Update src/backend/tests/unit/base/knowledge_bases/test_metadata_adap…
erichare Oct 16, 2025
763880d
Update src/backend/tests/unit/base/knowledge_bases/test_database_fact…
erichare Oct 16, 2025
2dcc710
chore: update component index
github-actions[bot] Oct 16, 2025
5b224c7
Update vector_store_factory.py
erichare Oct 16, 2025
db4fd7c
chore: update component index
github-actions[bot] Oct 16, 2025
8b8f97c
Update KBSettingsPage.tsx
erichare Oct 16, 2025
d328c49
[autofix.ci] apply automated fixes
autofix-ci[bot] Oct 16, 2025
069d157
Update e5fc330efa7c_add_category_column_in_variable.py
erichare Oct 16, 2025
d6422c5
chore: update component index
github-actions[bot] Oct 16, 2025
99fce7f
Update e5fc330efa7c_add_category_column_in_variable.py
erichare Oct 16, 2025
86c7b8b
chore: update component index
github-actions[bot] Oct 16, 2025
54f8f19
Merge branch 'main' into global-llm
erichare Oct 16, 2025
0734ced
chore: update component index
github-actions[bot] Oct 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update e5fc330efa7c_add_category_column_in_variable.py
  • Loading branch information
erichare committed Oct 16, 2025
commit 069d1572ea9e3b03ce56e673f4dd2bc317a5b3e7
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ def upgrade() -> None:
with op.batch_alter_table("variable", schema=None) as batch_op:
if "category" not in column_names:
# Add new column as non-nullable with default
batch_op.add_column(
batch_op.add_column(
sa.Column("category", sqlmodel.sql.sqltypes.AutoString(), nullable=False, server_default="global")
)
Expand Down
Loading