Error you exceeded your current quota
pcantalupo opened this issue · 2 comments
pcantalupo commented
Hello,
I installed chroma and started it with docker-compose.
$ docker container ls --all
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
b8f0336a053d chroma-server "uvicorn chromadb.ap…" 29 minutes ago Up 29 minutes 0.0.0.0:8000->8000/tcp chroma-server-1
f586204dae2a clickhouse/clickhouse-server:22.9-alpine "/entrypoint.sh" 29 minutes ago Up 29 minutes 0.0.0.0:8123->8123/tcp, 0.0.0.0:9000->9000/tcp, 9009/tcp chroma-clickhouse-1
Then ran npm run agent
. After 1 minute, I got this error:
file:///Users/me/local/opt/ai-brainstore/node_modules/langchain/dist/util/axios-fetch-adapter.js:316
const error = new Error(message);
^
Error: Request failed with status code 429
at createError (file:///Users/me/local/opt/ai-brainstore/node_modules/langchain/dist/util/axios-fetch-adapter.js:316:19)
at settle (file:///Users/me/local/opt/ai-brainstore/node_modules/langchain/dist/util/axios-fetch-adapter.js:25:16)
at file:///Users/me/local/opt/ai-brainstore/node_modules/langchain/dist/util/axios-fetch-adapter.js:175:19
at new Promise (<anonymous>)
at fetchAdapter (file:///Users/me/local/opt/ai-brainstore/node_modules/langchain/dist/util/axios-fetch-adapter.js:167:12)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async RetryOperation._fn (/Users/me/local/opt/ai-brainstore/node_modules/p-retry/index.js:50:12) {
that ended with :
data: {
error: {
message: 'You exceeded your current quota, please check your plan and billing details.',
type: 'insufficient_quota',
param: null,
code: null
}
}
What am I doing wrong? I'm currently using ChatGPT 3.5 on the free trial. Do I need to set up a paid account?
Thank you
mckaywrigley commented
set up paid account
pcantalupo commented