Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }