Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
8dd2736
fix: Add additional blocking functions for Alembic and dotenv in tests
ogabrielluiz Jun 3, 2025
fd6e667
fix: Implement database availability checks in Component and Database…
ogabrielluiz Jun 3, 2025
5ee198a
test: Add comprehensive tests for AgentComponent with OpenAI and Anth…
ogabrielluiz Jun 3, 2025
7d66e73
[autofix.ci] apply automated fixes (attempt 2/3)
autofix-ci[bot] Jul 1, 2025
68d7a6f
[autofix.ci] apply automated fixes (attempt 2/3)
autofix-ci[bot] Jul 1, 2025
580a53f
[autofix.ci] apply automated fixes
autofix-ci[bot] Jul 9, 2025
cfd126e
[autofix.ci] apply automated fixes (attempt 2/3)
autofix-ci[bot] Jul 9, 2025
a22ef24
refactor: Improve database availability handling in Component class
ogabrielluiz Jul 10, 2025
fb5866b
test: Add async test for message sending without database in Componen…
ogabrielluiz Jul 10, 2025
008c31e
[autofix.ci] apply automated fixes
autofix-ci[bot] Jul 10, 2025
0dd0d47
chore: Add new linting rule PLC0415 to pyproject.toml
ogabrielluiz Jul 10, 2025
8c92df9
test: Add async test for AgentComponent message event handling
ogabrielluiz Jul 10, 2025
b4caafd
Merge branch 'main' into deactivate-db-in-agent
ogabrielluiz Jul 14, 2025
3466414
[autofix.ci] apply automated fixes
autofix-ci[bot] Jul 14, 2025
7bb9c9c
[autofix.ci] apply automated fixes (attempt 2/3)
autofix-ci[bot] Jul 14, 2025
f43d68e
[autofix.ci] apply automated fixes (attempt 3/3)
autofix-ci[bot] Jul 14, 2025
4c81a6a
feat(graph): add component_config parameter to Graph initialization a…
ogabrielluiz Jul 14, 2025
b873f0a
fix(component): enhance database availability check to respect persis…
ogabrielluiz Jul 14, 2025
477b011
fix(tests): update model names in test_agent_component to use OPENAI_…
ogabrielluiz Jul 14, 2025
ad9007a
feat(api): add optional component_config parameter to build_flow and …
ogabrielluiz Jul 14, 2025
2ff2e04
chore(pre-commit): update ruff configuration to use local repository …
ogabrielluiz Jul 14, 2025
92a4bab
chore(pre-commit): update ruff hook entry to include 'check' for impr…
ogabrielluiz Jul 14, 2025
0df5e94
feat(api): introduce ComponentConfig model and integrate optional com…
ogabrielluiz Jul 14, 2025
2cb40e3
refactor(component): simplify database availability check for clarity…
ogabrielluiz Jul 14, 2025
1aceeb5
fix(api): ensure component_config is properly handled in build_graph_…
ogabrielluiz Jul 14, 2025
7dd90df
feat(tests): add tests for ComponentConfig behavior in flow building …
ogabrielluiz Jul 14, 2025
8e8bdfc
[autofix.ci] apply automated fixes
autofix-ci[bot] Jul 14, 2025
49cc70f
[autofix.ci] apply automated fixes (attempt 2/3)
autofix-ci[bot] Jul 14, 2025
7379597
refactor(component): remove unnecessary call to _set_output_required_…
ogabrielluiz Jul 14, 2025
39c5662
[autofix.ci] apply automated fixes
autofix-ci[bot] Jul 14, 2025
3aa24cc
Merge branch 'main' into deactivate-db-in-agent
ogabrielluiz Jul 14, 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
[autofix.ci] apply automated fixes
  • Loading branch information
autofix-ci[bot] authored Jul 14, 2025
commit 8e8bdfcb262a89c150df19f9128e04e2012e25b0
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,10 @@
"group_outputs": false,
"method": "search_documents",
"name": "search_results",
"required_inputs": [],
"required_inputs": [
"supabase_service_key",
"supabase_url"
],
"selected": "Data",
"tool_mode": true,
"types": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2707,7 +2707,10 @@
"group_outputs": false,
"method": "search_documents",
"name": "search_results",
"required_inputs": [],
"required_inputs": [
"supabase_service_key",
"supabase_url"
],
"selected": "Data",
"tool_mode": true,
"types": [
Expand Down Expand Up @@ -3482,7 +3485,10 @@
"group_outputs": false,
"method": "search_documents",
"name": "search_results",
"required_inputs": [],
"required_inputs": [
"supabase_service_key",
"supabase_url"
],
"selected": "Data",
"tool_mode": true,
"types": [
Expand Down
Loading