Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added warning that game window must be visible when vision is enabled #400

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/config/definitions/vision_definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
class VisionDefinitions:
@staticmethod
def get_vision_enabled_config_value() -> ConfigValue:
return ConfigValueBool("vision_enabled", "Vision", "If enabled, in-game screenshots are passed to the chosen LLM with each player response. This feature is only compatible with LLMs that accept image as well as text inputs.", False)
description = """If enabled, in-game screenshots are passed to the chosen LLM with each player response. This feature is only compatible with LLMs that accept image as well as text input.
**Please ensure your game window is visible on screen when running and is not blocked by other windows!**"""
return ConfigValueBool("vision_enabled", "Vision", description, False)

@staticmethod
def get_low_resolution_mode_config_value() -> ConfigValue:
Expand Down