@@ -966,6 +966,93 @@ client.code_execution.python.execute(
966
966
</dl >
967
967
968
968
969
+ </dd >
970
+ </dl >
971
+ </details >
972
+
973
+ ## Document Plot
974
+ <details ><summary ><code >client.document.plot.<a href =" src/axiomatic/document/plot/client.py " >points</a >(...)</code ></summary >
975
+ <dl >
976
+ <dd >
977
+
978
+ #### 📝 Description
979
+
980
+ <dl >
981
+ <dd >
982
+
983
+ <dl >
984
+ <dd >
985
+
986
+ Extracts points from plots
987
+ </dd >
988
+ </dl >
989
+ </dd >
990
+ </dl >
991
+
992
+ #### 🔌 Usage
993
+
994
+ <dl >
995
+ <dd >
996
+
997
+ <dl >
998
+ <dd >
999
+
1000
+ ``` python
1001
+ from axiomatic import Axiomatic
1002
+
1003
+ client = Axiomatic(
1004
+ api_key = " YOUR_API_KEY" ,
1005
+ )
1006
+ client.document.plot.points(
1007
+ b_64_img_str = " b64_img_str" ,
1008
+ )
1009
+
1010
+ ```
1011
+ </dd >
1012
+ </dl >
1013
+ </dd >
1014
+ </dl >
1015
+
1016
+ #### ⚙️ Parameters
1017
+
1018
+ <dl >
1019
+ <dd >
1020
+
1021
+ <dl >
1022
+ <dd >
1023
+
1024
+ ** b_64_img_str:** ` str ` — Img of plot as a base64 string
1025
+
1026
+ </dd >
1027
+ </dl >
1028
+
1029
+ <dl >
1030
+ <dd >
1031
+
1032
+ ** method:** ` typing.Optional[int] ` — Can specify specific method to extract points
1033
+
1034
+ </dd >
1035
+ </dl >
1036
+
1037
+ <dl >
1038
+ <dd >
1039
+
1040
+ ** plot_info:** ` typing.Optional[str] ` — Can add specific plot info
1041
+
1042
+ </dd >
1043
+ </dl >
1044
+
1045
+ <dl >
1046
+ <dd >
1047
+
1048
+ ** request_options:** ` typing.Optional[RequestOptions] ` — Request-specific configuration.
1049
+
1050
+ </dd >
1051
+ </dl >
1052
+ </dd >
1053
+ </dl >
1054
+
1055
+
969
1056
</dd >
970
1057
</dl >
971
1058
</details >
@@ -1644,6 +1731,14 @@ client.pic.circuit.generate(
1644
1731
<dl >
1645
1732
<dd >
1646
1733
1734
+ ** max_iterations:** ` typing.Optional[int] `
1735
+
1736
+ </dd >
1737
+ </dl >
1738
+
1739
+ <dl >
1740
+ <dd >
1741
+
1647
1742
** request_options:** ` typing.Optional[RequestOptions] ` — Request-specific configuration.
1648
1743
1649
1744
</dd >
@@ -1842,6 +1937,14 @@ client.pic.circuit.optimize(
1842
1937
<dl >
1843
1938
<dd >
1844
1939
1940
+ ** config:** ` typing.Optional[OptimizeConfig] `
1941
+
1942
+ </dd >
1943
+ </dl >
1944
+
1945
+ <dl >
1946
+ <dd >
1947
+
1845
1948
** request_options:** ` typing.Optional[RequestOptions] ` — Request-specific configuration.
1846
1949
1847
1950
</dd >
@@ -1958,7 +2061,6 @@ client = Axiomatic(
1958
2061
)
1959
2062
client.pic.circuit.placementoptimize(
1960
2063
netlist = {" key" : " value" },
1961
- method = " method" ,
1962
2064
)
1963
2065
1964
2066
```
@@ -1983,7 +2085,7 @@ client.pic.circuit.placementoptimize(
1983
2085
<dl >
1984
2086
<dd >
1985
2087
1986
- ** method:** ` str `
2088
+ ** method:** ` typing.Optional[ str] `
1987
2089
1988
2090
</dd >
1989
2091
</dl >
0 commit comments