@oh-my-pi/pi-coding-agent 14.4.3 → 14.4.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-coding-agent",
4
- "version": "14.4.3",
4
+ "version": "14.4.4",
5
5
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
6
6
  "homepage": "https://github.com/can1357/oh-my-pi",
7
7
  "author": "Can Boluk",
@@ -46,12 +46,12 @@
46
46
  "dependencies": {
47
47
  "@agentclientprotocol/sdk": "0.20.0",
48
48
  "@mozilla/readability": "^0.6.0",
49
- "@oh-my-pi/omp-stats": "14.4.3",
50
- "@oh-my-pi/pi-agent-core": "14.4.3",
51
- "@oh-my-pi/pi-ai": "14.4.3",
52
- "@oh-my-pi/pi-natives": "14.4.3",
53
- "@oh-my-pi/pi-tui": "14.4.3",
54
- "@oh-my-pi/pi-utils": "14.4.3",
49
+ "@oh-my-pi/omp-stats": "14.4.4",
50
+ "@oh-my-pi/pi-agent-core": "14.4.4",
51
+ "@oh-my-pi/pi-ai": "14.4.4",
52
+ "@oh-my-pi/pi-natives": "14.4.4",
53
+ "@oh-my-pi/pi-tui": "14.4.4",
54
+ "@oh-my-pi/pi-utils": "14.4.4",
55
55
  "@sinclair/typebox": "^0.34.49",
56
56
  "@xterm/headless": "^6.0.0",
57
57
  "ajv": "^8.20.0",
@@ -1681,6 +1681,7 @@ export const SETTINGS_SCHEMA = {
1681
1681
  "kagi",
1682
1682
  "synthetic",
1683
1683
  "parallel",
1684
+ "searxng",
1684
1685
  ] as const,
1685
1686
  default: "auto",
1686
1687
  ui: {
@@ -1761,6 +1762,47 @@ export const SETTINGS_SCHEMA = {
1761
1762
  ui: { tab: "providers", label: "Exa Websets", description: "Webset management and enrichment tools" },
1762
1763
  },
1763
1764
 
1765
+ // SearXNG
1766
+ "searxng.endpoint": {
1767
+ type: "string",
1768
+ default: undefined,
1769
+ ui: {
1770
+ tab: "providers",
1771
+ label: "SearXNG Endpoint",
1772
+ description: "Base URL of the SearXNG instance (e.g. https://searx.example.org)",
1773
+ },
1774
+ },
1775
+
1776
+ "searxng.token": {
1777
+ type: "string",
1778
+ default: undefined,
1779
+ ui: {
1780
+ tab: "providers",
1781
+ label: "SearXNG Token",
1782
+ description: "Optional bearer token for SearXNG authentication",
1783
+ },
1784
+ },
1785
+
1786
+ "searxng.categories": {
1787
+ type: "string",
1788
+ default: undefined,
1789
+ ui: {
1790
+ tab: "providers",
1791
+ label: "SearXNG Categories",
1792
+ description: "Comma-separated categories filter (e.g. general,news,science)",
1793
+ },
1794
+ },
1795
+
1796
+ "searxng.language": {
1797
+ type: "string",
1798
+ default: undefined,
1799
+ ui: {
1800
+ tab: "providers",
1801
+ label: "SearXNG Language",
1802
+ description: "Language code for search results (e.g. en, zh-CN)",
1803
+ },
1804
+ },
1805
+
1764
1806
  "commit.mapReduceEnabled": { type: "boolean", default: true },
1765
1807
 
1766
1808
  "commit.mapReduceMinFiles": { type: "number", default: 4 },