@inferencesh/sdk 0.6.3 → 0.6.4
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.
- package/dist/agent/actions.js +0 -1
- package/dist/agent/types.d.ts +1 -1
- package/dist/api/agents.d.ts +1 -1
- package/dist/api/engines.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/types.d.ts +1002 -1664
- package/dist/types.js +108 -156
- package/package.json +1 -1
package/dist/agent/actions.js
CHANGED
package/dist/agent/types.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Public types for the Agent chat module.
|
|
5
5
|
*/
|
|
6
6
|
import type { Dispatch } from 'react';
|
|
7
|
-
import type { ChatDTO, ChatMessageDTO, AgentTool,
|
|
7
|
+
import type { ChatDTO, ChatMessageDTO, AgentTool, AgentConfigInput as GeneratedAgentConfig, CoreAppConfigInput as CoreAppConfig, FileRef } from '../types';
|
|
8
8
|
import type { HttpClient } from '../http/client';
|
|
9
9
|
import type { StreamableManager } from '../http/streamable';
|
|
10
10
|
import type { PollManager } from '../http/poll';
|
package/dist/api/agents.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '../http/client';
|
|
2
2
|
import { FilesAPI } from './files';
|
|
3
|
-
import { ChatDTO, ChatMessageDTO, AgentConfig, AgentDTO, AgentVersionDTO, CreateAgentRequest, FileDTO as File, CursorListRequest, CursorListResponse } from '../types';
|
|
3
|
+
import { ChatDTO, ChatMessageDTO, AgentConfigInput as AgentConfig, AgentDTO, AgentVersionDTO, CreateAgentRequest, FileDTO as File, CursorListRequest, CursorListResponse } from '../types';
|
|
4
4
|
/** Internal tool definition returned by getInternalTools */
|
|
5
5
|
export interface InternalToolDefinition {
|
|
6
6
|
id: string;
|
package/dist/api/engines.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ import { ChatsAPI } from './api/chats';
|
|
|
27
27
|
import { FlowsAPI } from './api/flows';
|
|
28
28
|
import { FlowRunsAPI } from './api/flow-runs';
|
|
29
29
|
import { EnginesAPI } from './api/engines';
|
|
30
|
-
import { ApiAppRunRequest, TaskDTO as Task, AgentConfig, FileDTO as File } from './types';
|
|
30
|
+
import { ApiAppRunRequest, TaskDTO as Task, AgentConfigInput as AgentConfig, FileDTO as File } from './types';
|
|
31
31
|
export interface InferenceConfig {
|
|
32
32
|
/** Your inference.sh API key (required unless using proxyUrl) */
|
|
33
33
|
apiKey?: string;
|