mirror of
https://github.com/langgenius/dify.git
synced 2025-07-03 15:18:05 +00: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()
|
|
}
|