rename querykey -> openpipe

This commit is contained in:
Kyle Corbitt
2023-07-07 12:27:21 -07:00
parent 46344d8fc4
commit 918f209227
6 changed files with 16 additions and 16 deletions

View File

@@ -11,7 +11,7 @@
# Prisma
# https://www.prisma.io/docs/reference/database-reference/connection-urls#env
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/querykey?schema=public"
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/openpipe?schema=public"
# OpenAI API key. Instructions on generating a key can be found here:
# https://help.openai.com/en/articles/4936850-where-do-i-find-my-secret-api-key

View File

@@ -1,10 +1,10 @@
# 🔑 QueryKey
# 🔑 OpenPipe
QueryKey is a flexible playground for comparing and optimizing LLM prompts. It lets you quickly generate, test and compare candidate prompts with realistic sample data.
OpenPipe is a flexible playground for comparing and optimizing LLM prompts. It lets you quickly generate, test and compare candidate prompts with realistic sample data.
<img src="https://github.com/corbt/querykey/assets/176426/fc7624c6-5b65-4d4d-82b7-4a816f3e5678" alt="demo" height="400px">
<img src="https://github.com/corbt/openpipe/assets/176426/fc7624c6-5b65-4d4d-82b7-4a816f3e5678" alt="demo" height="400px">
Currently there's a public playground available at [https://querykey.dev/](https://querykey.dev/), but the recommended approach is to [run locally](#running-locally).
Currently there's a public playground available at [https://openpipe.ai/](https://openpipe.ai/), but the recommended approach is to [run locally](#running-locally).
## High-Level Features
@@ -15,23 +15,23 @@ Set up multiple prompt configurations and compare their output side-by-side. Eac
Inspect prompt completions side-by-side.
**Test Many Inputs**
QueryKey lets you *template* a prompt. Use the templating feature to run the prompts you're testing against many potential inputs for broader coverage of your problem space than you'd get with manual testing.
OpenPipe lets you *template* a prompt. Use the templating feature to run the prompts you're testing against many potential inputs for broader coverage of your problem space than you'd get with manual testing.
**🪄 Auto-generate Test Scenarios**
QueryKey includes a tool to generate new test scenarios based on your existing prompts and scenarios. Just click "Autogenerate Scenario" to try it out!
OpenPipe includes a tool to generate new test scenarios based on your existing prompts and scenarios. Just click "Autogenerate Scenario" to try it out!
**Prompt Validation and Typeahead**
We use OpenAI's OpenAPI spec to automatically provide typeahead and validate prompts.
<img alt="typeahead" src="https://github.com/corbt/querykey/assets/176426/acc638f8-d851-4742-8d01-fe6f98890840" height="300px">
<img alt="typeahead" src="https://github.com/corbt/openpipe/assets/176426/acc638f8-d851-4742-8d01-fe6f98890840" height="300px">
**Function Call Support**
Natively supports [OpenAI function calls](https://openai.com/blog/function-calling-and-other-api-updates) on supported models.
<img height="300px" alt="function calls" src="https://github.com/corbt/querykey/assets/176426/48ad13fe-af2f-4294-bf32-62015597fd9b">
<img height="300px" alt="function calls" src="https://github.com/corbt/openpipe/assets/176426/48ad13fe-af2f-4294-bf32-62015597fd9b">
## Supported Models
QueryKey currently supports GPT-3.5 and GPT-4. Wider model support is planned.
OpenPipe currently supports GPT-3.5 and GPT-4. Wider model support is planned.
## Running Locally

View File

@@ -1,5 +1,5 @@
{
"name": "querykey",
"name": "openpipe",
"type": "module",
"version": "0.1.0",
"license": "Apache-2.0",

View File

@@ -12,7 +12,7 @@ services:
dockerContext: .
plan: standard
domains:
- querykey.dev
- openpipe.ai
envVars:
- key: NODE_ENV
value: production

View File

@@ -11,7 +11,7 @@ export default function PublicPlaygroundWarning() {
<Text>
Warning: this is a public playground. Anyone can see, edit or delete your experiments. For
private use,{" "}
<Link textDecor="underline" href="https://github.com/corbt/querykey" target="_blank">
<Link textDecor="underline" href="https://github.com/corbt/openpipe" target="_blank">
run a local copy
</Link>
.

View File

@@ -60,7 +60,7 @@ const NavSidebar = () => {
<HStack spacing={0}>
<Image src="/logo.svg" alt="" w={6} h={6} />
<Heading size="md" p={2}>
QueryKey
OpenPipe
</Heading>
</HStack>
<Separator />
@@ -98,7 +98,7 @@ const NavSidebar = () => {
<Separator />
<HStack align="center" justify="center" spacing={4} p={2}>
<Link
href="https://github.com/corbt/querykey"
href="https://github.com/corbt/openpipe"
target="_blank"
color="gray.500"
_hover={{ color: "gray.800" }}
@@ -128,7 +128,7 @@ export default function AppShell(props: { children: React.ReactNode; title?: str
templateAreas={'"warning warning"\n"sidebar main"'}
>
<Head>
<title>{props.title ? `${props.title} | QueryKey` : "QueryKey"}</title>
<title>{props.title ? `${props.title} | OpenPipe` : "OpenPipe"}</title>
</Head>
<GridItem area="warning">
<PublicPlaygroundWarning />