Skip to content

Commit b8cb2f3

Browse files
authored
chore: add contributor badge (#3281)
1 parent ebd68a7 commit b8cb2f3

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

README.ja.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,14 @@ CAMELのマルチエージェントフレームワークがインフラ自動化
548548
>
549549
> また、CAMELをソーシャルメディア、イベント、カンファレンスで共有することで、CAMELの成長を支援していただくことも歓迎します。あなたのサポートが大きな違いを生みます!
550550
551+
## コントリビューター
552+
553+
<a href="https://github.com/camel-ai/camel/graphs/contributors">
554+
<img src="https://contrib.rocks/image?repo=camel-ai/camel" />
555+
</a>
556+
557+
[contrib.rocks](https://contrib.rocks)で作成。
558+
551559
<br>
552560

553561
## コミュニティ & コンタクト

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,14 @@ We are actively involved in community events including:
549549
>
550550
> We also welcome you to help CAMEL grow by sharing it on social media, at events, or during conferences. Your support makes a big difference!
551551
552+
## Contributors
553+
554+
<a href="https://github.com/camel-ai/camel/graphs/contributors">
555+
<img src="https://contrib.rocks/image?repo=camel-ai/camel" />
556+
</a>
557+
558+
Made with [contrib.rocks](https://contrib.rocks).
559+
552560
<br>
553561

554562
## Community & Contact

README.zh.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,14 @@ pip install camel-ai
472472
>
473473
> 我们也欢迎您通过社交媒体、活动或会议分享 CAMEL,帮助其成长。您的支持将产生巨大的影响!
474474
475+
## 贡献者
476+
477+
<a href="https://github.com/camel-ai/camel/graphs/contributors">
478+
<img src="https://contrib.rocks/image?repo=camel-ai/camel" />
479+
</a>
480+
481+
使用 [contrib.rocks](https://contrib.rocks) 制作。
482+
475483
<br>
476484

477485
## 社区与联系方式

camel/toolkits/file_toolkit.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -906,15 +906,16 @@ def _write_csv_file(
906906
self,
907907
file_path: Path,
908908
content: Union[str, List[List]],
909-
encoding: str = "utf-8",
909+
encoding: str = "utf-8-sig",
910910
) -> None:
911911
r"""Write CSV content to a file.
912912
913913
Args:
914914
file_path (Path): The target file path.
915915
content (Union[str, List[List]]): The CSV content as a string or
916916
list of lists.
917-
encoding (str): Character encoding to use. (default: :obj:`utf-8`)
917+
encoding (str): Character encoding to use.
918+
(default: :obj:`utf-8-sig`)
918919
"""
919920
import csv
920921

0 commit comments

Comments
 (0)