Source: schemas/ai-ask.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * AI Ask Request
  4. *
  5. * AI Ask request object
  6. */
  7. export interface AiAsk {
  8. /**
  9. * The mode specifies if this request is for a single or multiple items. If you select `single_item_qa` the `items` array can have one element only. Selecting `multiple_item_qa` allows you to provide up to 25 items.
  10. * Example: multiple_item_qa
  11. */
  12. mode: 'multiple_item_qa' | 'single_item_qa';
  13. /**
  14. * The prompt provided by the client to be answered by the LLM. The prompt's length is limited to 10000 characters.
  15. * Example: What is the value provided by public APIs based on this document?
  16. */
  17. prompt: string;
  18. /**
  19. * The items to be processed by the LLM, often files.
  20. *
  21. * **Note**: Box AI handles documents with text representations up to 1MB in size, or a maximum of 25 files, whichever comes first.
  22. * If the file size exceeds 1MB, the first 1MB of text representation will be processed.
  23. * If you set `mode` parameter to `single_item_qa`, the `items` array can have one element only.
  24. */
  25. items: {
  26. id?: string;
  27. type?: string;
  28. content?: string;
  29. }[];
  30. }