An open API service indexing awesome lists of open source software.

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

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"
}
}
```