mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-08 02:16:51 +08:00
6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
export const buildProviderQuery = (collectionName: string): string => {
|
|
const query = new URLSearchParams()
|
|
query.set('provider', collectionName)
|
|
return query.toString()
|
|
}
|