asciimoo

@asciimoo@lemmy.ml · Joined ⁨May⁩ ⁨2026⁩

Replying to @⁨conrad82@lemmy.world⁩

How do i use environment variables to make a indexer? I couldn’t get it to work

Repeatable config options are not supported from env vars. In this case you have to mount a config file to your container. But, if you want to track local files from docker, you have to mount those files/directories anyway. I suggest to use the standalone binary release if you’d like to track local files, it is way more convenient.

Replying to @⁨conrad82@lemmy.world⁩

can i connect it to other services like paperless, or would i need to manually import files?

Hister supports importing data from a few services, but paperless isn’t supported yet. More details: hister.org/docs/import

Is it better to run it in docker or e.g. a LXC in proxmox? If i want to index files, it seems it needs the config.yml file

Docker is perfectly fine. Every settings option from the config file can specified using environment variables. The syntax is HISTER__[SECTION]__[OPTION]=[VALUE].

After just playing with it for a day, the disk usage is 150 MB

Probably most of the disk space is occupied by the Hister binary which contains all the N-grams required to identify ~30 languages. The index should be much smaller.

I figure I should use postgres instead of sqlite.

SQLite is more than enough for personal use, but if you prefer to use postgres, just specify the standard DSN formatted connection data to the server.database config option: hister.org/docs/configuration#database-backends

how to set that up, preferably with docker

Use the HISTER__SERVER__DATABASE=“host=localhost user=hister password=hister dbname=hister port=5432” environment variable.

I am not familiar with pgvector

Hister automatically creates the database model and handles the migrations if required.

Hister logoHisterImporting Documents | Hister DocumentationLearn about Importing Documents in the Hister documentation.

Replying to @⁨Fmstrat@lemmy.world⁩

Currently it is not planned. Hister guarantees that non of your data/query/metadata leaves the service if you use it. As I see, this is a more valuable and unique feature than having an integrated metasearch. There are already great metasearch solutions and Hister provides an easy fallback to search providers, so in my opinion this direction would be more of a sacrifice than an improvement.

Replying to @⁨SuspiciousCarrot78@aussie.zone⁩

Is there a TTL / max database size per user setting?

As I wrote, you can simply automate deletion by document age. Schedule a delete event on each day with the desired retention time defined as a filter expression. Database size limit isn’t available yet.

Additionally, is the other parenthetical information materially correct? If not, which points [1 thru to 7] are wrong?

No, sorry, I don’t have time to correct a copy of a multiple screens long AI prompt.

I would like to further recommend Hister but your documentation is somewhat confusing at first blush.

Which parts are confusing?

Replying to @⁨SuspiciousCarrot78@aussie.zone⁩

The summary has numerous inaccuracies. Most importantly: it is pretty easy to delete content by topic or age. The hister delete command can accept a search query to remove only matched documents. The same is true on the web UI “actions -> remove all matching documents”. You can quickly filter by age, simply query updated:>365d. Combine it with URLs, labels, domains or phrases.

Replying to @⁨glizzyguzzler@piefed.blahaj.zone⁩

Oh damn this could replace the bookmakers.

The inspiration for Hister was a bookmarking app, but I realized that I always forget to manually trigger the bookmarking and I miss so many great resources.

Would it be possible to attach an HTML file from like single file

Currently you can import SingleFile HTMLs using the hister import file command, but no further integrations are implemented yet. Although, rendering the exact SinglePage file as a preview can be added relatively quickly. It would be also nice to accept files directly from the SingleFile extension.

Thanks for the good suggestion, I’ve added it to my TODO! =]

Replying to @⁨MoogleMaestro@lemmy.zip⁩

Federated search is the direction I’d like to go when the core is mature enough.

I’m still trying to figure out the best approach to make the federation secure (no accidental private/confidential data leak) and easy to use. Related conversations: github.com/asciimoo/hister/discussions/432 & github.com/asciimoo/hister/issues/387 . I’d appreciate help to figure out an optimal solution.

It would be good to find a way to allow Hister users to share parts of their indexes with others. This way, users can (automatically?) contribute the pages they index - building a shared search eng...GitHubResult / index sharing · asciimoo hister · Discussion #432It would be good to find a way to allow Hister users to share parts of their indexes with others. This way, users can (automatically?) contribute the pages they index - building a shared search eng...

posted in Selfhosted

Hister: a private search engine [AIP]

Hi everyone,

I am the original author of Searx. I started Hister with a similar motivation: reducing our dependence on external search engines while keeping searches and personal data under our control.

Searx is a metasearch engine that forwards queries to other search providers. Hister takes a different approach. It builds a private full text index from content you choose, then searches that index entirely on your own infrastructure.

Hister can automatically index pages through its Firefox and Chrome extensions. It can also watch local directories, import browser history and bookmarks, index individual URLs, and crawl complete documentation sites.

The feature I find most useful is offline previews. Hister stores the readable content and HTML of indexed pages locally. You can open a result in a clean and sanitized preview beside the search results without visiting the original website again.

Some other features:

  1. Full text search across web pages, PDFs, docx files, Markdown, OrgMode and text files
  2. Phrase searches, field filters, date filters, wildcards, negation, aliases, labels, facets, and result priorities
  3. Optional semantic search using an embeddings endpoint you configure
  4. Persistent website crawls
  5. Imports from browser history, Linkwarden, Karakeep, Shaarli, Wallabag, and Linkding
  6. Web, terminal, command line, HTTP API, and MCP interfaces
  7. SQLite and PostgreSQL support, plus optional multiple user hosting

Hister cannot replace a global search engine (yet) for subjects you have never encountered because it only searches what you have indexed. My workflow is to search Hister first, then use its shortcut to fall back to traditional search when I need broader web results.

The project is free software under the AGPLv3+ license. It can be installed as a standalone binary or with Docker.

Project: github.com/asciimoo/hister

Website and documentation: hister.org

Small read-only demo: demo.hister.org

I’d appreciate feedback, questions, and suggestions as well as joining our growing community.

AI disclosure: AI assisted contributions are not strictly prohibited, but all contributions should be made by humans. More details: github.com/asciimoo/hister/…/CONTRIBUTING.md#ai-p…

github.com/asciimoo/hister
Your own search engine. Contribute to asciimoo/hister development by creating an account on GitHub.GitHubGitHub - asciimoo/hister: Your own search engineYour own search engine. Contribute to asciimoo/hister development by creating an account on GitHub.