-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add Agent Builder Search pattern with Data Ingestion #1380
base: main
Are you sure you want to change the base?
feat: Add Agent Builder Search pattern with Data Ingestion #1380
Conversation
gemini/sample-apps/e2e-gen-ai-app-starter-pack/app/patterns/agent_builder_search/README.md
Outdated
Show resolved
Hide resolved
gemini/sample-apps/e2e-gen-ai-app-starter-pack/app/patterns/agent_builder_search/chain.py
Show resolved
Hide resolved
...-starter-pack/app/patterns/agent_builder_search/resources_to_copy/data_ingestion/pipeline.py
Outdated
Show resolved
Hide resolved
...-starter-pack/app/patterns/agent_builder_search/resources_to_copy/data_ingestion/pipeline.py
Outdated
Show resolved
Hide resolved
gemini/sample-apps/e2e-gen-ai-app-starter-pack/data_ingestion/README.md
Outdated
Show resolved
Hide resolved
gemini/sample-apps/e2e-gen-ai-app-starter-pack/deployment/README.md
Outdated
Show resolved
Hide resolved
gemini/sample-apps/e2e-gen-ai-app-starter-pack/deployment/terraform/build_triggers.tf
Outdated
Show resolved
Hide resolved
@@ -8,29 +8,34 @@ packages = [ | |||
] | |||
|
|||
[tool.poetry.dependencies] | |||
python = ">=3.10,<3.13" | |||
python = "^3.10,<3.12" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need to check if this is actually needed or if we can find a workaround
google-cloud-pipeline-components = "^2.17.0" | ||
kfp = "^2.7" | ||
pandas = "^2.2.3" | ||
tqdm = "^4.67.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't think this is needed
pypdf = "^4.3.1" | ||
grpcio = "1.64.1" | ||
langgraph = "^0.2.21" | ||
uvicorn = {extras = ["standard"], version = "^0.30.5"} | ||
immutabledict = "^4.2.0" | ||
langchain-core = "^0.3.9" | ||
google-cloud-pipeline-components = "^2.17.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all these should fit in extra
Description
Adding a new pattern for Agent Builder Search in the starter pack