Skip to content

Commit 22be938

Browse files
committed
Merge remote-tracking branch 'origin/dev' into feat/proactive_mode
2 parents 2fa153a + 653ecdb commit 22be938

File tree

92 files changed

+1060
-115
lines changed

Some content is hidden

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

92 files changed

+1060
-115
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: Jan Discussions
4-
url: https://github.com/orgs/menloresearch/discussions/categories/q-a
4+
url: https://github.com/orgs/janhq/discussions/categories/q-a
55
about: Get help, discuss features & roadmap, and share your projects

.github/workflows/jan-server-web-ci-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build-and-preview:
1313
runs-on: [ubuntu-24-04-docker]
1414
env:
15-
MENLO_PLATFORM_BASE_URL: "https://api-dev.menlo.ai/v1"
15+
MENLO_PLATFORM_BASE_URL: "https://api-dev.jan.ai/v1"
1616
permissions:
1717
pull-requests: write
1818
contents: write

.github/workflows/jan-server-web-ci-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
deployments: write
1414
pull-requests: write
1515
env:
16-
MENLO_PLATFORM_BASE_URL: "https://api.menlo.ai/v1"
16+
MENLO_PLATFORM_BASE_URL: "https://api.jan.ai/v1"
1717
GA_MEASUREMENT_ID: "G-YK53MX8M8M"
1818
CLOUDFLARE_PROJECT_NAME: "jan-server-web"
1919
steps:

.github/workflows/jan-server-web-ci-stag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build-and-preview:
1313
runs-on: [ubuntu-24-04-docker]
1414
env:
15-
MENLO_PLATFORM_BASE_URL: "https://api-stag.menlo.ai/v1"
15+
MENLO_PLATFORM_BASE_URL: "https://api-stag.jan.ai/v1"
1616
permissions:
1717
pull-requests: write
1818
contents: write

.github/workflows/jan-tauri-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ jobs:
8282
VERSION=${{ needs.get-update-version.outputs.new_version }}
8383
PUB_DATE=$(date -u +"%Y-%m-%dT%H:%M:%S.%3NZ")
8484
LINUX_SIGNATURE="${{ needs.build-linux-x64.outputs.APPIMAGE_SIG }}"
85-
LINUX_URL="https://github.com/menloresearch/jan/releases/download/v${{ needs.get-update-version.outputs.new_version }}/${{ needs.build-linux-x64.outputs.APPIMAGE_FILE_NAME }}"
85+
LINUX_URL="https://github.com/janhq/jan/releases/download/v${{ needs.get-update-version.outputs.new_version }}/${{ needs.build-linux-x64.outputs.APPIMAGE_FILE_NAME }}"
8686
WINDOWS_SIGNATURE="${{ needs.build-windows-x64.outputs.WIN_SIG }}"
87-
WINDOWS_URL="https://github.com/menloresearch/jan/releases/download/v${{ needs.get-update-version.outputs.new_version }}/${{ needs.build-windows-x64.outputs.FILE_NAME }}"
87+
WINDOWS_URL="https://github.com/janhq/jan/releases/download/v${{ needs.get-update-version.outputs.new_version }}/${{ needs.build-windows-x64.outputs.FILE_NAME }}"
8888
DARWIN_SIGNATURE="${{ needs.build-macos.outputs.MAC_UNIVERSAL_SIG }}"
89-
DARWIN_URL="https://github.com/menloresearch/jan/releases/download/v${{ needs.get-update-version.outputs.new_version }}/${{ needs.build-macos.outputs.TAR_NAME }}"
89+
DARWIN_URL="https://github.com/janhq/jan/releases/download/v${{ needs.get-update-version.outputs.new_version }}/${{ needs.build-macos.outputs.TAR_NAME }}"
9090
9191
jq --arg version "$VERSION" \
9292
--arg pub_date "$PUB_DATE" \

