asteroid-odyssey 1.7.69 → 1.7.84
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/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1603,7 +1603,7 @@ type AgentsFilesAgentFileCreatedBy = 'user' | 'agent' | 'environment' | 'system'
|
|
|
1603
1603
|
/**
|
|
1604
1604
|
* Directory types within the agent filesystem
|
|
1605
1605
|
*/
|
|
1606
|
-
type AgentsFilesAgentFileDirectory = 'uploads' | 'downloads' | 'workspace' | 'shared' | 'debug';
|
|
1606
|
+
type AgentsFilesAgentFileDirectory = 'uploads' | 'downloads' | 'workspace' | 'shared' | 'debug' | 'tracing';
|
|
1607
1607
|
/**
|
|
1608
1608
|
* Files grouped by their agent directory
|
|
1609
1609
|
*/
|
|
@@ -1613,6 +1613,10 @@ type AgentsFilesAgentFilesDirectoryListing = {
|
|
|
1613
1613
|
workspace?: Array<AgentsFilesAgentFile>;
|
|
1614
1614
|
shared?: Array<AgentsFilesAgentFile>;
|
|
1615
1615
|
debug?: Array<AgentsFilesAgentFile>;
|
|
1616
|
+
/**
|
|
1617
|
+
* Reserved for internal use.
|
|
1618
|
+
*/
|
|
1619
|
+
tracing?: Array<AgentsFilesAgentFile>;
|
|
1616
1620
|
};
|
|
1617
1621
|
/**
|
|
1618
1622
|
* Response containing all agent files for an execution, grouped by directory
|
|
@@ -1894,6 +1898,10 @@ type AgentsGraphModelsSettings = {
|
|
|
1894
1898
|
* LLM provider override for the new agent loop (admin-only in UI; defaults to server config)
|
|
1895
1899
|
*/
|
|
1896
1900
|
llm_provider?: AgentsGraphModelsLlmProvider;
|
|
1901
|
+
/**
|
|
1902
|
+
* Reserved for internal use.
|
|
1903
|
+
*/
|
|
1904
|
+
advanced_tracing?: boolean;
|
|
1897
1905
|
};
|
|
1898
1906
|
type AgentsGraphModelsStickyNote = {
|
|
1899
1907
|
id: CommonUuid;
|
package/dist/index.d.ts
CHANGED
|
@@ -1603,7 +1603,7 @@ type AgentsFilesAgentFileCreatedBy = 'user' | 'agent' | 'environment' | 'system'
|
|
|
1603
1603
|
/**
|
|
1604
1604
|
* Directory types within the agent filesystem
|
|
1605
1605
|
*/
|
|
1606
|
-
type AgentsFilesAgentFileDirectory = 'uploads' | 'downloads' | 'workspace' | 'shared' | 'debug';
|
|
1606
|
+
type AgentsFilesAgentFileDirectory = 'uploads' | 'downloads' | 'workspace' | 'shared' | 'debug' | 'tracing';
|
|
1607
1607
|
/**
|
|
1608
1608
|
* Files grouped by their agent directory
|
|
1609
1609
|
*/
|
|
@@ -1613,6 +1613,10 @@ type AgentsFilesAgentFilesDirectoryListing = {
|
|
|
1613
1613
|
workspace?: Array<AgentsFilesAgentFile>;
|
|
1614
1614
|
shared?: Array<AgentsFilesAgentFile>;
|
|
1615
1615
|
debug?: Array<AgentsFilesAgentFile>;
|
|
1616
|
+
/**
|
|
1617
|
+
* Reserved for internal use.
|
|
1618
|
+
*/
|
|
1619
|
+
tracing?: Array<AgentsFilesAgentFile>;
|
|
1616
1620
|
};
|
|
1617
1621
|
/**
|
|
1618
1622
|
* Response containing all agent files for an execution, grouped by directory
|
|
@@ -1894,6 +1898,10 @@ type AgentsGraphModelsSettings = {
|
|
|
1894
1898
|
* LLM provider override for the new agent loop (admin-only in UI; defaults to server config)
|
|
1895
1899
|
*/
|
|
1896
1900
|
llm_provider?: AgentsGraphModelsLlmProvider;
|
|
1901
|
+
/**
|
|
1902
|
+
* Reserved for internal use.
|
|
1903
|
+
*/
|
|
1904
|
+
advanced_tracing?: boolean;
|
|
1897
1905
|
};
|
|
1898
1906
|
type AgentsGraphModelsStickyNote = {
|
|
1899
1907
|
id: CommonUuid;
|