12 lines
512 B
Bash
12 lines
512 B
Bash
#!/bin/bash
|
|
source ~/miniconda3/etc/profile.d/conda.sh # Adjust the path as per your Conda installation
|
|
conda activate aider
|
|
export OPENAI_API_KEY=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
|
|
|
|
|
|
# aider --no-auto-commits
|
|
|
|
OPENAI_API_BASE=https://api.deepseek.com/v1
|
|
OPENAI_API_KEY=sk-99df7736351f4536bd72cd64a416318a
|
|
AIDER_MODEL=deepseek-coder #deepseek-coder, deepseek-chat
|
|
aider --openai-api-base https://api.deepseek.com/v1 --openai-api-key sk-99df7736351f4536bd72cd64a416318a --model deepseek-coder |