This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function claude() { | |
| # 定义不同服务的配置 | |
| local base_url="" | |
| local auth_token="" | |
| local api_key="" | |
| local model="" | |
| local small_fast_model="" | |
| case "$1" in | |
| "kimi") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "apc.electron": { | |
| "backgroundColor": "#00000000", | |
| "titleBarStyle": "hidden", | |
| "vibrancy": "sidebar", | |
| "visualEffectState": "followWindow", | |
| "trafficLightPosition": { | |
| "x": 9, | |
| "y": 9 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package excel | |
| import ( | |
| "errors" | |
| "github.com/xuri/excelize/v2" | |
| "reflect" | |
| ) | |
| type Row []any |