rpeterson / OpenPipe

Turn expensive prompts into cheap fine-tuned models

Home Page:https://openpipe.ai

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

OpenPipe

Turn expensive prompts into cheap fine-tuned models.

License Apache-2.0 PRs Welcome GitHub commit activity GitHub closed issues Y Combinator S23

Hosted App - Running Locally - Experiments


Use powerful but expensive LLMs to fine-tune smaller and cheaper models suited to your exact needs. Evaluate model and prompt combinations in the playground. Query your past requests and export optimized training data. Try it out at https://app.openpipe.ai or run it locally.

Features

  • Experiment

    • Compare models and prompts against one another.
    • Bulk-test wide-reaching scenarios using code templating.
    • Autogenerate scenarios for fresh test perspectives.
  • Fine-Tune (Beta)

    • Easy integration with OpenPipe's SDK in both Python and JS.
    • Swiftly query logs using intuitive built-in filters.
    • Prune large chunks of duplicate text like system prompts.
    • Fine-tune GPT 3.5 and Llama 2 models, host on-platform or download the weights.

fine-tune demo

Sample Experiments

These are sample experiments users have created that show how OpenPipe works. Feel free to fork them and start experimenting yourself.

Supported Models

OpenAI

Llama2

Llama2 Fine-Tunes

Anthropic

Running Locally

  1. Install Postgresql.
  2. Install NodeJS 20 (earlier versions will very likely work but aren't tested).
  3. Install pnpm: npm i -g pnpm
  4. Clone this repository: git clone https://github.com/openpipe/openpipe
  5. Install the dependencies: cd openpipe && pnpm install
  6. Create a .env file (cp .env.example .env) and enter your OPENAI_API_KEY.
  7. Update DATABASE_URL if necessary to point to your Postgres instance and run pnpm prisma migrate dev to create the database.
  8. Create a GitHub OAuth App, set the callback URL to <your local instance>/api/auth/callback/github, e.g. http://localhost:3000/api/auth/callback/github.
  9. Update the GITHUB_CLIENT_ID and GITHUB_CLIENT_SECRET values from the Github OAuth app (Note: a PR to make auth optional when running locally would be a great contribution!).
  10. Start the app: pnpm dev.
  11. Navigate to http://localhost:3000

Testing Locally

  1. Copy your .env file to .env.test.
  2. Update the DATABASE_URL to have a different database name than your development one
  3. Run DATABASE_URL=[your new datatase url] pnpm prisma migrate dev --skip-seed --skip-generate
  4. Run pnpm test

About

Turn expensive prompts into cheap fine-tuned models

https://openpipe.ai

License:Apache License 2.0


Languages

Language:TypeScript 85.9%Language:Python 11.6%Language:JavaScript 1.2%Language:Shell 0.7%Language:PLpgSQL 0.5%Language:Dockerfile 0.1%