We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
#!/bin/bash
git clone https://github.com/openai/chatgpt-retrieval-plugin.git cd chatgpt-retrieval-plugin
git checkout -b fix-issue-446
if ! python3.10 --version &> /dev/null then echo "Python 3.10 not found. Please install Python 3.10 before proceeding." exit fi
pip install poetry poetry env use python3.10 poetry shell poetry install
export DATASTORE="your_datastore" export BEARER_TOKEN="your_bearer_token" export OPENAI_API_KEY="your_openai_api_key" export EMBEDDING_DIMENSION=256 export EMBEDDING_MODEL="text-embedding-3-large"
export OPENAI_API_BASE="https://.openai.azure.com/" export OPENAI_API_TYPE="azure" export OPENAI_EMBEDDINGMODEL_DEPLOYMENTID="your_deployment_id" export OPENAI_METADATA_EXTRACTIONMODEL_DEPLOYMENTID="your_metadata_deployment_id" export OPENAI_COMPLETIONMODEL_DEPLOYMENTID="your_completion_deployment_id" export OPENAI_EMBEDDING_BATCH_SIZE=1
echo "Environment setup complete. Ready to fix issue #446."
poetry run pytest
git add . git commit -m "Fix issue #446: [brief description of the fix]" git push origin fix-issue-446
gh pr create --title "Fix issue #446" --body "This PR addresses issue #446 by [description of what was fixed]."
echo "Pull request created. Please review and merge."
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: