Giter VIP home page Giter VIP logo

gemchain's Introduction

GemChain

This is a demonstration of LangChain with Google's Gemini Pro model. Not intended for production use.

Quickstart for local development

After cloning the repo, grab a Gemini API key from here and export it as an environment variable

export GOOGLE_API_KEY=<YOUR-API-KEY>

Create a virtual environment and install the requirements

python -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Run the application server

python -m app.main

Open the playground in your browser at http://localhost:5000/

Quick deploy to Google Cloud

If you don't have a Google Cloud account, you can get one for free with $300 in credits. You will also need a local Docker and gcloud CLI.

Set your default Google Cloud project

export GOOGLE_PROJECT_ID=<YOUR-PROJECT-ID>
gcloud config set project $GOOGLE_PROJECT_ID

Build and push the image to Google Cloud

export GEMCHAIN_IMAGE="gcr.io/<YOUR-PROJECT-ID>/gemchain:latest"
gcloud docker -- push $GEMCHAIN_IMAGE

Deploy to Google Cloud Run and allow unauthenticated access

gcloud run deploy gemchain \
    --allow-unauthenticated \
    --image $GEMCHAIN_IMAGE \
    --platform managed \
    --region us-central1 \
    --set-env-vars GOOGLE_API_KEY=$GOOGLE_API_KEY

License

MIT

gemchain's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.