Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
705c706
revamp
wendytang May 21, 2025
2320968
checkpoint
wendytang May 21, 2025
6c58caa
rm context
wendytang May 21, 2025
8ae6961
map
wendytang May 22, 2025
0dd5866
rm file, fix tests
wendytang May 22, 2025
bee0fb1
map -> andthen
wendytang May 22, 2025
5131840
router_tools
wendytang May 22, 2025
9af862f
Merge branch 'main' into wtang/tool_selection_strategy
wendytang May 22, 2025
a4c0b32
Merge branch 'main' into wtang/tool_selection_strategy
wendytang May 23, 2025
9104eca
Merge branch 'main' into wtang/tool_selection_strategy
wendytang May 23, 2025
606cd71
add lancedb vector search
May 23, 2025
332d7b8
feat: use databricks embedding serving endpoint for internal users; o…
wendytang May 27, 2025
2628b16
Merge branch 'main' into ahau/vector_tool_selection
wendytang May 27, 2025
b6e841d
index platform tools as well for vector strategy
May 27, 2025
32e07a6
merge: prefixed tools
wendytang May 27, 2025
8c749bc
feat: have config manage GOOSE_ROUTER_TOOL_SELECTION_STRATEGY (#2684)
wendytang May 27, 2025
fac88de
feat: add Tool Selection Strategy component in the UI; lancedb table …
wendytang May 28, 2025
ae8ae75
use existing openai/databricks providers for embeddings. remove check…
May 28, 2025
8bc20f6
refactor tool reindexing
May 28, 2025
f276faa
refactoring. embed tools in batch
May 28, 2025
10cb8d9
refactored to remove embedding provider and just use standard provider
May 28, 2025
70744db
Merge branch 'main' into ahau/vector_tool_selection
ahau-square May 28, 2025
961fb42
fmt; rm logs
wendytang May 28, 2025
0df6088
install protoc in build
wendytang May 28, 2025
097b5f7
lints
wendytang May 29, 2025
0ee7083
install protoc in bundle-desktop workflow
wendytang May 29, 2025
c44b0a7
add brew install protoc
wendytang May 29, 2025
f9889f8
add documentation
wendytang May 29, 2025
0808824
docs
wendytang May 29, 2025
4ab2b82
Merge branch 'main' into ahau/vector_tool_selection
wendytang May 29, 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
5 changes: 5 additions & 0 deletions .github/workflows/bundle-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ jobs:
# Check disk space after cleanup
df -h

- name: Install protobuf
run: |
brew install protobuf
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV

- name: Setup Rust
uses: dtolnay/rust-toolchain@38b70195107dddab2c7bbd522bcf763bac00963b # pin@stable
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt update -y
sudo apt install -y libdbus-1-dev gnome-keyring libxcb1-dev
sudo apt install -y libdbus-1-dev gnome-keyring libxcb1-dev protobuf-compiler

- name: Setup Rust
uses: dtolnay/rust-toolchain@38b70195107dddab2c7bbd522bcf763bac00963b # pin@stable
Expand Down
Loading
Loading