mirror of
https://github.com/hustcer/deepseek-review.git
synced 2026-05-13 05:16:05 +08:00
* Update tests * Update tests * Update tests * Update tests * Update tests * Update tests
14 lines
591 B
Plaintext
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'
|