This file contains 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
The user wants me to add JSDoc comments to the provided TypeScript code. | |
The comments should be in Chinese. | |
I need to explain the purpose of each function, its parameters, and its return value. | |
I will go through each function and add the necessary JSDoc comments.```typescript | |
'use server'; | |
import db from '@/database/drizzle.client'; | |
import { applications, type Application, type NewApplication } from '@/schema/applications.schema'; | |
import { and, eq, desc, isNull, sql } from 'drizzle-orm'; |
This file contains 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
<!DOCTYPE html> | |
<html lang="zh-CN"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>电池状态小工具</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
background-color: #f0f0f0; |
This file contains 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
# 数据准备(for RAG not ft) | |
## 两组数据 | |
### 1. Agency 话术整理 | |
- 原始文档可能是非标格式化文档,需要处理 | |
- 将"话术全文"根据语义拆分成几个阶段,如: | |
- 揣摩用户意图 |
This file contains 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
/* | |
Check if a string is in valid email format. | |
Returns true if valid, false otherwise. | |
*/ | |
function isEmail(str) | |
{ | |
var regex = /^[-_.a-z0-9]+@(([-_a-z0-9]+\.)+(ad|ae|aero|af|ag|ai|al|am|an|ao|aq|ar|arpa|as|at|au|aw|az|ba|bb|bd|be|bf|bg|bh|bi|biz|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|com|coop|cr|cs|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|ec|edu|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gh|gi|gl|gm|gn|gov|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|in|info|int|io|iq|ir|is|it|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|mg|mh|mil|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|museum|mv|mw|mx|my|mz|na|name|nc|ne|net|nf|ng|ni|nl|no|np|nr|nt|nu|nz|om|org|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|pro|ps|pt|pw|py|qa|re|ro|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)|(([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5]) |
This file contains 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
""" | |
该脚本演示了如何使用翻译API进行自动翻译。 | |
它生成翻译请求的JSON,发送请求到API端点,并打印翻译结果。 | |
脚本使用Pydantic库定义请求和响应模型,确保数据验证和类型安全。 | |
它还包括生成客户端密钥、生成翻译请求JSON和发送翻译请求的函数。 | |
翻译请求JSON包括源语言、目标语言和要翻译的文本列表。 | |
响应包含翻译后的文本。 |
This file contains 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
''' | |
Date: 2022-06-01 13:49:12 | |
LastEditors: ibegyourpardon | |
LastEditTime: 2022-06-01 13:52:47 | |
FilePath: /undefined/Users/feiandxs/Downloads/timer.py | |
''' | |
import time | |
class TimerError(Exception): | |
""" |
This file contains 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
''' | |
Date: 2022-06-01 15:25:41 | |
LastEditors: ibegyourpardon | |
LastEditTime: 2022-06-01 15:29:35 | |
FilePath: /undefined/Users/feiandxs/Downloads/8.py | |
''' | |
import datetime | |
eta_temp = '2022-06-01 13:15:02' |
This file contains 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
han_list = ["零" , "一" , "二" , "三" , "四" , "五" , "六" , "七" , "八" , "九"] | |
unit_list = ["","","十" , "百" , "千"] | |
def four_to_han(num_str: str): | |
result = "" | |
num_len = len(num_str) | |
for i in range(num_len): | |
num = int(num_str[i]) | |
if i!=num_len-1: | |
if num!=0: |
This file contains 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
import os | |
def clear(filepath): | |
files = os.listdir(filepath) | |
for fd in files: | |
cur_path = os.path.join(filepath, fd) | |
if os.path.isdir(cur_path): | |
if fd == "__pycache__": | |
print("rm %s -rf" % cur_path) | |
os.system("rm %s -rf" % cur_path) |
This file contains 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
''' | |
Date: 2022-01-21 16:11:31 | |
LastEditors: ibegyourpardon | |
LastEditTime: 2022-01-21 16:25:48 | |
''' | |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# feiandxs | |
NewerOlder