1
0
mirror of https://github.com/hustcer/deepseek-review.git synced 2026-05-13 05:16:05 +08:00
Files
deepseek-review/tests/resources/.env.test
Justin Ma 3ff7a32e6d chore: Add more tests for common helpers (#128)
* Update tests

* Update tests

* Update tests

* Update tests

* Update tests

* Update tests
2025-02-15 14:12:48 +08:00

14 lines
591 B
Plaintext

# Description: Environment variables for Local Code Review Only
# Usage: Copy this file to .env and replace the values with your own
CHAT_MODEL="deepseek-chat" # Official DeepSeek model
# BASE_URL: Deepseek API base URL
BASE_URL='https://api.deepseek.ai' # DeepSeek Official
# The maximum temperature for the model to generate the response. 1.0 by default.
TEMPERATURE=1.0
# MAX_LENGTH: The maximum length of the content for review, 0 means no limit.
MAX_LENGTH=0
# USER_PROMPT: User prompt message
USER_PROMPT='Please review the following code changes'