Files
OpenPipe-llm/prisma/migrations/20230706193243_add_tokens_to_model_output/migration.sql
arcticfly 1ae5612d55 Add promptTokens and completionTokens to model output (#11)
* Default to streaming in config

* Add tokens to database

* Add NEXT_PUBLIC_SOCKET_URL to .env.example

* Disable streaming for functions

* Add newline to types
2023-07-06 13:12:59 -07:00

4 lines
122 B
SQL

-- AlterTable
ALTER TABLE "ModelOutput" ADD COLUMN "completionTokens" INTEGER,
ADD COLUMN "promptTokens" INTEGER;