Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 1001 Bytes

README.md

File metadata and controls

56 lines (35 loc) · 1001 Bytes

LINC: A Reimplementation

Reimplementation of LINC Paper for CS5134.

Setup

Make sure you have poetry installed.

Installing Packages

Installing for usage:

poetry install

Installing for development:

poetry install --with dev
poetry run pre-commit install

Downloading Dataset

For Linux, run

bash install_dataset.sh

For Windows, run

.\install_dataset.ps1

API Keys

To use the API Models in models.py, we need some API keys setup in the local env. Adhering to the naming conventions in .env.example, create a .env file in the root folder and add in the corresponding API key.

Google API Key

Go to this site to get a Gemini API key.

GOOGLE_API_KEY="API KEY HERE"

Cohere API Key

Go to this site to get a Cohere API key.

COHERE_API_KEY="API KEY HERE"