fix: compile dist from source in Docker, fix ChatResult interface
- Dockerfile now runs tsc during build so committed dist/ is never stale - ChatResult interface was missing history[] and memoryUpdates[] fields - Re-add missing MemoryUpdate import in orchestrator.ts - Rebuild dist/ with all new fields included Made-with: Cursor
This commit is contained in:
7
dist/tools.d.ts
vendored
7
dist/tools.d.ts
vendored
@@ -1,3 +1,8 @@
|
||||
export interface MemoryUpdate {
|
||||
key: string;
|
||||
type: string;
|
||||
value: string;
|
||||
}
|
||||
export interface ToolContext {
|
||||
workspaceRoot: string;
|
||||
gitea: {
|
||||
@@ -9,6 +14,8 @@ export interface ToolContext {
|
||||
apiUrl: string;
|
||||
apiToken: string;
|
||||
};
|
||||
/** Accumulated memory updates from save_memory tool calls in this turn */
|
||||
memoryUpdates: MemoryUpdate[];
|
||||
}
|
||||
export interface ToolDefinition {
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user