Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
3351d8e
chore: lower bound to Python 3.10, keep formatting py39
mdrxy Sep 18, 2025
8b8e18e
chore: linting and updating typing as a result of upgrade
mdrxy Sep 18, 2025
888036d
chore: update min vers in `pyproject.toml` files
mdrxy Sep 18, 2025
83158f4
chore: v1 migrations (#1195)
mdrxy Sep 18, 2025
a89bf5a
fix(vertex): lockfile
mdrxy Sep 18, 2025
27dad36
Merge branch 'main' into v3.0.0
mdrxy Sep 18, 2025
69c6793
feat: return `model_name` and `model_provider` in `response_metadata`
mdrxy Sep 18, 2025
8c43565
fix: resolve `VertexCandidate` type annotation
mdrxy Sep 18, 2025
44e6d99
Merge branch 'main' into v3.0.0
mdrxy Sep 22, 2025
ddccdc8
Merge branch 'main' into v3.0.0
mdrxy Sep 22, 2025
1548f11
Merge branch 'main' into v3.0.0
mdrxy Sep 23, 2025
e8b3898
chore: update projects/locks
mdrxy Sep 23, 2025
eacdad8
resolve: lint
mdrxy Sep 23, 2025
8d1d80e
Merge branch 'main' into v3.0.0
mdrxy Sep 23, 2025
2a0228c
Merge branch 'main' into v3.0.0
mdrxy Sep 24, 2025
90ce4d6
Merge branch 'main' into v3.0.0
mdrxy Sep 26, 2025
840748e
!chore(vertex): remove `embed_image()`
mdrxy Sep 26, 2025
4e44c24
!chore(vertex): remove `embbedings` property
mdrxy Sep 26, 2025
ec6ccba
!chore(community): remove `BigQueryVectorSearch`
mdrxy Sep 26, 2025
886ea5d
!chore(vertex): remove deprecated 'embbedings' parameter and warning
mdrxy Sep 26, 2025
b62dfdb
updates to `_convert_to_parts`
mdrxy Sep 29, 2025
8c86758
chore(vertex): remove Gemma integrations (#1220)
lkuligin Sep 29, 2025
b93156c
Merge branch 'main' into v3.0.0
mdrxy Sep 29, 2025
621c9ba
Merge branch 'main' into v3.0.0
mdrxy Sep 29, 2025
b094f06
feat(genai): standard content (#1204)
mdrxy Sep 30, 2025
5bb23db
feat(genai): (v1) server tool use (#1223)
mdrxy Sep 30, 2025
ebacb17
bump genai lock/deps
mdrxy Sep 30, 2025
97e8f4d
vertex lock update, no version bump
mdrxy Sep 30, 2025
316ed5e
release(genai): 3.0.0a1
mdrxy Sep 30, 2025
b44da03
chore(genai): bump version
mdrxy Oct 2, 2025
e1c1801
feat(vertex): standard content (#1224)
mdrxy Oct 10, 2025
5ab2618
Revert "feat(vertex): standard content" (#1240)
mdrxy Oct 10, 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
1 change: 0 additions & 1 deletion .github/workflows/_compile_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Starting new jobs is also relatively slow,
# so linting on fewer versions makes CI faster.
python-version:
- "3.9"
- "3.10"
- "3.12"
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down
2 changes: 0 additions & 2 deletions libs/community/langchain_google_community/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from langchain_google_community.bigquery import BigQueryLoader
from langchain_google_community.bigquery_vector_search import BigQueryVectorSearch
from langchain_google_community.bq_storage_vectorstores.bigquery import (
BigQueryVectorStore,
)
Expand Down Expand Up @@ -64,7 +63,6 @@
__all__ = [
"BigQueryLoader",
"BigQueryVectorStore",
"BigQueryVectorSearch",
"CalendarCreateEvent",
"CalendarDeleteEvent",
"CalendarMoveEvent",
Expand Down
Loading