Skip to content

VLM node: remove field labels and update default server URL#525

Draft
Copilot wants to merge 2 commits intomainfrom
copilot/remove-field-labels-node-vlm
Draft

VLM node: remove field labels and update default server URL#525
Copilot wants to merge 2 commits intomainfrom
copilot/remove-field-labels-node-vlm

Conversation

Copy link

Copilot AI commented Feb 21, 2026

The VLM node widgets displayed visible labels (Model, Caption, Server, Insensitivity Delay) next to each input, and the default server pointed to localhost.

Changes

  • Remove widget labels — Set label="" on all four VLM node inputs (model combo, caption text, server text, insensitivity slider) to suppress the inline label text in the node UI
  • Update default serverDEFAULT_SERVER changed from http://localhost:5000http://10.217.172.75:8000
# Before
DEFAULT_SERVER = 'http://localhost:5000'
dpg.add_combo(..., label="Model", ...)
dpg.add_input_text(..., label="Caption", ...)
dpg.add_input_text(..., label="Server", ...)
dpg.add_slider_float(..., label="Insensitivity Delay (s)", ...)

# After
DEFAULT_SERVER = 'http://10.217.172.75:8000'
dpg.add_combo(..., label="", ...)
dpg.add_input_text(..., label="", ...)
dpg.add_input_text(..., label="", ...)
dpg.add_slider_float(..., label="", ...)

💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

….172.75:8000

Co-authored-by: hackolite <826027+hackolite@users.noreply.github.com>
Copilot AI changed the title [WIP] Remove field labels from node vlm VLM node: remove field labels and update default server URL Feb 21, 2026
Copilot AI requested a review from hackolite February 21, 2026 12:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants