SIGN IN SIGN UP
openai / openai-python UNCLAIMED

The official Python library for the OpenAI API

30364 0 0 Python
2024-05-01 00:00:17 -04:00
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."
if [ "$1" = "--fix" ]; then
echo "==> Running lints with --fix"
rye run fix:ruff
else
echo "==> Running lints"
rye run lint
fi
2024-05-01 00:00:17 -04:00
echo "==> Making sure it imports"
rye run python -c 'import openai'