Spaces:
Sleeping
Sleeping
File size: 16,521 Bytes
3438765 3d2bbdf c25d561 3438765 be23790 3438765 9030300 3438765 9030300 3438765 b757e91 3438765 b757e91 3438765 b757e91 3438765 4216282 3438765 8debeb6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 |
import streamlit as st
from datetime import datetime, timedelta
import pytz
from google_auth_oauthlib.flow import Flow
from google.oauth2.credentials import Credentials
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
import json
import re
import ast
import base64
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
import os
os.environ["TRANSFORMERS_CACHE"] = "/tmp/huggingface_cache"
os.environ["HF_HOME"] = "/tmp/huggingface_cache"
os.environ["HF_DATASETS_CACHE"] = "/tmp/huggingface_cache"
os.environ["HF_METRICS_CACHE"] = "/tmp/huggingface_cache"
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
st.set_page_config(page_title="ChronoCall-Q", page_icon="🗓️")
st.markdown("""
<style>
/* เปลี่ยนกรอบหลักให้เป็นสีม่วง */
div[data-baseweb="input"] > div {
border: 2px solid #a020f0 !important;
border-radius: 6px;
padding: 2px;
box-shadow: none !important;
}
/* ตอน focus แล้ว */
div[data-baseweb="input"] > div:focus-within {
border: 2px solid #a020f0 !important;
box-shadow: 0 0 0 2px rgba(160, 32, 240, 0.3) !important;
}
/* input ด้านในไม่ให้แสดงเงาสีแดงเลย */
input {
border: none !important;
outline: none !important;
box-shadow: none !important;
}
/* ลบพวกกรอบแดงที่แอบซ่อนอยู่ */
.css-1cpxqw2, .css-1d391kg, .css-1y4p8pa {
border: 2px solid #a020f0 !important;
box-shadow: none !important;
}
/* force กล่อง input ให้ไม่ใช้สีแดงแม้จะ error */
div:has(input:focus) {
border-color: #a020f0 !important;
}
/* เปลี่ยนสีข้อความหัวข้อเป็นม่วงเมื่อ hover */
details:hover > summary {
color: #9D00FF !important;
font-weight: bold;
}
/* เปลี่ยนสี caret ^ (ไอคอนสามเหลี่ยม) ตอน hover */
details:hover summary::-webkit-details-marker {
color: #9D00FF !important;
}
</style>
""", unsafe_allow_html=True)
# --- Model ---
def convert_to_dict(text):
match = re.search(r"<tool_call>\n(.*?)\n</tool_call>", text)
if match:
tool_dict_str = match.group(1)
try:
result = ast.literal_eval(tool_dict_str)
return(result)
except Exception as e:
return({})
else:
return({})
# --- Model ---
model_name_or_path = "TechitoTamani/Qwen3-0.6B_FinetuneWithMyData-Merged"
json_path = os.path.join(os.path.dirname(__file__), 'tools.json')
with open(json_path, 'r', encoding='utf-8') as f:
TOOLS = json.load(f)
@st.cache_resource
def load_model_and_tokenizer():
tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
model = AutoModelForCausalLM.from_pretrained(
model_name_or_path,
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
return tokenizer, model
tokenizer, model = load_model_and_tokenizer()
def get_model_answer(messages):
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
tools=TOOLS,
enable_thinking=False
)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
with torch.no_grad():
outputs = model.generate(**inputs, max_new_tokens=128)
output_text = tokenizer.batch_decode(outputs)[0][len(text):]
return output_text
# --- Calendar ---
SCOPES = ['https://www.googleapis.com/auth/calendar']
css_path = os.path.join(os.path.dirname(__file__), 'style.css')
with open(css_path, 'r', encoding='utf-8') as f:
custom_css = f"<style>{f.read()}</style>"
st.markdown(custom_css, unsafe_allow_html=True)
def get_base64_image(image_filename):
image_path = os.path.join(os.path.dirname(__file__), image_filename)
with open(image_path, "rb") as img_file:
b64_data = base64.b64encode(img_file.read()).decode()
return b64_data
def create_flow():
return Flow.from_client_config(
{
"web": {
"client_id": os.environ["client_id"],
"client_secret": os.environ["client_secret"],
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"redirect_uris": [os.environ["redirect_uri"]],
}
},
scopes=SCOPES,
redirect_uri=os.environ["redirect_uri"]
)
def generate_auth_url(flow):
auth_url, _ = flow.authorization_url(prompt='consent', access_type='offline', include_granted_scopes='true')
return auth_url
def create_service(creds):
return build("calendar", "v3", credentials=creds)
# --- Adding ---
def extract_time_or_dash(iso_time: str) -> str:
try:
dt = datetime.fromisoformat(iso_time)
if "T" in iso_time:
return dt.strftime("%H:%M")
else:
return "-"
except ValueError:
return "-"
def handle_calendar_action(service, action_data):
name = action_data.get("name")
args = action_data.get("arguments", {})
if name == "add_event_date":
date_str = args["date"]
time_str = args["time"]
title = args["title"]
dt_start = datetime.strptime(f"{date_str} {time_str}", "%Y-%m-%d %H:%M")
dt_end = dt_start + timedelta(hours=1)
event = {
'summary': title,
'start': {
'dateTime': dt_start.isoformat(),
'timeZone': 'Asia/Bangkok',
},
'end': {
'dateTime': dt_end.isoformat(),
'timeZone': 'Asia/Bangkok',
},
}
created = service.events().insert(calendarId='primary', body=event).execute()
st.success(f"✅ เพิ่มกิจกรรม: {title} [ดูใน Calendar]({created.get('htmlLink')})")
elif name == "delete_event_date":
date_str = args["date"]
title = args["title"]
events = get_events_by_date_and_title(service, date_str, title)
if events:
for event in events:
service.events().delete(calendarId='primary', eventId=event['id']).execute()
st.success(f"🗑 ลบนัด: {title} ในวันที่ {date_str} แล้ว")
else:
st.warning(f"ไม่พบนัด: {title} ในวันที่ {date_str}")
elif name == "update_event":
date_str = args["date"]
new_time_str = args["time"]
title = args["title"]
events = get_events_by_date_and_title(service, date_str, title)
if events:
for event in events:
new_start = datetime.strptime(f"{date_str} {new_time_str}", "%Y-%m-%d %H:%M")
new_end = new_start + timedelta(hours=1)
event["start"]["dateTime"] = new_start.isoformat()
event["end"]["dateTime"] = new_end.isoformat()
service.events().update(calendarId='primary', eventId=event["id"], body=event).execute()
st.success(f"✏️ เปลี่ยนเวลานัด: {title} เป็น {new_time_str}")
else:
st.warning(f"ไม่พบนัด: {title} ในวันที่ {date_str}")
elif name == "view_event_date":
date_str = args["date"]
events = get_events_by_date(service, date_str)
if not events:
st.info("ไม่มีนัดในวันนี้")
else:
st.write(f"📅 นัดทั้งหมดในวันที่ {date_str}:")
for e in events:
date = e['start'].get('dateTime', e['start'].get('date'))
time = extract_time_or_dash(date)
st.write(f"- {e['summary']} เวลา: {time}")
def get_events_by_date(service, date_str):
date_obj = datetime.strptime(date_str, "%Y-%m-%d")
start = date_obj.strftime("%Y-%m-%dT00:00:00Z")
end = (date_obj + timedelta(days=1)).strftime("%Y-%m-%dT00:00:00Z")
# # DEBUG
# st.write(f"Fetching events for date: {date_str}")
# st.write(f"timeMin = {start}, timeMax = {end}")
try:
events_result = service.events().list(
calendarId='primary',
timeMin=start,
timeMax=end,
singleEvents=True,
orderBy='startTime'
).execute()
return events_result.get('items', [])
except HttpError as error:
st.error(f"❌ Google Calendar API error: {error}")
return []
except Exception as e:
st.error(f"❌ Unknown error: {e}")
return []
def get_events_by_date_and_title(service, date_str, title):
events = get_events_by_date(service, date_str)
return [e for e in events if e.get("summary") == title]
# --- Email ---
sender = os.environ["sender"]
receiver = os.environ["receiver"]
password = os.environ["password"]
def send_email(user_email):
subject = "New Beta Tester - ChronoCall-Q"
body = f"""\
มีผู้สนใจเข้าร่วม Beta Test
อีเมล: {user_email}
"""
msg = MIMEMultipart()
msg["From"] = sender
msg["To"] = receiver
msg["Subject"] = subject
msg.attach(MIMEText(body, "plain"))
try:
with smtplib.SMTP_SSL("smtp.gmail.com", 465) as server:
server.login(sender, password)
server.sendmail(sender, receiver, msg.as_string())
return True
except Exception as e:
st.error(f"เกิดข้อผิดพลาด: {e}")
return False
# --- Streamlit ---
def main():
# ดึง query params
params = st.query_params
code = params.get("code", None)
# ถ้ายังไม่ได้ login
if "credentials" not in st.session_state:
if code:
flow = create_flow()
try:
flow.fetch_token(code=code)
creds = flow.credentials
st.session_state["credentials"] = {
"token": creds.token,
"refresh_token": creds.refresh_token,
"token_uri": creds.token_uri,
"client_id": creds.client_id,
"client_secret": creds.client_secret,
"scopes": creds.scopes
}
st.success("🎉 ล็อกอินสำเร็จ! พร้อมใช้งานแล้ว")
st.rerun()
except Exception as e:
st.error(f"เกิดข้อผิดพลาด: {e}")
return
else:
flow = create_flow()
auth_url = generate_auth_url(flow)
# --- Title + Login ---
st.markdown(f"""
<!-- ชื่อ -->
<div class="fade-in-title custom-title">ChronoCall-Q</div>
<!-- ปุ่ม ล่าช้า -->
<div class="fade-in-button login-button">
<a href="{auth_url}" target="_blank" rel="noopener noreferrer">
<button>Login with Google</button>
</a>
</div>
""", unsafe_allow_html=True)
# --- Emali sender ---
st.markdown("""
<div class="fade-in-up">
<p>ถ้า <strong>Login ไม่ได้ใช่ไหม?</strong><br>ไม่เป็นไร! ส่งคำขอเข้าร่วม Beta Test มาให้เราก่อนได้เลย</p>
</div>
""", unsafe_allow_html=True)
email = st.text_input("กรอกอีเมลของคุณที่นี่")
if st.button("ส่งคำขอเข้าร่วม Beta Test"):
if email:
if send_email(email):
st.success("ส่งคำขอเรียบร้อยแล้ว!")
else:
st.error("เกิดข้อผิดพลาดในการส่ง กรุณาลองใหม่อีกครั้ง")
else:
st.warning("กรุณากรอกอีเมลก่อนกดส่ง")
# --- pic ---
img_b64 = get_base64_image("IMG_1358.jpg")
st.markdown(f'''
<img src="data:image/jpeg;base64,{img_b64}" class="fade-in-image">
''', unsafe_allow_html=True)
st.stop()
# Logged in
creds = Credentials(**st.session_state["credentials"])
service = create_service(creds)
st.title("ChronoCall-Q")
st.caption("วิธีใช้งาน")
with st.expander("การเพิ่มเหตุการณ์ (Add Event)"):
st.markdown("""
เพื่อเพิ่มเหตุการณ์ใหม่ ต้องระบุ:
- **ชื่อเหตุการณ์**
- **วันที่**
- **เวลา**
> **ตัวอย่าง:** เพิ่มนัดประชุมพรุ่งนี้ตอนสิบโมง
""")
with st.expander("การลบเหตุการณ์ (Delete Event)"):
st.markdown("""
เพื่อทำการลบเหตุการณ์ ต้องระบุ:
- **ชื่อเหตุการณ์**
- **วันที่**
> **ตัวอย่าง:** เพิ่มนัดประชุมพรุ่งนี้ตอนสิบโมง
""")
with st.expander("การอัปเดตเหตุการณ์ (Update Event)"):
st.markdown("""
เพื่อเปลี่ยนเวลาเหตุการณ์ในวันเดียวกัน ต้องระบุ:
- **ชื่อเหตุการณ์**
- **วันที่**
- **เวลาใหม่**
> **ตัวอย่าง:** เปลี่ยนนัดประชุมพรุ่งนี้เป็นสิบเอ็ดโมง
""")
with st.expander("การดูเหตุการณ์ (View Events)"):
st.markdown("""
เพื่อดูรายการเหตุการณ์ในวันใดวันหนึ่ง ต้องระบุ:
- **วันที่ที่ต้องการดู**
> **ตัวอย่าง:** พรุ่งนี้มีนัดอะไรบ้าง
""")
if "user_input" not in st.session_state:
st.session_state.user_input = ""
messages = [
{"role": "system", "content": "You are Qwen, created by Alibaba Cloud. You are a helpful assistant.\n\nCurrent Date: 2025-06-07.\n\nCurrent Day: Saturday."},
]
user_input = st.text_input("พิมพ์คำสั่งที่นี่ แล้วกด Enter หรือกดปุ่มยืนยัน", value=st.session_state.user_input, key="input")
submit_button = st.button("ยืนยัน")
if (user_input and user_input != st.session_state.user_input) or submit_button:
bangkok_tz = pytz.timezone("Asia/Bangkok")
now = datetime.now(bangkok_tz)
current_date = now.strftime("%Y-%m-%d")
current_day = now.strftime("%A")
messages = [
{
"role": "system",
"content": f"You are Qwen, created by Alibaba Cloud. You are a helpful assistant.\n\nCurrent Date: {current_date}.\n\nCurrent Day: {current_day}."
},
{
"role": "user",
"content": user_input
}
]
with st.spinner("โมเดลกำลังคิด..."):
response = get_model_answer(messages)
st.success(f"Chrono: {response}")
func_call_dict = convert_to_dict(response)
handle_calendar_action(service, func_call_dict)
st.session_state.user_input = ""
if __name__ == "__main__":
main() |