@@ -1714,6 +1714,10 @@ export type ConversationListResponse = {
1714
1714
* Id
1715
1715
*/
1716
1716
id : string ;
1717
+ /**
1718
+ * Title
1719
+ */
1720
+ title ?: string ;
1717
1721
} ;
1718
1722
1719
1723
/**
@@ -1724,10 +1728,14 @@ export type ConversationMessageResponseReadable = {
1724
1728
* Id
1725
1729
*/
1726
1730
id : string ;
1731
+ /**
1732
+ * Inputs
1733
+ */
1734
+ inputs ?: Array < ChatMessage > ;
1727
1735
/**
1728
1736
* Responses
1729
1737
*/
1730
- responses ?: Array < ChatMessage > | null ;
1738
+ responses ?: Array < ChatMessage > ;
1731
1739
/**
1732
1740
* Steps
1733
1741
*/
@@ -1738,11 +1746,11 @@ export type ConversationMessageResponseReadable = {
1738
1746
| ( {
1739
1747
type : "image" ;
1740
1748
} & AgentStepImage )
1741
- > | null ;
1749
+ > ;
1742
1750
/**
1743
1751
* Transactions
1744
1752
*/
1745
- transactions ?: Array < AgentTransaction > | null ;
1753
+ transactions ?: Array < AgentTransaction > ;
1746
1754
usage ?: AgentTaskUsageReadable | null ;
1747
1755
} ;
1748
1756
@@ -1754,10 +1762,14 @@ export type ConversationMessageResponseWritable = {
1754
1762
* Id
1755
1763
*/
1756
1764
id : string ;
1765
+ /**
1766
+ * Inputs
1767
+ */
1768
+ inputs ?: Array < ChatMessage > ;
1757
1769
/**
1758
1770
* Responses
1759
1771
*/
1760
- responses ?: Array < ChatMessage > | null ;
1772
+ responses ?: Array < ChatMessage > ;
1761
1773
/**
1762
1774
* Steps
1763
1775
*/
@@ -1768,11 +1780,11 @@ export type ConversationMessageResponseWritable = {
1768
1780
| ( {
1769
1781
type : "image" ;
1770
1782
} & AgentStepImage )
1771
- > | null ;
1783
+ > ;
1772
1784
/**
1773
1785
* Transactions
1774
1786
*/
1775
- transactions ?: Array < AgentTransaction > | null ;
1787
+ transactions ?: Array < AgentTransaction > ;
1776
1788
usage ?: AgentTaskUsageWritable | null ;
1777
1789
} ;
1778
1790
@@ -1785,25 +1797,33 @@ export type ConversationResponseReadable = {
1785
1797
*/
1786
1798
id : string ;
1787
1799
/**
1788
- * Responses
1800
+ * Title
1789
1801
*/
1790
- responses ?: Array < ChatMessage > | null ;
1802
+ title : string ;
1791
1803
/**
1792
- * Steps
1804
+ * User Id
1793
1805
*/
1794
- steps ?: Array <
1795
- | ( {
1796
- type : "text" ;
1797
- } & AgentStepText )
1798
- | ( {
1799
- type : "image" ;
1800
- } & AgentStepImage )
1801
- > | null ;
1806
+ user_id : string ;
1802
1807
/**
1803
- * Transactions
1808
+ * Agent Id
1804
1809
*/
1805
- transactions ?: Array < AgentTransaction > | null ;
1806
- usage ?: AgentTaskUsageReadable | null ;
1810
+ agent_id : string ;
1811
+ /**
1812
+ * Is Public
1813
+ */
1814
+ is_public : boolean ;
1815
+ /**
1816
+ * Created At
1817
+ */
1818
+ created_at : string ;
1819
+ /**
1820
+ * Updated At
1821
+ */
1822
+ updated_at : string ;
1823
+ /**
1824
+ * Messages
1825
+ */
1826
+ messages ?: Array < ConversationMessageResponseReadable > ;
1807
1827
} ;
1808
1828
1809
1829
/**
@@ -1815,25 +1835,33 @@ export type ConversationResponseWritable = {
1815
1835
*/
1816
1836
id : string ;
1817
1837
/**
1818
- * Responses
1838
+ * Title
1819
1839
*/
1820
- responses ?: Array < ChatMessage > | null ;
1840
+ title : string ;
1821
1841
/**
1822
- * Steps
1842
+ * User Id
1823
1843
*/
1824
- steps ?: Array <
1825
- | ( {
1826
- type : "text" ;
1827
- } & AgentStepText )
1828
- | ( {
1829
- type : "image" ;
1830
- } & AgentStepImage )
1831
- > | null ;
1844
+ user_id : string ;
1832
1845
/**
1833
- * Transactions
1846
+ * Agent Id
1834
1847
*/
1835
- transactions ?: Array < AgentTransaction > | null ;
1836
- usage ?: AgentTaskUsageWritable | null ;
1848
+ agent_id : string ;
1849
+ /**
1850
+ * Is Public
1851
+ */
1852
+ is_public : boolean ;
1853
+ /**
1854
+ * Created At
1855
+ */
1856
+ created_at : string ;
1857
+ /**
1858
+ * Updated At
1859
+ */
1860
+ updated_at : string ;
1861
+ /**
1862
+ * Messages
1863
+ */
1864
+ messages ?: Array < ConversationMessageResponseWritable > ;
1837
1865
} ;
1838
1866
1839
1867
/**
@@ -2735,6 +2763,10 @@ export type UserConversationResponse = {
2735
2763
* Updated At
2736
2764
*/
2737
2765
updated_at : string ;
2766
+ /**
2767
+ * Agent Id
2768
+ */
2769
+ agent_id : string ;
2738
2770
} ;
2739
2771
2740
2772
/**
0 commit comments