From e8272efd9f71ad27a0e62b6b3fa3d13e99a6736f Mon Sep 17 00:00:00 2001 From: T Date: Mon, 25 May 2026 12:19:50 -0700 Subject: work --- src/main.zig | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/main.zig b/src/main.zig index 1356bdc..4f9c490 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,12 +1,12 @@ const std = @import("std"); -const libpanto = @import("libpanto"); +const libpanto = @import("panto"); pub fn main() !void { - const config = libpanto.config.Config.fromEnv() catch |err| switch (err) { - error.MissingApiKey => { - std.debug.print("panto: PANTO_API_KEY environment variable is required\n", .{}); - return; - }, + const config = libpanto.config.Config{ + .api_style = .anthropic, + .api_key = "test", + .base_url = "https://api.anthropic.com", + .model = "claude-sonnet-4-20250514", }; var debug_allocator = std.heap.DebugAllocator(.{}).init; -- cgit v1.3