chatkit.mjs 639 B

12345678910111213141516
  1. // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
  2. import { APIResource } from "../../../core/resource.mjs";
  3. import * as SessionsAPI from "./sessions.mjs";
  4. import { Sessions } from "./sessions.mjs";
  5. import * as ThreadsAPI from "./threads.mjs";
  6. import { Threads, } from "./threads.mjs";
  7. export class ChatKit extends APIResource {
  8. constructor() {
  9. super(...arguments);
  10. this.sessions = new SessionsAPI.Sessions(this._client);
  11. this.threads = new ThreadsAPI.Threads(this._client);
  12. }
  13. }
  14. ChatKit.Sessions = Sessions;
  15. ChatKit.Threads = Threads;
  16. //# sourceMappingURL=chatkit.mjs.map