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 +2 -1
- package/package.json +1 -1
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: "
|
|
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();
|