Source: schemas/ai-text-gen.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * AI Text Gen Request
  4. *
  5. * AI Text Gen Request object
  6. */
  7. export interface AiTextGen {
  8. /**
  9. * The prompt provided by the client to be answered by the LLM. The prompt's length is limited to 10000 characters.
  10. * Example: Write an email to a client about the importance of public APIs.
  11. */
  12. prompt: string;
  13. /**
  14. * The items to be processed by the LLM, often files.
  15. * The array can include **exactly one** element.
  16. *
  17. * **Note**: Box AI handles documents with text representations up to 1MB in size.
  18. * If the file size exceeds 1MB, the first 1MB of text representation will be processed.
  19. */
  20. items: {
  21. id?: string;
  22. type?: string;
  23. content?: string;
  24. }[];
  25. /**
  26. * The history of prompts and answers previously passed to the LLM. This provides additional context to the LLM in generating the response.
  27. */
  28. dialogue_history?: {
  29. answer?: string;
  30. created_at?: string;
  31. prompt?: string;
  32. }[];
  33. }