Skip to content

Instantly share code, notes, and snippets.

@fluidog
fluidog / wd-floating-panel.vue
Last active September 5, 2025 11:50
优化 WotUI floating panel
<view
:class="`wd-floating-panel ${customClass} ${safeAreaInsetBottom ? 'is-safe' : ''}`"
:style="rootStyle"
@touchstart.passive="handleTouchStart"
@touchmove.passive="handleTouchMove"
@touchend="handleTouchEnd"
@touchcancel="handleTouchEnd"
>
<slot name="header">
<view :class="`wd-floating-panel__header`">
@fluidog
fluidog / example_OpenAI_formated_output.py
Last active September 2, 2025 08:28
OpenAI API 结构化输出 配置示例
response = client.chat.completions.create(
model=model,
messages=messages,
response_format={
"type": "json_schema",
"json_schema": {
"name": "calendar_event",
"schema": {
"type": "object",
"properties": {