Skip to content

Commit

Permalink
Merge pull request #1697 from yuyoujiang/docusaurus-version
Browse files Browse the repository at this point in the history
add:Gapi on Jetson
  • Loading branch information
nfs0619 committed Sep 23, 2024
2 parents c348f13 + 26cccb8 commit 9293054
Show file tree
Hide file tree
Showing 2 changed files with 132 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
---
description: This article introduces how to use Gapi on NVIDIA Jetson devices, an embeddable API gateway designed to rapidly transform the achievements of the Jetson AI Lab into real-world applications through a low-code workflow engine and microservice framework.
title: Getting Started with Gapi
tags:
- AI model optimize
image: https://files.seeedstudio.com/wiki/wiki-platform/S-tempor.png
slug: /gapi_getting_started-with_jetson
last_update:
date: 09/20/2024
author: Youjiang
---

# Getting Started with Gapi on NVIDIA® Jetson Devices

[Gapi](https://genainerds.com/#/Gapi) is an embeddable API gateway that creates streaming integrations between AI micro services and the systems that users leverage everyday.

The project's goal is to accelerate the speed of creating pilots and demos of Jetson AI Lab achievements into real world environments. "On Device" generative AI doesn't mean it has to live on an island!

<div align="center"><img width ="800" src="https://genainerds.com/assets/img/GapiGIF.gif"/></div>

- Workflow engine with low code UI with dozens of open integrations and customizable clients for mobile web and desktop.
- Micro service framework for wrapping Jetson containers (Ollama, Whisper, Piper TTS, etc. are done, with more coming). Or wrap your own models/code and integrate it into Workflows.
- Real-time, hybrid, binary+json messaging smoothens intra-service calls and reduced latency.
- A fast path to proving generative AI value to stakeholders in their actual environment.

## Gapi Server

Embeddable API gateway software that runs in the background with a low code workflow UI for testing. The server is a message hub and state machine for workflow 'nodes' that talk to Micro Services. Think of it as connective-tissue for applications.

<div align="center"><img width ="800" src="https://genainerds.com/assets/img/GapiDiagram3.png"/></div>

:::note
A Micro Service is a process that runs some wrapper python scripts that integrates custom code/models into Workflows using a streaming API.
:::

- Gapi Server can run on any Jetson Orin or really any computer as the Micro Services connect outbound over secure web sockets. It doesn't use any GPU resources. There is also a little demo version to skip the Server install (but you'll still need to run your own Micro Services).
- [Gapi Project Page](https://genainerds.com/#/Gapi)
- [Gapi Github](https://github.com/GenAI-Nerds/Gapi/)
- [Gapi Docs](https://genainerds.com/#/Docs)
- [Gapi Hosted Demo](https://genaigapi.com/)

## Requirements
- Any NVIDIA Jetson Orin
- Docker
- Sufficient Storage Space: 1.3GB

## Install Gapi on Jetson

**Run These Steps to install Gapi on Jetson:**
```bash
mkdir ~/gapiData && cd ~/gapiData
curl -L https://raw.githubusercontent.com/genai-nerds/Gapi/main/gapiConfigs.zip -o gapiConfigs.zip
unzip -q gapiConfigs.zip
docker run -d --name gapi --network host -v ~/gapiData:/opt/gapi/vdata genainerds/gapi:arm64 /bin/bash -c "cd /opt/gapi/bin && ./startGapi.sh"
echo "You may need to hit Enter now. Afterwards the Docker container 'gapi' s
```
**Log In**
- Browse in: http://[host-device-ip]:8090
- User: root
- Pass: !gapi2024
- Change password in Settings! Docs shows how to add SSL cert.
## Workflows
Workflows visually connect the execution and flow of data between Nodes.
<div align="center"><img width ="800" src="https://genainerds.com/assets/img/gapi-diagram-pic.png"/></div>
A Transaction (or single firing) has "Rolling Input" data it accumulates as Node to Node steps each talk to Micro Services and APIs. All Nodes enjoy variables and flow control using familiar json and javascript concepts.
<div align="center"><img width ="800" src="https://genainerds.com/assets/img/switchproperties.png"/></div>
Each Node can append or reference the rolling data in the Transaction while making decisions along the way.
<div align="center"><img width ="800" src="https://genainerds.com/assets/img/visualfeedback.png"/></div>
Watch live Transactions as they start from clients, webhooks and published messages from Micro Services with visual feedback and debugging.
## Micro Services
A Micro Service is a process that runs a wrapper python script that integrates your custom code/models so they can integrate into Gapi Workflows.
<div align="center"><img width ="800" src="https://genainerds.com/assets/img/MicroServices2.png"/></div>
You can run a Micro Service wherever you like and connect it to a Gapi Server via the streaming, hybrid binary+json message protocol.
There are some out-of-the-box “Community Micro Services" that we integrate, test and pack into Docker images. When you run them, they auto integrate, load NVIDIA layers correctly and offer logging to the host system.
<div align="center"><img width ="800" src="https://genainerds.com/assets/img/MicroServices3.png"/></div>
Even better, create your own! Just implement an on_message Python handler to process requests and respond. The rest is handled for you.
<div align="center"><img width ="800" src="https://genainerds.com/assets/img/MicroServices4.png"/></div>
Think of a Micro Service as a simple wrapper to some code or model you have. It works the same as any other Node inside a Workflow. When it's your Micro Service Node's turn your on_message function will be called. Your script gets the rolling Transaction data for context and you then publish your data directly back into the flow.
<div align="center"><img width ="800" src="https://genainerds.com/assets/img/MicroServices1.png"/></div>
## Running the Community Micro Services
**Requirements for Community Micro Services**
1. Any NVIDIA Jetson Orin
2. Sufficient Storage Space:
- Literally 4KB for your own Micro Service
- Anywhere from ~4GB to ~10GB for each Community Micro Service
**Steps:**
1. Login and go to the Micro Services tab
2. Follow the instructions in the blue box on that page to download your custom configuration
3. Then follow the instructions below that for installing the Micro Service you want
## Congrats! You Can Go Through the Workflow Tips Now
<div align="center"><img width ="1000" src="https://genainerds.com/assets/img/WorkflowsHome.png"/></div>
## Tech Support & Product Discussion
Thank you for choosing our products! We are here to provide you with different support to ensure that your experience with our products is as smooth as possible. We offer several communication channels to cater to different preferences and needs.
<div class="button_tech_support_container">
<a href="https://forum.seeedstudio.com/" class="button_forum"></a>
<a href="https://www.seeedstudio.com/contacts" class="button_email"></a>
</div>
<div class="button_tech_support_container">
<a href="https://discord.gg/eWkprNDMU7" class="button_discord"></a>
<a href="https://github.com/Seeed-Studio/wiki-documents/discussions/69" class="button_discussion"></a>
</div>
1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -3480,6 +3480,7 @@ const sidebars = {
// id: 'Edge/NVIDIA_Jetson/Application/Managed_Services',
// },
items: [
'Edge/NVIDIA_Jetson/Application/Developer_Tools/Gapi-Jetson-Getting-Started',
'Edge/NVIDIA_Jetson/Application/Developer_Tools/alwaysAI-Jetson-Getting-Started',
'Edge/NVIDIA_Jetson/Application/Developer_Tools/Cochl.Sense-Jetson-Getting-Started',
'Edge/NVIDIA_Jetson/Application/Developer_Tools/CVEDIA-Jetson-Getting-Started',
Expand Down

0 comments on commit 9293054

Please sign in to comment.