blink 0.1.15 → 0.1.16

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/dist/cli/index.js CHANGED
@@ -530,7 +530,7 @@ export default blink.agent({
530
530
 
531
531
  async sendMessages({ messages }) {
532
532
  return streamText({
533
- model: "anthropic/claude-sonnet-4",
533
+ model: "openai/gpt-oss-120b",
534
534
  system: \`You are a basic agent the user will customize.
535
535
 
536
536
  Suggest the user adds tools to the agent. Demonstrate your capabilities with the IP tool.\`,
@@ -538,6 +538,7 @@ Suggest the user adds tools to the agent. Demonstrate your capabilities with the
538
538
  tools: {
539
539
  get_ip_info: tool({
540
540
  description: "Get IP address information of the computer.",
541
+ inputSchema: z.object({}),
541
542
  execute: async () => {
542
543
  const response = await fetch("https://ipinfo.io/json");
543
544
  return response.json();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blink",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Blink is a JavaScript runtime for building and deploying AI agents.",
5
5
  "type": "module",
6
6
  "bin": {