local-operator-ui 0.3.0 → 0.3.2

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.
Binary file
Binary file
@@ -111775,6 +111775,12 @@ const CREDENTIAL_MANIFEST = [
111775
111775
  name: "Tavily API Key",
111776
111776
  description: "API key for Tavily, a search API designed specifically for AI applications. Allows your agents to search the web for information.",
111777
111777
  url: "https://tavily.com/#api"
111778
+ },
111779
+ {
111780
+ key: "FAL_API_KEY",
111781
+ name: "FAL API Key",
111782
+ description: "API key for FAL, used by agents for generating, interpreting, and understanding images.",
111783
+ url: "https://docs.fal.ai/quick-start"
111778
111784
  }
111779
111785
  ];
111780
111786
  const getCredentialInfo = (key) => {
@@ -112098,7 +112104,7 @@ const ModelCredentialStep = () => {
112098
112104
  };
112099
112105
  const SearchApiStep = () => {
112100
112106
  const searchApiCredentials = CREDENTIAL_MANIFEST.filter(
112101
- (cred) => cred.key === "SERP_API_KEY" || cred.key === "TAVILY_API_KEY"
112107
+ (cred) => cred.key === "TAVILY_API_KEY" || cred.key === "SERP_API_KEY"
112102
112108
  );
112103
112109
  const [selectedCredential, setSelectedCredential] = reactExports.useState(
112104
112110
  searchApiCredentials[0]?.key || ""
@@ -8,7 +8,7 @@
8
8
  <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
9
9
  <meta http-equiv="Content-Security-Policy"
10
10
  content="default-src 'self'; connect-src 'self' http://localhost:1111 http://127.0.0.1:1111; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: http://localhost:1111 http://127.0.0.1:1111; media-src 'self' http://localhost:1111 http://127.0.0.1:1111; font-src 'self'" />
11
- <script type="module" crossorigin src="./assets/index-Co8kqjrD.js"></script>
11
+ <script type="module" crossorigin src="./assets/index-BZlgXU2r.js"></script>
12
12
  <link rel="modulepreload" crossorigin href="./assets/error-boundary-GcWSKAk-.js">
13
13
  <link rel="stylesheet" crossorigin href="./assets/error-boundary-B9KBGB-g.css">
14
14
  <link rel="stylesheet" crossorigin href="./assets/index-94BTFuhu.css">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-operator-ui",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "productName": "Local Operator",
5
5
  "description": "User interface for the Local Operator agent environment",
6
6
  "main": "./out/main/index.js",
@@ -10,13 +10,13 @@
10
10
  "license": "GPL-3.0-or-later",
11
11
  "author": {
12
12
  "name": "Damian Tran",
13
- "email": "damianvtran@gmail.com",
13
+ "email": "damian@local-operator.com",
14
14
  "url": "https://github.com/damianvtran"
15
15
  },
16
16
  "contributors": [
17
17
  {
18
18
  "name": "Damian Tran",
19
- "email": "damianvtran@gmail.com",
19
+ "email": "damian@local-operator.com",
20
20
  "url": "https://github.com/damianvtran"
21
21
  }
22
22
  ],
@@ -211,15 +211,34 @@
211
211
  },
212
212
  "linux": {
213
213
  "icon": "resources/icon-512x512.png",
214
- "category": "Development",
215
- "target": ["deb", "AppImage", "rpm"],
214
+ "category": "ArtificialIntelligence",
215
+ "target": [
216
+ {
217
+ "target": "deb",
218
+ "arch": "x64"
219
+ },
220
+ {
221
+ "target": "AppImage",
222
+ "arch": "x64"
223
+ },
224
+ {
225
+ "target": "rpm",
226
+ "arch": "x64"
227
+ }
228
+ ],
216
229
  "artifactName": "${name}-${version}-${arch}.${ext}",
217
230
  "desktop": {
218
231
  "Name": "Local Operator",
219
232
  "Comment": "AI Agent Assistants On Your Device",
220
- "Categories": "Development;Utility"
233
+ "Categories": "ArtificialIntelligence"
221
234
  }
222
235
  },
236
+ "deb": {
237
+ "depends": ["python3.12-full", "python3.12-venv"]
238
+ },
239
+ "rpm": {
240
+ "depends": ["python3.12-full", "python3.12-venv"]
241
+ },
223
242
  "publish": {
224
243
  "provider": "github",
225
244
  "owner": "damianvtran",