Source: managers/ai.generated.ts

  1. import BoxClient from '../box-client';
  2. import urlPath from '../util/url-path';
  3. import * as schemas from '../schemas';
  4. /**
  5. */
  6. class AIManager {
  7. client: BoxClient;
  8. /**
  9. * @param {BoxClient} client The Box API Client that is responsible for making calls to the API
  10. */
  11. constructor(client: BoxClient) {
  12. this.client = client;
  13. }
  14. /**
  15. * Send AI question request
  16. *
  17. * Sends an AI request to supported LLMs and returns an answer specifically focused on the user's question given the provided context.
  18. * @param {schemas.AiAsk} body
  19. * @param {object} [options] Options for the request
  20. * @param {Function} [callback] Passed the result if successful, error otherwise
  21. * @returns {Promise<schemas.AiResponse>} A promise resolving to the result or rejecting with an error
  22. */
  23. ask(
  24. body: schemas.AiAsk,
  25. options?: {},
  26. callback?: Function
  27. ): Promise<schemas.AiResponse> {
  28. const { ...queryParams } = options,
  29. apiPath = urlPath('ai', 'ask'),
  30. params = {
  31. qs: queryParams,
  32. body: body,
  33. };
  34. return this.client.wrapWithDefaultHandler(this.client.post)(
  35. apiPath,
  36. params,
  37. callback
  38. );
  39. }
  40. /**
  41. * Send AI request to generate text
  42. *
  43. * Sends an AI request to supported LLMs and returns an answer specifically focused on the creation of new text.
  44. * @param {schemas.AiTextGen} body
  45. * @param {object} [options] Options for the request
  46. * @param {Function} [callback] Passed the result if successful, error otherwise
  47. * @returns {Promise<schemas.AiResponse>} A promise resolving to the result or rejecting with an error
  48. */
  49. textGen(
  50. body: schemas.AiTextGen,
  51. options?: {},
  52. callback?: Function
  53. ): Promise<schemas.AiResponse> {
  54. const { ...queryParams } = options,
  55. apiPath = urlPath('ai', 'text_gen'),
  56. params = {
  57. qs: queryParams,
  58. body: body,
  59. };
  60. return this.client.wrapWithDefaultHandler(this.client.post)(
  61. apiPath,
  62. params,
  63. callback
  64. );
  65. }
  66. }
  67. export = AIManager;