Skip to content

Commit 7abf13d

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 68fff49 + c971fbc commit 7abf13d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+5112
-1771
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 🐛 Bug Report
22
description: File an issue about a bug.
33
title: "[BUG] "
4-
labels: [bug]
4+
labels: [bug, Needs Triage]
55
body:
66
- type: markdown
77
attributes:
@@ -26,7 +26,7 @@ body:
2626
attributes:
2727
label: What version of camel are you using?
2828
description: Run command `python3 -c 'print(__import__("camel").__version__)'` in your shell and paste the output here.
29-
placeholder: E.g., 0.2.77
29+
placeholder: E.g., 0.2.78
3030
validations:
3131
required: true
3232

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: ✨ Feature Request
22
description: Suggest an idea for this project.
33
title: "[Feature Request] "
4-
labels: [enhancement]
4+
labels: [Needs Triage]
55
body:
66
- type: checkboxes
77
id: steps

.github/ISSUE_TEMPLATE/questions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 🤔 Questions / Help / Support
22
description: Do you need support?
33
title: "[Question] "
4-
labels: [question]
4+
labels: [question, Needs Triage]
55
body:
66
- type: checkboxes
77
id: steps
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: PR Label Automation
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
7+
permissions:
8+
pull-requests: write
9+
10+
jobs:
11+
add-labels:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Add Review Required label
15+
uses: actions/github-script@v7
16+
with:
17+
github-token: ${{ secrets.GITHUB_TOKEN }}
18+
script: |
19+
github.rest.issues.addLabels({
20+
owner: context.repo.owner,
21+
repo: context.repo.repo,
22+
issue_number: context.issue.number,
23+
labels: ['Review Required']
24+
})

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,7 @@ Real-world usecases demonstrating how CAMEL’s multi-agent framework enables re
517517
|:---|:---|
518518
| **[ChatDev](https://github.com/OpenBMB/ChatDev/tree/main/camel)** | Communicative Agents for software Development |
519519
| **[Paper2Poster](https://github.com/Paper2Poster/Paper2Poster)** | Multimodal poster automation from scientific papers |
520+
| **[Paper2Video](https://github.com/showlab/Paper2Video)** | Automatic video generation from scientific papers |
520521

521522
### Product Projects
522523

camel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from camel.logger import disable_logging, enable_logging, set_log_level
1616

17-
__version__ = '0.2.77'
17+
__version__ = '0.2.78'
1818

1919
__all__ = [
2020
'__version__',

0 commit comments

Comments
 (0)