@kevisual/query 0.0.17 → 0.0.19-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,7 +19,7 @@ const adapter = async (opts, overloadOpts) => {
19
19
  url = new URL(opts.url);
20
20
  }
21
21
  else {
22
- origin = window?.location?.origin || 'http://localhost:11015';
22
+ origin = window?.location?.origin || 'http://localhost:51015';
23
23
  url = new URL(opts.url, origin);
24
24
  }
25
25
  const isGet = method === 'GET';
@@ -1,8 +1,6 @@
1
1
  import OpenAI, { ClientOptions } from 'openai';
2
2
  export { default as OpenAI } from 'openai';
3
- import type { RequestOptions } from 'openai/core.mjs';
4
-
5
-
3
+ import { RequestOptions } from 'openai/core.mjs';
6
4
 
7
5
  type QueryOpts = {
8
6
  /**