HaluMem

(★ 155)

HaluMem is the first operation level hallucination evaluation benchmark tailored to agent memory systems.

파일 탐색기

  • .env copy
  • .gitignore
  • config.json
  • poetry.lock
  • pyproject.toml
  • README.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

eval

설명 보기 ▼

현재 쉘에서 인수를 단일 명령으로 실행하고 그 결과를 반환.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-eval>.

eval "{{echo foo}}"

"foo" 인수를 사용하여 `echo`를 호출:

eval "{{foo=bar}}"

현재 쉘에서 변수를 설정:

🔍

poetry install

설명 보기 ▼

Install all dependencies for a Python project as defined in the pyproject.toml file.

poetry install

Install dependencies:

poetry install --no-root

Skip installing the project itself as a dependency:

poetry install --without dev

Install only production dependencies:

🔍

python

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

python {{path/to/file.py}}

특정 Python 파일 실행:

python -i {{path/to/file.py}}

특정 Python 파일 실행 후 REPL 시작:

🔍

uuid

설명 보기 ▼

범용 고유 식별자(UUID) 생성 및 디코드.
관련 항목: `uuidgen`.
더 많은 정보: <https://manned.org/uuid>.

uuid

UUIDv1 생성 (시간 및 시스템의 하드웨어 주소 기반, 사용 가능한 경우):

uuid -v 4

UUIDv4 생성 (무작위 데이터 기반):

uuid -v 4 -n {{number_of_uuids}}

여러 개의 UUIDv4를 한 번에 생성:

// repository documentation