Skip to content
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

Add a notebook test script. #187

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Barista Bot - Use standard userdata cell
  • Loading branch information
MarkDaoust committed May 30, 2024
commit b6e8b27b5b34c6cf471d3b3f40c52574f481056d
13 changes: 11 additions & 2 deletions examples/Agents_Function_Calling_Barista_Bot.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,17 @@
"from typing import Iterable\n",
"\n",
"import google.generativeai as genai\n",
"from google.api_core import retry\n",
"\n",
"from google.api_core import retry"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "b3eb439fb7a2"
},
"outputs": [],
"source": [
"from google.colab import userdata\n",
"genai.configure(api_key=userdata.get('GOOGLE_API_KEY'))"
]
Expand Down