https://github.com/rohandwivedi2005/migration-example
JavaScript example for Gemini API using Jupyter Notebook and Deno
https://github.com/rohandwivedi2005/migration-example
api deno gemini-api javascript jupyter-notebook python3 sdk
Last synced: 2 months ago
JSON representation
JavaScript example for Gemini API using Jupyter Notebook and Deno
- Host: GitHub
- URL: https://github.com/rohandwivedi2005/migration-example
- Owner: ROHANDWIVEDI2005
- Created: 2025-04-07T16:03:22.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-16T04:48:09.000Z (about 1 year ago)
- Last Synced: 2025-04-16T05:44:19.322Z (about 1 year ago)
- Topics: api, deno, gemini-api, javascript, jupyter-notebook, python3, sdk
- Language: Jupyter Notebook
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Migration-Example
- This repository contains an example of migration of a Gemini API example from Python To Javascript using Deno and Jupyter notebook.
---
## Prerequisites
- **Operating System**: Windows, macOS, or Linux.
- **Jupyter**: Jupyter Notebook or JupyterLab must be installed.
## for macOS and Linux:
```
curl -fsSL https://deno.land/install.sh | sh
```
## for windows Powershell
```bash
iwr https://deno.land/install.ps1 -useb | iex
```
## Verify kernel installation
```cmd
jupyter kernelspec list
```
**Add dependencies using the deno.json file**
**For example**
```
{
"imports": {
"@google/genai": "npm:@google/genai"
}
}
```