Source: schemas/ai-response.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * AI Response
  4. *
  5. * AI response
  6. */
  7. export interface AiResponse {
  8. /**
  9. * The answer provided by the LLM.
  10. * Example: Public APIs are important because of key and important reasons.
  11. */
  12. answer: string;
  13. /**
  14. * The ISO date formatted timestamp of when the answer to the prompt was created.
  15. * Example: 2012-12-12T10:53:43-08:00
  16. */
  17. created_at: string;
  18. /**
  19. * The reason the response finishes.
  20. * Example: done
  21. */
  22. completion_reason?: string;
  23. }