mirror of
https://github.com/langgenius/dify.git
synced 2026-02-02 00:51:49 +08:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import { useDocLink } from '@/context/i18n'
|
|
|
|
export const useDatasetApiAccessUrl = () => {
|
|
const docLink = useDocLink()
|
|
|
|
return docLink('/api-reference/datasets/get-knowledge-base-list')
|
|
}
|