.github/workflows/template-get-update-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
local max_retries=3
3030
local tag
3131
while [ $retries -lt $max_retries ]; do
32-
tag=$(curl -s https://api.github.com/repos/menloresearch/jan/releases/latest | jq -r .tag_name)
32+
tag=$(curl -s https://api.github.com/repos/janhq/jan/releases/latest | jq -r .tag_name)
3333
if [ -n "$tag" ] && [ "$tag" != "null" ]; then
3434
echo $tag
3535
return

.github/workflows/template-noti-discord-and-update-url-readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ jobs:
5050
- macOS Universal: https://delta.jan.ai/nightly/Jan-nightly_{{ VERSION }}_universal.dmg
5151
- Linux Deb: https://delta.jan.ai/nightly/Jan-nightly_{{ VERSION }}_amd64.deb
5252
- Linux AppImage: https://delta.jan.ai/nightly/Jan-nightly_{{ VERSION }}_amd64.AppImage
53-
- Github action run: https://github.com/menloresearch/jan/actions/runs/{{ GITHUB_RUN_ID }}
53+
- Github action run: https://github.com/janhq/jan/actions/runs/{{ GITHUB_RUN_ID }}
5454
env:
5555
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jan/
143143

144144
**Option 1: The Easy Way (Make)**
145145
```bash
146-
git clone https://github.com/menloresearch/jan
146+
git clone https://github.com/janhq/jan
147147
cd jan
148148
make dev
149149
```
@@ -152,8 +152,8 @@ make dev
152152

153153
### Reporting Bugs
154154

155-
- **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/menloresearch/jan/issues)
156-
- If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/menloresearch/jan/issues/new)
155+
- **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/janhq/jan/issues)
156+
- If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/janhq/jan/issues/new)
157157
- Include your system specs and error logs - it helps a ton
158158

159159
### Suggesting Enhancements

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44

55
<p align="center">
66
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
7-
<img alt="GitHub commit activity" src="https://img.shields.io/github/commit-activity/m/menloresearch/jan"/>
8-
<img alt="Github Last Commit" src="https://img.shields.io/github/last-commit/menloresearch/jan"/>
9-
<img alt="Github Contributors" src="https://img.shields.io/github/contributors/menloresearch/jan"/>
10-
<img alt="GitHub closed issues" src="https://img.shields.io/github/issues-closed/menloresearch/jan"/>
7+
<img alt="GitHub commit activity" src="https://img.shields.io/github/commit-activity/m/janhq/jan"/>
8+
<img alt="Github Last Commit" src="https://img.shields.io/github/last-commit/janhq/jan"/>
9+
<img alt="Github Contributors" src="https://img.shields.io/github/contributors/janhq/jan"/>
10+
<img alt="GitHub closed issues" src="https://img.shields.io/github/issues-closed/janhq/jan"/>
1111
<img alt="Discord" src="https://img.shields.io/discord/1107178041848909847?label=discord"/>
1212
</p>
1313

1414
<p align="center">
1515
<a href="https://www.jan.ai/docs/desktop">Getting Started</a>
1616
- <a href="https://discord.gg/Exe46xPMbK">Community</a>
1717
- <a href="https://jan.ai/changelog">Changelog</a>
18-
- <a href="https://github.com/menloresearch/jan/issues">Bug reports</a>
18+
- <a href="https://github.com/janhq/jan/issues">Bug reports</a>
1919
</p>
2020

2121
Jan is bringing the best of open-source AI in an easy-to-use product. Download and run LLMs with **full control** and **privacy**.
@@ -48,7 +48,7 @@ The easiest way to get started is by downloading one of the following versions f
4848
</table>
4949

5050

51-
Download from [jan.ai](https://jan.ai/) or [GitHub Releases](https://github.com/menloresearch/jan/releases).
51+
Download from [jan.ai](https://jan.ai/) or [GitHub Releases](https://github.com/janhq/jan/releases).
5252

5353
## Features
5454

@@ -73,7 +73,7 @@ For those who enjoy the scenic route:
7373
### Run with Make
7474

7575
```bash
76-
git clone https://github.com/menloresearch/jan
76+
git clone https://github.com/janhq/jan
7777
cd jan
7878
make dev
7979
```
@@ -128,7 +128,7 @@ Contributions welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) for the full spiel
128128

129129
## Contact
130130

131-
- **Bugs**: [GitHub Issues](https://github.com/menloresearch/jan/issues)
131+
- **Bugs**: [GitHub Issues](https://github.com/janhq/jan/issues)
132132
- **Business**: [email protected]
133133
- **Jobs**: [email protected]
134134
- **General Discussion**: [Discord](https://discord.gg/FTk2MvZwJH)

autoqa/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Core dependencies
22
cua-computer[all]~=0.3.5
33
cua-agent[all]~=0.3.0
4-
cua-agent @ git+https://github.com/menloresearch/[email protected]#subdirectory=libs/python/agent
4+
cua-agent @ git+https://github.com/janhq/[email protected]#subdirectory=libs/python/agent
55

66
# ReportPortal integration
77
reportportal-client~=5.6.5

0 commit comments

Comments
 (0)