{% extends "base.html" %} {% block title %}Settings - Review Hound{% endblock %} {% block content %}

Settings

Configure API keys and sentiment analysis

API Keys

Add API keys to fetch reviews from official APIs instead of web scraping. This is more reliable and provides access to more reviews.

Google Places API

Fetch Google reviews for your businesses

{% if api_keys.get('google_places') %} {% endif %}
{% if api_keys.get('google_places') %}
{{ api_keys['google_places']['key_preview'] }}
{% else %}
{% endif %}

Get a Google Places API key

Yelp Fusion API

Fetch Yelp reviews for your businesses

{% if api_keys.get('yelp_fusion') %} {% endif %}
{% if api_keys.get('yelp_fusion') %}
{{ api_keys['yelp_fusion']['key_preview'] }}
{% else %}
{% endif %}

Get a Yelp Fusion API key

Sentiment Analysis

Configure how sentiment scores are calculated. The final score combines the star rating and text analysis based on the weights below.

{{ sentiment_config.rating_weight * 100 | int }}%

How much the star rating (1-5) influences the sentiment score

{{ sentiment_config.text_weight * 100 | int }}%

How much the review text analysis influences the sentiment score

{{ sentiment_config.threshold }}

Score must be above this value to be classified as positive/negative (0 = any non-zero score, 0.5 = strong signal needed)

{% endblock %}