toolpack-cli 1.0.0 → 1.0.1
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/README.md +1 -1
- package/dist/components/AppInfo.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ Run the application:
|
|
|
33
33
|
toolpack
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
_(Note: For cloud providers like OpenAI, Anthropic, or Gemini,
|
|
36
|
+
_(Note: For cloud providers like OpenAI, Anthropic, or Gemini, set the relevant environment variables—e.g., `TOOLPACK_OPENAI_KEY`, `TOOLPACK_ANTHROPIC_KEY`, `TOOLPACK_GEMINI_KEY`—in your shell before running `toolpack`.)_
|
|
37
37
|
|
|
38
38
|
## Features & Commands
|
|
39
39
|
|
|
@@ -5,6 +5,6 @@ export function AppInfo() {
|
|
|
5
5
|
const { theme } = useTheme();
|
|
6
6
|
// Hardcoded for now, mimicking original behavior
|
|
7
7
|
const currentPath = process.cwd();
|
|
8
|
-
const version = 'v1.0.
|
|
8
|
+
const version = 'v1.0.1';
|
|
9
9
|
return (_jsxs(Box, { flexDirection: "column", alignItems: "center", marginBottom: 2, children: [_jsx(Text, { color: theme.colors.textSecondary, children: currentPath }), _jsx(Text, { color: theme.colors.textSecondary, children: version })] }));
|
|
10
10
|
}
|