{% extends "base.html" %} {% block title %}rssume Settings{% endblock %} {% block content %}

Settings

Configuration overview

Server

Host{{ config.server.host }}
Port{{ config.server.port }}

Language

Target{{ config.language.target }}

LLM — Translation

Provider{{ config.llm.translation.provider }}
Model{{ config.llm.translation.model }}
Base URL{{ config.llm.translation.base_url }}

LLM — Summary

Provider{{ config.llm.summary.provider }}
Model{{ config.llm.summary.model }}
Base URL{{ config.llm.summary.base_url }}

Configured Feeds

{% for feed in config.feeds %} {% endfor %}
NameURLStatusIntervalRSS
{{ feed.name }} {{ feed.url }} {% if feed.enabled %}Active{% else %}Disabled{% endif %} {{ feed.interval_secs }}s /feeds/{{ feed.name }}

Config File Location

Edit ~/.config/rssume/config.toml to change these settings, add feeds, or configure LLM providers.

Data stored at: ~/.local/share/rssume/data/

{% endblock %}