Skip to content

Commit c46ac6a

Browse files
authored
Merge pull request #11 from deepseek-php/change-default-model-to-r2
change default model to R2
2 parents b245dc8 + 7e2a0ae commit c46ac6a

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,24 @@ Thanks to these wonderful people for contributing to this project! 💖
117117
<br />
118118
🏆 Contributer
119119
</td>
120+
<td align="center">
121+
<a href="https://github.com/moassaad">
122+
<img src="https://avatars.githubusercontent.com/u/155223476?v=4" width="50px;" alt="Mohammad Asaad"/>
123+
<br />
124+
<sub><b>Mohammad Asaad</b></sub>
125+
</a>
126+
<br />
127+
🏆 Contributer
128+
</td>
129+
<td align="center">
130+
<a href="https://github.com/OpadaAlzaiede">
131+
<img src="https://avatars.githubusercontent.com/u/48367429?v=4" width="50px;" alt="Opada Alzaiede"/>
132+
<br />
133+
<sub><b>Opada Alzaiede</b></sub>
134+
</a>
135+
<br />
136+
🏆 Contributer
137+
</td>
120138
<!-- Contributors -->
121139
</tr>
122140
</table>

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"deepseek",
66
"deepseek-php-client",
77
"deepseek-api",
8+
"DeepSeek-R1",
9+
"DeepSeek-R1-Zero",
810
"php-deepseek",
911
"deepseek-coder",
1012
"deepseek-chat",
@@ -59,7 +61,7 @@
5961
"role": "creator"
6062
}
6163
],
62-
"version": "1.0.1",
64+
"version": "1.0.2",
6365
"require": {
6466
"php": "^8.1.0",
6567
"php-http/discovery": "^1.20.0",

src/Enums/Configs/DefaultConfigs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
enum DefaultConfigs: string
66
{
77
case BASE_URL = 'https://api.deepseek.com/v3';
8-
case MODEL = 'deepseek-chat';
8+
case MODEL = 'DeepSeek-R1';
99
case TIMEOUT = '30';
1010
case STREAM = 'false';
1111
}

0 commit comments

Comments
 (0)