forked from google-gemini/cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds Dev Container configuration (google-gemini#280)
* Adds Dev Container configuration * Minor README tweaks --------- Co-authored-by: Mark McDonald <[email protected]>
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,17 @@ | ||
{ | ||
"name": "Gemini Cookbook Dev Container", | ||
"image": "mcr.microsoft.com/devcontainers/universal:2", | ||
"waitFor": "onCreateCommand", | ||
"updateContentCommand": "python3 -m pip install ipywidgets", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-toolsai.jupyter", | ||
"ms-python.python", | ||
"eamodio.gitlens" | ||
] | ||
} | ||
}, | ||
|
||
"postCreateCommand": "sudo cp .devcontainer/welcome.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt" | ||
} |
This file contains 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,6 @@ | ||
👋 Welcome to the Gemini API Cookbook! This repo is a collection of all the guides and examples for the Gemini API. | ||
- To get started, make sure you have an API Key from [Google AI | ||
studio](https://aistudio.google.com/app/apikey) | ||
- Note that the notebooks were written to run in Google Colab, so they may | ||
not always work in Codespaces | ||
- Check out the 'README.md' file to know more |