-
Notifications
You must be signed in to change notification settings - Fork 2.8k
feat: Migrating Travel_Concierge to contrib/ recipe #2482
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
Open
gkcng
wants to merge
5
commits into
google:main
Choose a base branch
from
gkcng:travel-recipe-migrate
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
dfc34e6
refactor: copied travel-concierge to contrib/
gkcng c0adad7
refactor: ran prepare-python-receipe
gkcng c3b58e1
fix: brought up to date to google-genai 1.21.1, fixed pytest and agen…
gkcng f7e6dc9
Merge branch 'main' into travel-recipe-migrate
happyhuman dc540bb
Merge branch 'main' into travel-recipe-migrate
happyhuman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| # Choose Model Backend: 0 -> ML Dev, 1 -> Vertex | ||
| GOOGLE_GENAI_USE_VERTEXAI=YOUR_VALUE_HERE | ||
| # ML Dev backend config, ignore if using Vertex. | ||
| GOOGLE_API_KEY=YOUR_VALUE_HERE | ||
|
|
||
| # Model Selection - Gemini 3.6 Flash is the default, but you can specify any available model. | ||
| GOOGLE_GENAI_MODEL=gemini-3.6-flash | ||
|
|
||
| # Vertex backend config | ||
| GOOGLE_CLOUD_PROJECT=YOUR_VALUE_HERE | ||
| GOOGLE_CLOUD_LOCATION=global # For certain models like 3.6 flash it must be "global". | ||
|
|
||
| # Maps API | ||
| GOOGLE_MAPS_API_KEY=YOUR_API_KEY_HERE | ||
|
|
||
| # GCS Storage Bucket name - for Agent Engine deployment test | ||
| GOOGLE_CLOUD_STORAGE_BUCKET=YOUR_BUCKET_NAME_HERE | ||
| GOOGLE_DEPLOY_REGION=YOUR_REGION_HERE | ||
|
|
||
| # Sample Scenario Path - Default is an empty itinerary | ||
| # This will be loaded upon first user interaction. | ||
| # | ||
| # Uncomment one of the two, or create your own. | ||
| # | ||
| # TRAVEL_CONCIERGE_SCENARIO=travel_concierge/profiles/itinerary_seattle_example.json | ||
| TRAVEL_CONCIERGE_SCENARIO=travel_concierge/profiles/itinerary_empty_default.json | ||
|
|
||
| # (Optional) Arize Keys for Tracing | ||
| ARIZE_SPACE_ID=YOUR_ARIZE_SPACE_ID_HERE | ||
| ARIZE_API_KEY=YOUR_ARIZE_API_KEY_HERE | ||
|
|
||
| # Environment variables extracted by extract-python-environment-variables | ||
| ARIZE_PROJECT_NAME=adk-travel-concierge # extracted-by:extract-env-vars; from getenv in travel_concierge/tracing.py | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
ENABLE_ARIZEis read intracing.pybut isn't declared in this block. Can you please add it?