We still don't have any documentation and things are in flux, but you can report your OpenAI API calls to OpenPipe now.
11 lines
251 B
Bash
Executable File
11 lines
251 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
poetry run openapi-python-client generate --url http://localhost:3000/api/openapi.json
|
|
|
|
rm -rf openpipe/api_client
|
|
mv open-pipe-api-client/open_pipe_api_client openpipe/api_client
|
|
rm -rf open-pipe-api-client |