Commit 493fe562 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac

parent b1d83fc4
...@@ -24,10 +24,16 @@ def prompt_template( ...@@ -24,10 +24,16 @@ def prompt_template(
if user_name: if user_name:
# Replace {{USER_NAME}} in the template with the user's name # Replace {{USER_NAME}} in the template with the user's name
template = template.replace("{{USER_NAME}}", user_name) template = template.replace("{{USER_NAME}}", user_name)
else:
# Replace {{USER_NAME}} in the template with "Unknown"
template = template.replace("{{USER_NAME}}", "Unknown")
if user_location: if user_location:
# Replace {{USER_LOCATION}} in the template with the current location # Replace {{USER_LOCATION}} in the template with the current location
template = template.replace("{{USER_LOCATION}}", user_location) template = template.replace("{{USER_LOCATION}}", user_location)
else:
# Replace {{USER_LOCATION}} in the template with "Unknown"
template = template.replace("{{USER_LOCATION}}", "Unknown")
return template return template
......
...@@ -33,9 +33,9 @@ ...@@ -33,9 +33,9 @@
<div class="flex flex-col"> <div class="flex flex-col">
{#if tools.length > 0} {#if tools.length > 0}
<div class=" flex items-center gap-2 mt-2"> <div class=" flex items-center mt-2 flex-wrap">
{#each Object.keys(_tools) as tool, toolIdx} {#each Object.keys(_tools) as tool, toolIdx}
<div class=" flex items-center gap-2"> <div class=" flex items-center gap-2 mr-3">
<div class="self-center flex items-center"> <div class="self-center flex items-center">
<Checkbox <Checkbox
state={_tools[tool].selected ? 'checked' : 'unchecked'} state={_tools[tool].selected ? 'checked' : 'unchecked'}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment