Added emotion normalization and URL config.

This commit is contained in:
2026-03-18 06:19:01 -04:00
parent 68038e2a77
commit 13983ae636
6 changed files with 162 additions and 59 deletions

View File

@@ -23,7 +23,7 @@ define gui.show_name = True
## The version of the game.
define config.version = "0.1.2"
define config.version = "0.2"
## Text that is placed on the game's about screen. Place the text between the
@@ -209,12 +209,11 @@ init python:
# define build.itch_project = "renpytom/test-project"
define config.minimum_presplash_time = 2.0
## LM Sudio configuration ######################################################
##
## This section defines the parameters for the LM Studio connection.
default persistent.base_url = 'http://localhost:1234'
default persistent.api_key = ''
default persistent.model = 'gemma-3-4b-it'
init python:
def api_key_func(value):
persistent.api_key = value
def model_func(value):
persistent.model = value