You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

declarations.ts 287B

123456789101112
  1. export type CreateKnowledgeBaseReq = {
  2. name: string
  3. description?: string
  4. external_knowledge_api_id: string
  5. provider: 'external'
  6. external_knowledge_id: string
  7. external_retrieval_model: {
  8. top_k: number
  9. score_threshold: number
  10. score_threshold_enabled: boolean
  11. }
  12. }