chore: remove model provider free token link (#4579)

This commit is contained in:
zxhlyh
2024-05-22 16:42:49 +08:00
committed by GitHub
parent 24576a39e5
commit 4f62541bfb
6 changed files with 4 additions and 109 deletions

View File

@@ -218,10 +218,6 @@ export const fetchModelParameterRules: Fetcher<{ data: ModelParameterRule[] }, s
return get<{ data: ModelParameterRule[] }>(url)
}
export const submitFreeQuota: Fetcher<{ type: string; redirect_url?: string; result?: string }, string> = (url) => {
return post<{ type: string; redirect_url?: string; result?: string }>(url)
}
export const fetchFileUploadConfig: Fetcher<FileUploadConfigResponse, { url: string }> = ({ url }) => {
return get<FileUploadConfigResponse>(url)
}