HaluMem

(★ 155)

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

File Explorer

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

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

eval

View Details ▼

Execute arguments as a single command in the current shell and return its result.

eval "{{echo foo}}"

Call `echo` with the "foo" argument:

eval "{{foo=bar}}"

Set a variable in the current shell:

🔍

poetry install

View Details ▼

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

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

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

Execute a specific Python file:

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

Execute a specific Python file and start a REPL:

🔍

uuid

View Details ▼

Generate and decode Universally Unique Identifiers (UUID).
See also: `uuidgen`.

uuid

Generate a UUIDv1 (based on time and system's hardware address, if present):

uuid -v 4

Generate a UUIDv4 (based on random data):

uuid -v 4 -n {{number_of_uuids}}

Generate multiple UUIDv4 identifiers at once:

// repository documentation