jiuwenswarm

(★ 3,218)

JiuwenSwarm is an intelligent AI Agent built on openJiuwen. It extends the powerful capabilities of large language models directly to your fingertips through various communication apps you use daily.

파일 탐색기

파일 수가 많아 일부만 표시됩니다. 전체 파일은 위 다운로드 버튼으로 확인해 주세요.

  • .gitattributes
  • .gitignore
  • LICENSE
  • Makefile
  • MANIFEST.in
  • OPEN_SOURCE_SOFTWARE_NOTICE.md
  • README.md
  • README_CN.md
  • TESTING.md

# 설치 가이드

python
사전 준비물

설치 및 실행 절차

git clone https://github.com/openJiuwen-ai/jiuwenswarm.git

저장소를 클론합니다.

uv venv

가상 환경을 생성합니다.

uv pip install -e .

프로젝트와 의존성을 설치합니다.

jiuwenswarm-init

초기 설정을 진행합니다.

jiuwenswarm-start

JiuwenSwarm 서비스를 시작합니다.

핵심 명령어

uv pip install -e .

패키지를 개발자 모드로 설치합니다.

jiuwenswarm-init

초기화 스크립트를 실행하여 기본 설정 및 환경을 구축합니다.

jiuwenswarm-start

JiuwenSwarm 서버를 실행합니다.

jiuwenswarm-tui

터미널 사용자 인터페이스(TUI)를 실행합니다.

설정 파일은 ~/.jiuwenswarm/config/config.yaml에서 수정할 수 있습니다.

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

파일 목록이 많아 일부만 표시됩니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

uv pip

설명 보기 ▼

Provides pip-like commands for installing, uninstalling, and managing packages.

uv pip install {{package}}

Install a package:

uv pip install {{[-r|--requirements]}} {{requirements.txt}}

Install packages from a requirements file:

uv pip install {{package==1.2.3}}

Install a package with a specific version:

🔍

uv venv

설명 보기 ▼

Create an isolated Python environment for installing packages.

uv venv

Create a virtual environment in the default location (`.venv`):

uv venv {{path/to/venv}}

Create a virtual environment at a specific path:

uv venv {{[-p|--python]}} {{3.12}}

Create using a specific Python version:

// repository documentation