Compare commits

...

4 Commits

Author SHA1 Message Date
dependabot[bot] 9b2c8b5e37 chore(deps): bump the actions group across 1 directory with 3 updates
Pre-commit checks / pre-commit-check (push) Failing after 0s
Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/stale](https://github.com/actions/stale).


Updates `actions/checkout` from 4 to 5
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

Updates `actions/setup-python` from 5 to 6
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v5...v6)

Updates `actions/stale` from 9 to 10
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/stale/compare/v9...v10)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/setup-python
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/stale
  dependency-version: '10'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-05 07:16:16 +00:00
Jiayi Zhang 52a13f2a57 Update README.md
Pre-commit checks / pre-commit-check (push) Failing after 0s
2026-01-04 11:11:56 +08:00
Jiayi Zhang 211a245c95 Merge pull request #1266 from cnJasonZ/feat/jiekouAI
Add Jiekou.AI as new LLM provider
2025-11-14 18:50:00 +08:00
cnJasonZ 872d5bb59e feat: add JiekouAI as new provider 2025-11-07 13:48:49 +08:00
8 changed files with 35 additions and 10 deletions
+2 -2
View File
@@ -9,9 +9,9 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.12'
cache: 'pip'
@@ -20,9 +20,9 @@ jobs:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
+2 -2
View File
@@ -30,12 +30,12 @@ jobs:
echo "target_branch=$TARGET_BRANCH" >> $GITHUB_OUTPUT
echo "Retrieved PR head SHA from API: $SHA, target branch: $TARGET_BRANCH"
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ steps.get-pr-sha.outputs.pr_sha }}
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install dependencies
+2 -2
View File
@@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Python 3.12
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install pre-commit and tools
+1 -1
View File
@@ -11,7 +11,7 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
- uses: actions/stale@v10
with:
days-before-issue-stale: 30
days-before-issue-close: 14
+1 -1
View File
@@ -185,7 +185,7 @@ OpenManus is built by contributors from MetaGPT. Huge thanks to this agent commu
## Cite
```bibtex
@misc{openmanus2025,
author = {Xinbin Liang and Jinyu Xiang and Zhaoyang Yu and Jiayi Zhang and Sirui Hong and Sheng Fan and Xiao Tang},
author = {Xinbin Liang and Jinyu Xiang and Zhaoyang Yu and Jiayi Zhang and Sirui Hong and Sheng Fan and Xiao Tang and Bang Liu and Yuyu Luo and Chenglin Wu},
title = {OpenManus: An open-source framework for building general AI agents},
year = {2025},
publisher = {Zenodo},
+17
View File
@@ -0,0 +1,17 @@
# Global LLM configuration
[llm] #Jiekou.AI:
api_type = 'jiekou'
model = "claude-sonnet-4-5-20250929" # The LLM model to use
base_url = "https://api.jiekou.ai/openai" # API endpoint URL
api_key = "your Jiekou.AI api key" # Your API key
max_tokens = 64000 # Maximum number of tokens in the response
temperature = 0.0 # Controls randomness
[llm.vision] #Jiekou.AI VISION:
api_type = 'jiekou'
model = "claude-sonnet-4-5-20250929" # The vision model to use
base_url = "https://api.jiekou.ai/openai" # API endpoint URL for vision model
api_key = "your Jiekou.AI api key" # Your API key for vision model
max_tokens = 64000 # Maximum number of tokens in the response
temperature = 0.0 # Controls randomness for vision model
+8
View File
@@ -31,6 +31,14 @@ temperature = 0.0 # Controls randomness
# max_tokens = 4096
# temperature = 0.0
# [llm] #Jiekou.AI:
# api_type = 'jiekou'
# model = "claude-sonnet-4-5-20250929" # The LLM model to use
# base_url = "https://api.jiekou.ai/openai" # API endpoint URL
# api_key = "your Jiekou.AI api key" # Your API key
# max_tokens = 64000 # Maximum number of tokens in the response
# temperature = 0.0 # Controls randomness
# Optional configuration for specific LLM models
[llm.vision]
model = "claude-3-7-sonnet-20250219" # The vision model to use