Skip to content

Commit

Permalink
Fixing last mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
Giom-V committed Jan 29, 2025
1 parent 0bf55c6 commit b371e1b
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 9 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ We recommend starting with the following:
<br><br>

Then, explore the other Quick Starts to learn about individual features:
* [Chat mode](./quickstarts/Get_started_chat.ipynb): multi-turn conversation
* [Grounding](./quickstarts/Search_Grounding.ipynb): use Google Search for grounded responses
* [Code execution](./quickstarts/Code_Execution.ipynb): SGenerating and running Python code to solve complex tasks
* And [many more](./quickstarts/)
Expand Down
2 changes: 1 addition & 1 deletion examples/Search_grounding_for_research_report.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
},
"outputs": [],
"source": [
"MODEL_ID = \"gemini-2.0-flash\" # @param [\"gemini-1.5-flash-8b\",\"gemini-1.5-flash-latest\",\"gemini-2.0-pro-exp-01-28\",\"gemini-2.0-flash\"] {\"allow-input\":true}"
"MODEL_ID = \"gemini-2.0-flash-exp\" # @param [\"gemini-1.5-flash-8b\",\"gemini-1.5-flash-latest\",\"gemini-2.0-flash-exp\"] {\"allow-input\":true}"
]
},
{
Expand Down
70 changes: 70 additions & 0 deletions gemini-2/video_understanding.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "lb5yiH5h8x3h"
},
"source": [
"##### Copyright 2024 Google LLC."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"cellView": "form",
"id": "906e07f6e562"
},
"outputs": [],
"source": [
"#@title Licensed under the Apache License, Version 2.0 (the \"License\");\n",
"# you may not use this file except in compliance with the License.\n",
"# You may obtain a copy of the License at\n",
"#\n",
"# https://www.apache.org/licenses/LICENSE-2.0\n",
"#\n",
"# Unless required by applicable law or agreed to in writing, software\n",
"# distributed under the License is distributed on an \"AS IS\" BASIS,\n",
"# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n",
"# See the License for the specific language governing permissions and\n",
"# limitations under the License."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "WMGdicu8PVD9"
},
"source": [
"# Video understanding with Gemini 2.0"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "0c78a2290cc9"
},
"source": [
"### This notebook has been moved in the [quickstarts](../quickstarts/Video_understanding.ipynb) section where you can find all the guides and tutorials to get to know the Gemini capabilities."
]
}
],
"metadata": {
"colab": {
"name": "spatial_understanding.ipynb",
"toc_visible": true
},
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python",
"version": "3.11.2"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"id": "eVmFDcYOSNiV"
},
"source": [
"# Gemini API: Getting started with Gemini 2.0 Chat mode\n",
"# Gemini API: Getting started with Gemini 2.0\n",
"\n",
"<table align=\"left\">\n",
" <td>\n",
" <a target=\"_blank\" href=\"https://colab.research.google.com/github/google-gemini/cookbook/blob/main/quickstarts/Get_started_chat.ipynb\"><img src=\"https://ai.google.dev/site-assets/images/docs/colab_logo_32px.png\" />Run in Google Colab</a>\n",
" <a target=\"_blank\" href=\"https://colab.research.google.com/github/google-gemini/cookbook/blob/main/quickstarts/Get_started.ipynb\"><img src=\"https://ai.google.dev/site-assets/images/docs/colab_logo_32px.png\" />Run in Google Colab</a>\n",
" </td>\n",
"</table>\n"
]
Expand Down
5 changes: 0 additions & 5 deletions quickstarts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ Then learn about how to **get started** with the other models that you can use w
* More to come very soon...
<br/><br/>

There are multiples way to call the models using the Gemini API, these other **get started** guides will then show you the other ways to call the model:
* [Get Started with Chat mode](./Get_started_chat.ipynb): Learn how to use the Gemini API in chat mode so that it remembers the whole discussion.
* More to come...
<br/><br/>

Finally, these guides will deep-dive into specific capabilities of the Gemini models and API:
* [Grounding](./Search_Grounding.ipynb): Learn how to use Google Search to ground your answers with external sources.
* [Spatial understanding](./Spatial_understanding.ipynb): Learn how to use Gemini's spatial understanding capabilities to detect what's in your images, and reason about them
Expand Down

0 comments on commit b371e1b

Please sign in to comment.