diff options
| author | T <t@tjp.lol> | 2026-05-25 12:19:50 -0700 |
|---|---|---|
| committer | T <t@tjp.lol> | 2026-05-25 12:39:24 -0700 |
| commit | e8272efd9f71ad27a0e62b6b3fa3d13e99a6736f (patch) | |
| tree | 16932c3f947aac908e15b77a71f9db3184e18a5c /src/main.zig | |
| parent | 52b2ca78aed7950af27d4865aee65da781514a99 (diff) | |
work
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 12 |
1 files changed, 6 insertions, 6 deletions
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; |
