Files
urbanLifeline/dify/web/service/_tools_util.ts

6 lines
178 B
TypeScript
Raw Normal View History

2025-12-01 17:21:38 +08:00
export const buildProviderQuery = (collectionName: string): string => {
const query = new URLSearchParams()
query.set('provider', collectionName)
return query.toString()
}