1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
|
package panto
/*
#cgo CFLAGS: -I../libpanto-c/include
#cgo LDFLAGS: -L../libpanto-c/zig-out/lib -lpanto
#include <panto.h>
#include <stdlib.h>
extern PantoStatus pantoGoStoreCreate(void *ctx, PantoSession **out);
extern PantoStatus pantoGoStoreList(void *ctx, PantoSessionInfoList *out);
extern void pantoGoStoreFreeSessionInfos(void *ctx, PantoSessionInfoList infos);
extern PantoStatus pantoGoStoreResolve(void *ctx, PantoSlice id, PantoSessionResult *out);
extern PantoStatus pantoGoStoreLatest(void *ctx, PantoSessionResult *out);
extern PantoStatus pantoGoStoreLoad(void *ctx, PantoSlice id, PantoConversation **out);
extern PantoStatus pantoGoStoreAppendMessages(void *ctx, PantoSlice session_id, PantoPersistentMessage *messages, size_t len);
static PantoStatus pantoGoStoreAppendMessagesConst(void *ctx, PantoSlice session_id, const PantoPersistentMessage *messages, size_t len) {
return pantoGoStoreAppendMessages(ctx, session_id, (PantoPersistentMessage*)messages, len);
}
extern PantoStatus pantoGoToolInvoke(void *ctx, PantoSlice input, PantoResultParts *out);
extern PantoStatus pantoGoToolSourceInvokeBatch(void *ctx, PantoToolCall *calls, PantoToolCallResult *results, size_t len);
extern void pantoGoCallbackDestroy(void *ctx);
static PantoSessionStoreVTable panto_go_store_vtable = {
pantoGoStoreCreate,
pantoGoStoreList,
pantoGoStoreFreeSessionInfos,
pantoGoStoreResolve,
pantoGoStoreLatest,
pantoGoStoreLoad,
pantoGoStoreAppendMessagesConst,
pantoGoCallbackDestroy,
};
static PantoStatus panto_go_session_store_create(void *ctx, PantoSessionStore **out) {
return panto_session_store_create(ctx, &panto_go_store_vtable, out);
}
*/
import "C"
import (
"errors"
"fmt"
"iter"
"runtime"
"unsafe"
)
type (
APIStyle int
ReasoningEffort int
Thinking int
Effort int
MessageRole int
ContentBlockTag int
EventTag int
SystemMode int
)
// These enums mirror libpanto-c's C enums. Each constant wraps its C value
// (rather than a hand-kept iota sequence) so the Go side can never silently
// drift from the ABI: if a variant is inserted in panto.h, the values shift
// with it instead of desyncing. Keep one Go constant per C value.
const (
OpenAIChat APIStyle = APIStyle(C.PANTO_OPENAI_CHAT)
AnthropicMessages APIStyle = APIStyle(C.PANTO_ANTHROPIC_MESSAGES)
)
const (
ReasoningDefault ReasoningEffort = ReasoningEffort(C.PANTO_REASONING_DEFAULT)
ReasoningOff ReasoningEffort = ReasoningEffort(C.PANTO_REASONING_OFF)
ReasoningMinimal ReasoningEffort = ReasoningEffort(C.PANTO_REASONING_MINIMAL)
ReasoningLow ReasoningEffort = ReasoningEffort(C.PANTO_REASONING_LOW)
ReasoningMedium ReasoningEffort = ReasoningEffort(C.PANTO_REASONING_MEDIUM)
ReasoningHigh ReasoningEffort = ReasoningEffort(C.PANTO_REASONING_HIGH)
)
const (
ThinkingDisabled Thinking = Thinking(C.PANTO_THINKING_DISABLED)
ThinkingEnabled Thinking = Thinking(C.PANTO_THINKING_ENABLED)
ThinkingAdaptive Thinking = Thinking(C.PANTO_THINKING_ADAPTIVE)
)
const (
EffortLow Effort = Effort(C.PANTO_EFFORT_LOW)
EffortMedium Effort = Effort(C.PANTO_EFFORT_MEDIUM)
EffortHigh Effort = Effort(C.PANTO_EFFORT_HIGH)
EffortXHigh Effort = Effort(C.PANTO_EFFORT_XHIGH)
EffortMax Effort = Effort(C.PANTO_EFFORT_MAX)
)
const (
RoleSystem MessageRole = MessageRole(C.PANTO_ROLE_SYSTEM)
RoleUser MessageRole = MessageRole(C.PANTO_ROLE_USER)
RoleAssistant MessageRole = MessageRole(C.PANTO_ROLE_ASSISTANT)
)
const (
BlockText ContentBlockTag = ContentBlockTag(C.PANTO_BLOCK_TEXT)
BlockThinking ContentBlockTag = ContentBlockTag(C.PANTO_BLOCK_THINKING)
BlockToolUse ContentBlockTag = ContentBlockTag(C.PANTO_BLOCK_TOOL_USE)
BlockToolResult ContentBlockTag = ContentBlockTag(C.PANTO_BLOCK_TOOL_RESULT)
BlockSystem ContentBlockTag = ContentBlockTag(C.PANTO_BLOCK_SYSTEM)
BlockCompactionSummary ContentBlockTag = ContentBlockTag(C.PANTO_BLOCK_COMPACTION_SUMMARY)
)
const (
SystemAppend SystemMode = SystemMode(C.PANTO_SYSTEM_APPEND)
SystemReplace SystemMode = SystemMode(C.PANTO_SYSTEM_REPLACE)
)
const (
EventMessageStart EventTag = EventTag(C.PANTO_EVENT_MESSAGE_START)
EventBlockStart EventTag = EventTag(C.PANTO_EVENT_BLOCK_START)
EventToolDetails EventTag = EventTag(C.PANTO_EVENT_TOOL_DETAILS)
EventContentDelta EventTag = EventTag(C.PANTO_EVENT_CONTENT_DELTA)
EventBlockComplete EventTag = EventTag(C.PANTO_EVENT_BLOCK_COMPLETE)
EventMessageComplete EventTag = EventTag(C.PANTO_EVENT_MESSAGE_COMPLETE)
EventProviderRetry EventTag = EventTag(C.PANTO_EVENT_PROVIDER_RETRY)
EventToolDispatchStart EventTag = EventTag(C.PANTO_EVENT_TOOL_DISPATCH_START)
EventToolDispatchResult EventTag = EventTag(C.PANTO_EVENT_TOOL_DISPATCH_RESULT)
EventToolDispatchComplete EventTag = EventTag(C.PANTO_EVENT_TOOL_DISPATCH_COMPLETE)
EventTurnComplete EventTag = EventTag(C.PANTO_EVENT_TURN_COMPLETE)
)
type Config struct {
Provider ProviderConfig
Compaction CompactionConfig
Retry RetryConfig
}
type ProviderConfig struct {
OpenAIChat *OpenAIChatConfig
AnthropicMessages *AnthropicMessagesConfig
}
type OpenAIChatConfig struct {
APIKey, BaseURL, Model string
Reasoning ReasoningEffort
MaxTokens uint32
}
type AnthropicMessagesConfig struct {
APIKey, BaseURL, Model, APIVersion string
MaxTokens uint32
Thinking Thinking
Effort Effort
ThinkingBudgetTokens *uint32
ThinkingInterleaved bool
}
type CompactionConfig struct {
KeepVerbatim uint32
Model *ProviderConfig
CompactionPrompt *string
}
type RetryConfig struct {
MaxAttempts uint
InitialDelayMS, MaxDelayMS uint64
Multiplier float64
Jitter bool
}
type (
Usage struct{ Input, Output, CacheRead, CacheWrite, Reasoning uint64 }
CompactionResult struct {
Compacted bool
KeptTurns, SummarizedMessages uint
}
)
// Event is one streaming-progress notification from a Stream. The concrete
// type is one of the *Event structs below; type-switch on it, or branch on
// EventType() when only the kind matters. The terminal event of a turn is
// TurnCompleteEvent (EventType() == EventTurnComplete).
type Event interface {
// EventType reports the kind of event, mirroring the concrete type. It
// lets callers branch without a type switch (e.g. skip everything until
// EventMessageComplete) and is the cheap terminal check used by Iter.
EventType() EventTag
}
// MessageStartEvent: an assistant message began streaming.
type MessageStartEvent struct{ Role MessageRole }
// BlockStartEvent: a content block opened.
type BlockStartEvent struct {
BlockType ContentBlockTag
Index uint
}
// ToolDetailsEvent: the tool identity (id + name) for a ToolUse block resolved.
type ToolDetailsEvent struct {
Index uint
ID, Name string
}
// ContentDeltaEvent: streaming content for the open block (text/thinking/args).
type ContentDeltaEvent struct {
Index uint
Delta string
}
// BlockCompleteEvent: a content block closed.
type BlockCompleteEvent struct {
Index uint
BlockType ContentBlockTag
}
// MessageCompleteEvent: one assistant message finished streaming. The message
// is the current tail of Agent.Conversation(); MessageIndex is its index there
// and BlockCount its number of content blocks, so the full content can be read
// back via Agent.Conversation().Message(MessageIndex) without marshalling every
// block onto the event. Usage is the wire-reported token usage, if any.
type MessageCompleteEvent struct {
Role MessageRole
MessageIndex uint
BlockCount uint
Usage *Usage
}
// ProviderRetryEvent: a provider retry was scheduled before the next attempt.
type ProviderRetryEvent struct {
Attempt, MaxAttempts uint
DelayMS uint64
ErrorName string
StatusCode *uint16
RetryAfterMS *uint64
Message string
Compaction bool
}
// ToolDispatchStartEvent: the agent began dispatching the just-completed
// message's tool calls.
type ToolDispatchStartEvent struct{ Count uint }
// ToolDispatchResultEvent: a single tool's result became available, before the
// aggregate ToolDispatchCompleteEvent. MessageIndex is the index of the
// ToolResult-carrying message in the conversation.
type ToolDispatchResultEvent struct{ MessageIndex uint }
// ToolDispatchCompleteEvent: the agent appended a user(ToolResult) message.
type ToolDispatchCompleteEvent struct{ MessageIndex uint }
// TurnCompleteEvent: the turn terminal. Emitted exactly once; every Next after
// it returns nil.
type TurnCompleteEvent struct{}
func (MessageStartEvent) EventType() EventTag { return EventMessageStart }
func (BlockStartEvent) EventType() EventTag { return EventBlockStart }
func (ToolDetailsEvent) EventType() EventTag { return EventToolDetails }
func (ContentDeltaEvent) EventType() EventTag { return EventContentDelta }
func (BlockCompleteEvent) EventType() EventTag { return EventBlockComplete }
func (MessageCompleteEvent) EventType() EventTag { return EventMessageComplete }
func (ProviderRetryEvent) EventType() EventTag { return EventProviderRetry }
func (ToolDispatchStartEvent) EventType() EventTag { return EventToolDispatchStart }
func (ToolDispatchResultEvent) EventType() EventTag { return EventToolDispatchResult }
func (ToolDispatchCompleteEvent) EventType() EventTag { return EventToolDispatchComplete }
func (TurnCompleteEvent) EventType() EventTag { return EventTurnComplete }
type (
Agent struct {
ptr *C.PantoAgent
retainedSession *Session
retainedConv *Conversation
retainedStoreCloser func()
}
Stream struct {
ptr *C.PantoStream
err error
done bool
}
)
type Conversation struct {
ptr *C.PantoConversation
owned bool
}
type (
Session struct{ ptr *C.PantoSession }
SessionInfo struct {
ID, Created, Modified, LastUserMessage, BaseURL, Model string
MessageCount uint
APIStyle APIStyle
Reasoning ReasoningEffort
}
)
type SessionStore interface {
Create() (*Session, error)
List() ([]SessionInfo, error)
Resolve(id string) (*Session, bool, error)
Latest() (*Session, bool, error)
Load(id string) (*Conversation, bool, error)
AppendMessages(sessionID string, messages []PersistentMessage) error
}
type (
cSessionStore interface{ cptr() *C.PantoSessionStore }
NullStore struct{ ptr *C.PantoSessionStore }
FileSystemJSONLStore struct{ ptr *C.PantoSessionStore }
GoSessionStore struct {
ptr *C.PantoSessionStore
impl SessionStore
}
)
type PersistentMessage struct {
Role MessageRole
Usage *Usage
Metadata string
Content []OwnedContentBlock
// Per-message wire identity: the provider that produced this message. May
// drift within a conversation (compaction on another model, mid-chat
// switch), so persist these per message rather than from static config.
APIStyle APIStyle
BaseURL string
Model string
Reasoning ReasoningEffort
}
type OwnedMessage struct {
Role MessageRole
Usage *Usage
Metadata string
Content []OwnedContentBlock
}
type OwnedContentBlock struct {
Tag ContentBlockTag
Text string
ToolID string
ToolName string
IsError bool
SystemMode SystemMode
// Thinking-block signature provenance. Populated for blocks delivered to
// AppendMessages; empty otherwise. To replay a thinking block faithfully,
// persist all four and feed them back via ThinkingBlock — Anthropic drops
// a thinking block whose signature lacks a matching origin.
ThinkingSignature string
ThinkingSignatureStyle APIStyle
ThinkingSignatureBaseURL string
ThinkingSignatureModel string
}
type cStrings []*C.char
func (cs cStrings) free() {
for _, s := range cs {
C.free(unsafe.Pointer(s))
}
}
func Init() { C.panto_init() }
func Deinit() { C.panto_deinit() }
func lastError() error {
s := C.panto_last_error()
if s.ptr == nil || s.len == 0 {
return errors.New("libpanto error")
}
return errors.New(C.GoStringN((*C.char)(unsafe.Pointer(s.ptr)), C.int(s.len)))
}
func NewNullStore() (*NullStore, error) {
var out *C.PantoSessionStore
if C.panto_null_store_create(&out) != C.PANTO_OK {
return nil, lastError()
}
s := &NullStore{out}
runtime.SetFinalizer(s, (*NullStore).Close)
return s, nil
}
func (s *NullStore) cptr() *C.PantoSessionStore { return s.ptr }
func (s *NullStore) Create() (*Session, error) { return CreateSession(s) }
func (s *NullStore) List() ([]SessionInfo, error) { return ListSessions(s) }
func (s *NullStore) Resolve(id string) (*Session, bool, error) { return ResolveSession(s, id) }
func (s *NullStore) Latest() (*Session, bool, error) { return LatestSession(s) }
func (s *NullStore) Load(id string) (*Conversation, bool, error) {
sess, ok, err := ResolveSession(s, id)
if err != nil || !ok {
return nil, ok, err
}
c, err := sess.Load()
return c, err == nil, err
}
func (s *NullStore) AppendMessages(sessionID string, messages []PersistentMessage) error { return nil }
func (s *NullStore) Close() {
if s != nil && s.ptr != nil {
C.panto_session_store_destroy(s.ptr)
s.ptr = nil
}
}
func NewFileSystemJSONLStore(dir, metadata string) (*FileSystemJSONLStore, error) {
cd := C.CString(dir)
defer C.free(unsafe.Pointer(cd))
cm := C.CString(metadata)
defer C.free(unsafe.Pointer(cm))
var out *C.PantoSessionStore
if C.panto_file_system_jsonl_store_create(cd, cm, &out) != C.PANTO_OK {
return nil, lastError()
}
s := &FileSystemJSONLStore{out}
runtime.SetFinalizer(s, (*FileSystemJSONLStore).Close)
return s, nil
}
func (s *FileSystemJSONLStore) cptr() *C.PantoSessionStore { return s.ptr }
func (s *FileSystemJSONLStore) Create() (*Session, error) { return CreateSession(s) }
func (s *FileSystemJSONLStore) List() ([]SessionInfo, error) { return ListSessions(s) }
func (s *FileSystemJSONLStore) Resolve(id string) (*Session, bool, error) {
return ResolveSession(s, id)
}
func (s *FileSystemJSONLStore) Latest() (*Session, bool, error) { return LatestSession(s) }
func (s *FileSystemJSONLStore) Load(id string) (*Conversation, bool, error) {
sess, ok, err := ResolveSession(s, id)
if err != nil || !ok {
return nil, ok, err
}
c, err := sess.Load()
return c, err == nil, err
}
func (s *FileSystemJSONLStore) AppendMessages(sessionID string, messages []PersistentMessage) error {
return nil
}
func (s *FileSystemJSONLStore) Close() {
if s != nil && s.ptr != nil {
C.panto_session_store_destroy(s.ptr)
s.ptr = nil
}
}
func CreateSession(store cSessionStore) (*Session, error) {
var out *C.PantoSession
if C.panto_session_store_create_session(store.cptr(), &out) != C.PANTO_OK {
return nil, lastError()
}
s := &Session{out}
runtime.SetFinalizer(s, (*Session).Close)
return s, nil
}
// NewSession mints a *Session bound to store, carrying info (at least a
// store-assigned ID). Unlike CreateSession/ResolveSession/LatestSession it does
// NOT dispatch into the store's vtable, so a custom SessionStore can call it
// from its own Create/Resolve/Latest to build the *Session it must return
// without recursing back into itself. The session's bound store is used for
// later load/append; pass the store the session belongs to.
func NewSession(store cSessionStore, info SessionInfo) (*Session, error) {
ci := cSessionInfo(info)
defer freeCSessionInfo(ci)
var out *C.PantoSession
if C.panto_session_create(store.cptr(), ci, &out) != C.PANTO_OK {
return nil, lastError()
}
s := &Session{out}
runtime.SetFinalizer(s, (*Session).Close)
return s, nil
}
// NewNullSession mints a standalone *Session backed by a null store — load and
// append are no-ops. Useful as a placeholder when a store performs its own
// persistence outside the session's bound store.
func NewNullSession() (*Session, error) {
var out *C.PantoSession
if C.panto_session_create_null(&out) != C.PANTO_OK {
return nil, lastError()
}
s := &Session{out}
runtime.SetFinalizer(s, (*Session).Close)
return s, nil
}
func ResolveSession(store cSessionStore, id string) (*Session, bool, error) {
cid := C.CString(id)
defer C.free(unsafe.Pointer(cid))
var r C.PantoSessionResult
if C.panto_session_store_resolve(store.cptr(), cid, &r) != C.PANTO_OK {
return nil, false, lastError()
}
if !bool(r.found) {
return nil, false, nil
}
s := &Session{r.session}
runtime.SetFinalizer(s, (*Session).Close)
return s, true, nil
}
func LatestSession(store cSessionStore) (*Session, bool, error) {
var r C.PantoSessionResult
if C.panto_session_store_latest(store.cptr(), &r) != C.PANTO_OK {
return nil, false, lastError()
}
if !bool(r.found) {
return nil, false, nil
}
s := &Session{r.session}
runtime.SetFinalizer(s, (*Session).Close)
return s, true, nil
}
func ListSessions(store cSessionStore) ([]SessionInfo, error) {
var l C.PantoSessionInfoList
if C.panto_session_store_list(store.cptr(), &l) != C.PANTO_OK {
return nil, lastError()
}
defer C.panto_session_info_list_destroy(l)
out := make([]SessionInfo, int(l.len))
if l.ptr != nil {
xs := unsafe.Slice(l.ptr, int(l.len))
for i, x := range xs {
out[i] = sessionInfo(x)
}
}
return out, nil
}
func (s *Session) Close() {
if s != nil && s.ptr != nil {
C.panto_session_destroy(s.ptr)
s.ptr = nil
}
}
func (s *Session) Load() (*Conversation, error) {
var out *C.PantoConversation
if C.panto_session_load(s.ptr, &out) != C.PANTO_OK {
return nil, lastError()
}
c := &Conversation{ptr: out, owned: true}
runtime.SetFinalizer(c, (*Conversation).Close)
return c, nil
}
func NewConversation() (*Conversation, error) {
var out *C.PantoConversation
if C.panto_conversation_create(&out) != C.PANTO_OK {
return nil, lastError()
}
c := &Conversation{ptr: out, owned: true}
runtime.SetFinalizer(c, (*Conversation).Close)
return c, nil
}
func (c *Conversation) Close() {
if c != nil && c.owned && c.ptr != nil {
C.panto_conversation_destroy(c.ptr)
c.ptr = nil
}
}
func (c *Conversation) MessageCount() uint { return uint(C.panto_conversation_message_count(c.ptr)) }
func (c *Conversation) Message(i uint) Message { return Message{conv: c, index: i} }
func (c *Conversation) AddSystemMessage(text string) error {
ct := C.CString(text)
defer C.free(unsafe.Pointer(ct))
if C.panto_conversation_add_system_message(c.ptr, ct) != C.PANTO_OK {
return lastError()
}
return nil
}
func (c *Conversation) ReplaceSystemMessage(text string) error {
ct := C.CString(text)
defer C.free(unsafe.Pointer(ct))
if C.panto_conversation_replace_system_message(c.ptr, ct) != C.PANTO_OK {
return lastError()
}
return nil
}
func (c *Conversation) AddUserText(text string) error {
ct := C.CString(text)
defer C.free(unsafe.Pointer(ct))
if C.panto_conversation_add_user_text(c.ptr, ct) != C.PANTO_OK {
return lastError()
}
return nil
}
func (c *Conversation) AddAssistantText(text string, u *Usage) error {
ct := C.CString(text)
defer C.free(unsafe.Pointer(ct))
var cu C.PantoUsage
has := false
if u != nil {
cu = cUsage(*u)
has = true
}
if C.panto_conversation_add_assistant_text(c.ptr, ct, C.bool(has), cu) != C.PANTO_OK {
return lastError()
}
return nil
}
func (c *Conversation) AddCompactionSummary(text string) error {
ct := C.CString(text)
defer C.free(unsafe.Pointer(ct))
if C.panto_conversation_add_compaction_summary(c.ptr, ct) != C.PANTO_OK {
return lastError()
}
return nil
}
// Block is one immutable content block — text, thinking, tool use, tool
// result, or system text. Build it with the constructors below (TextBlock,
// ToolResultBlock, …) and assemble blocks into a message with UserMessage /
// AssistantMessage. This is the single content-block vocabulary used both to
// open a turn (Agent.Run) and to rebuild a persisted message for resumption
// (Conversation.AddMessage).
type Block struct {
tag ContentBlockTag
text string
toolID string
toolName string
input string
isError bool
systemMode SystemMode
thinkingSignature string
thinkingSigStyle APIStyle
thinkingSigBaseURL string
thinkingSigModel string
}
// TextBlock is a plain text block.
func TextBlock(text string) Block { return Block{tag: BlockText, text: text} }
// ThinkingBlock is an assistant reasoning block. signature/baseURL/model carry
// the signature provenance (see OwnedContentBlock); pass "" for signature when
// the provider emitted none, in which case style/baseURL/model are ignored.
func ThinkingBlock(text, signature string, style APIStyle, baseURL, model string) Block {
return Block{tag: BlockThinking, text: text, thinkingSignature: signature, thinkingSigStyle: style, thinkingSigBaseURL: baseURL, thinkingSigModel: model}
}
// ToolUseBlock is an assistant tool call.
func ToolUseBlock(id, name, input string) Block {
return Block{tag: BlockToolUse, toolID: id, toolName: name, input: input}
}
// ToolResultBlock is a user-role tool result keyed by the originating tool-use
// id. Used to resume a turn whose tool calls the embedder handled itself.
func ToolResultBlock(toolUseID, text string, isError bool) Block {
return Block{tag: BlockToolResult, toolID: toolUseID, text: text, isError: isError}
}
// SystemBlock is a system-prompt block (append or replace mode).
func SystemBlock(text string, mode SystemMode) Block {
return Block{tag: BlockSystem, text: text, systemMode: mode}
}
// MessageIdentity is the wire identity (provider style/baseURL/model +
// reasoning) that produced a message. Attach it to an InputMessage when
// rebuilding a conversation for resumption: it is the per-message source of
// truth for replaying thinking signatures and is preserved through compaction,
// so a kept-verbatim turn is not re-stamped with the compaction model. Set it
// from a PersistentMessage's APIStyle/BaseURL/Model/Reasoning.
type MessageIdentity struct {
APIStyle APIStyle
BaseURL string
Model string
Reasoning ReasoningEffort
}
// InputMessage is one role-tagged message assembled from value Blocks, with
// optional usage and wire identity. Build it with UserMessage / AssistantMessage
// (or set the fields directly), then pass it to Agent.Run (user role) or
// Conversation.AddMessage (any role, for replay).
type InputMessage struct {
Role MessageRole
Usage *Usage
Identity *MessageIdentity
Blocks []Block
}
// UserMessage assembles a user-role message — the argument to Agent.Run. A
// plain chat turn is a single TextBlock; a turn resuming after embedder-handled
// tool calls is one or more ToolResultBlocks.
func UserMessage(blocks ...Block) InputMessage {
return InputMessage{Role: RoleUser, Blocks: blocks}
}
// AssistantMessage assembles an assistant-role message with optional usage —
// used to rebuild a persisted turn via Conversation.AddMessage.
func AssistantMessage(usage *Usage, blocks ...Block) InputMessage {
return InputMessage{Role: RoleAssistant, Usage: usage, Blocks: blocks}
}
// WithIdentity returns a copy of the message tagged with the given wire
// identity (see MessageIdentity).
func (m InputMessage) WithIdentity(id MessageIdentity) InputMessage {
m.Identity = &id
return m
}
// buildCBuilder materializes an InputMessage as a transient C message builder,
// pushing each block in order and attaching identity if present. The returned
// builder is owned by the caller and must be consumed by exactly one of
// panto_agent_run / panto_conversation_add_message (both of which destroy it).
// On error it is destroyed here and nil is returned.
func buildCBuilder(msg InputMessage) (*C.PantoMessageBuilder, error) {
p := C.panto_message_builder_create(C.PantoMessageRole(msg.Role))
if p == nil {
return nil, lastError()
}
committed := false
defer func() {
if !committed {
C.panto_message_builder_destroy(p)
}
}()
if msg.Identity != nil {
cb := C.CString(msg.Identity.BaseURL)
defer C.free(unsafe.Pointer(cb))
cm := C.CString(msg.Identity.Model)
defer C.free(unsafe.Pointer(cm))
if C.panto_message_builder_set_identity(p, C.PantoAPIStyle(msg.Identity.APIStyle), cb, cm, C.PantoReasoningEffort(msg.Identity.Reasoning)) != C.PANTO_OK {
return nil, lastError()
}
}
for _, b := range msg.Blocks {
if err := pushBlock(p, b); err != nil {
return nil, err
}
}
committed = true
return p, nil
}
func pushBlock(p *C.PantoMessageBuilder, b Block) error {
switch b.tag {
case BlockText:
ct := C.CString(b.text)
defer C.free(unsafe.Pointer(ct))
if C.panto_message_builder_add_text(p, ct) != C.PANTO_OK {
return lastError()
}
case BlockThinking:
ct := C.CString(b.text)
defer C.free(unsafe.Pointer(ct))
cs := C.CString(b.thinkingSignature)
defer C.free(unsafe.Pointer(cs))
cb := C.CString(b.thinkingSigBaseURL)
defer C.free(unsafe.Pointer(cb))
cm := C.CString(b.thinkingSigModel)
defer C.free(unsafe.Pointer(cm))
if C.panto_message_builder_add_thinking(p, ct, cs, C.PantoAPIStyle(b.thinkingSigStyle), cb, cm) != C.PANTO_OK {
return lastError()
}
case BlockToolUse:
cid := C.CString(b.toolID)
defer C.free(unsafe.Pointer(cid))
cn := C.CString(b.toolName)
defer C.free(unsafe.Pointer(cn))
ci := C.CString(b.input)
defer C.free(unsafe.Pointer(ci))
if C.panto_message_builder_add_tool_use(p, cid, cn, ci) != C.PANTO_OK {
return lastError()
}
case BlockToolResult:
cid := C.CString(b.toolID)
defer C.free(unsafe.Pointer(cid))
ct := C.CString(b.text)
defer C.free(unsafe.Pointer(ct))
if C.panto_message_builder_add_tool_result(p, cid, ct, C.bool(b.isError)) != C.PANTO_OK {
return lastError()
}
case BlockSystem:
ct := C.CString(b.text)
defer C.free(unsafe.Pointer(ct))
if C.panto_message_builder_add_system(p, ct, C.PantoSystemMode(b.systemMode)) != C.PANTO_OK {
return lastError()
}
default:
return fmt.Errorf("unknown content block tag %d", int(b.tag))
}
return nil
}
// AddMessage commits msg as one message of msg.Role (with its optional usage
// and identity) — the block-level path for rebuilding a persisted conversation
// containing tool calls or thinking that the text-only AddUserText/
// AddAssistantText cannot.
func (c *Conversation) AddMessage(msg InputMessage) error {
b, err := buildCBuilder(msg)
if err != nil {
return err
}
var cu C.PantoUsage
has := false
if msg.Usage != nil {
cu = cUsage(*msg.Usage)
has = true
}
// panto_conversation_add_message consumes (destroys) the builder on every
// outcome, so there is nothing to free here afterwards.
if C.panto_conversation_add_message(c.ptr, b, C.bool(has), cu) != C.PANTO_OK {
return lastError()
}
return nil
}
type Message struct {
conv *Conversation
index uint
}
func (m Message) Role() MessageRole {
return MessageRole(C.panto_conversation_message_role(m.conv.ptr, C.size_t(m.index)))
}
func (m Message) Usage() *Usage {
if !bool(C.panto_conversation_message_has_usage(m.conv.ptr, C.size_t(m.index))) {
return nil
}
u := usage(C.panto_conversation_message_usage(m.conv.ptr, C.size_t(m.index)))
return &u
}
func (m Message) BlockCount() uint {
return uint(C.panto_conversation_message_block_count(m.conv.ptr, C.size_t(m.index)))
}
func (m Message) Block(i uint) ContentBlock {
return ContentBlock{conv: m.conv, msg: m.index, index: i}
}
func (m Message) Snapshot() OwnedMessage {
blocks := make([]OwnedContentBlock, m.BlockCount())
for i := range blocks {
blocks[i] = m.Block(uint(i)).Snapshot()
}
return OwnedMessage{Role: m.Role(), Usage: m.Usage(), Content: blocks}
}
type ContentBlock struct {
conv *Conversation
msg, index uint
}
func (b ContentBlock) Tag() ContentBlockTag {
return ContentBlockTag(C.panto_conversation_block_tag(b.conv.ptr, C.size_t(b.msg), C.size_t(b.index)))
}
func (b ContentBlock) Text() string {
return goSlice(C.panto_conversation_block_text(b.conv.ptr, C.size_t(b.msg), C.size_t(b.index)))
}
func (b ContentBlock) ToolID() string {
return goSlice(C.panto_conversation_block_tool_id(b.conv.ptr, C.size_t(b.msg), C.size_t(b.index)))
}
func (b ContentBlock) ToolName() string {
return goSlice(C.panto_conversation_block_tool_name(b.conv.ptr, C.size_t(b.msg), C.size_t(b.index)))
}
func (b ContentBlock) ToolResultIsError() bool {
return bool(C.panto_conversation_block_tool_result_is_error(b.conv.ptr, C.size_t(b.msg), C.size_t(b.index)))
}
func (b ContentBlock) SystemMode() SystemMode {
return SystemMode(C.panto_conversation_block_system_mode(b.conv.ptr, C.size_t(b.msg), C.size_t(b.index)))
}
func (b ContentBlock) Snapshot() OwnedContentBlock {
return OwnedContentBlock{
Tag: b.Tag(),
Text: b.Text(),
ToolID: b.ToolID(),
ToolName: b.ToolName(),
IsError: b.ToolResultIsError(),
SystemMode: b.SystemMode(),
}
}
func NewAgent(cfg Config) (*Agent, error) {
return NewAgentWithSession(cfg, nil, nil)
}
func NewAgentWithSession(cfg Config, session *Session, conv *Conversation) (*Agent, error) {
ccfg, strings, err := cfg.c()
if err != nil {
return nil, err
}
defer strings.free()
var csession *C.PantoSession
if session != nil {
csession = session.ptr
runtime.SetFinalizer(session, nil)
}
var cconv *C.PantoConversation
if conv != nil {
cconv = conv.ptr
conv.owned = false
runtime.SetFinalizer(conv, nil)
}
var out *C.PantoAgent
if C.panto_agent_create(&ccfg, csession, cconv, &out) != C.PANTO_OK {
return nil, lastError()
}
a := &Agent{ptr: out, retainedSession: session, retainedConv: conv}
runtime.SetFinalizer(a, (*Agent).Close)
return a, nil
}
func (a *Agent) Close() {
if a != nil && a.ptr != nil {
C.panto_agent_destroy(a.ptr)
a.ptr = nil
}
if a != nil {
if a.retainedSession != nil {
a.retainedSession.ptr = nil
a.retainedSession = nil
}
if a.retainedConv != nil {
a.retainedConv.ptr = nil
a.retainedConv = nil
}
if a.retainedStoreCloser != nil {
a.retainedStoreCloser()
a.retainedStoreCloser = nil
}
}
}
func (a *Agent) SessionID() string { return goSlice(C.panto_agent_session_id(a.ptr)) }
func (a *Agent) Conversation() *Conversation {
return &Conversation{ptr: C.panto_agent_conversation(a.ptr), owned: false}
}
func (a *Agent) SetConfig(cfg Config) error {
ccfg, strings, err := cfg.c()
if err != nil {
return err
}
defer strings.free()
if C.panto_agent_set_config(a.ptr, &ccfg) != C.PANTO_OK {
return lastError()
}
return nil
}
func (a *Agent) Compact(overrideSystemPrompt, extraInstructions *string) (CompactionResult, error) {
var co, ce *C.char
if overrideSystemPrompt != nil {
co = C.CString(*overrideSystemPrompt)
defer C.free(unsafe.Pointer(co))
}
if extraInstructions != nil {
ce = C.CString(*extraInstructions)
defer C.free(unsafe.Pointer(ce))
}
var out C.PantoCompactionResult
if C.panto_agent_compact(a.ptr, co, ce, &out) != C.PANTO_OK {
return CompactionResult{}, lastError()
}
return CompactionResult{
Compacted: bool(out.compacted),
KeptTurns: uint(out.kept_turns),
SummarizedMessages: uint(out.summarized_messages),
}, nil
}
// Run opens a turn from a user-role message and returns a resumable Stream.
// Build the message with UserMessage: a single TextBlock for a plain prompt,
// or ToolResultBlocks to resume a turn whose tool calls the embedder handled
// itself after breaking out of a prior stream. The message must be user-role.
func (a *Agent) Run(msg InputMessage) (*Stream, error) {
if msg.Role != RoleUser {
return nil, fmt.Errorf("Run requires a user-role message, got role %d", int(msg.Role))
}
b, err := buildCBuilder(msg)
if err != nil {
return nil, err
}
// panto_agent_run consumes (destroys) the builder on every outcome.
var out *C.PantoStream
if C.panto_agent_run(a.ptr, b, &out) != C.PANTO_OK {
return nil, lastError()
}
s := &Stream{ptr: out}
runtime.SetFinalizer(s, (*Stream).Close)
return s, nil
}
func (a *Agent) AddSystemMessage(text string) error {
ct := C.CString(text)
defer C.free(unsafe.Pointer(ct))
if C.panto_agent_add_system_message(a.ptr, ct) != C.PANTO_OK {
return lastError()
}
return nil
}
func (a *Agent) SetSystemPrompt(text string) error {
ct := C.CString(text)
defer C.free(unsafe.Pointer(ct))
if C.panto_agent_set_system_prompt(a.ptr, ct) != C.PANTO_OK {
return lastError()
}
return nil
}
func (s *Stream) Close() {
if s != nil && s.ptr != nil {
C.panto_stream_destroy(s.ptr)
s.ptr = nil
}
}
// Reopen resets a failed stream back to its turn-open boundary so the caller
// can resume Next() after changing the agent config (e.g. catch a terminal
// bad-request, swap the provider config via Agent.SetConfig, and retry the
// SAME turn without re-appending the user message). It is valid only on a
// stream whose Next() has surfaced a terminal error; otherwise it returns an
// error. On success the stream's local error/done state is cleared so the
// iteration can continue.
func (s *Stream) Reopen() error {
if s == nil || s.ptr == nil {
return fmt.Errorf("reopen on a closed stream")
}
if C.panto_stream_reopen(s.ptr) != C.PANTO_OK {
return lastError()
}
s.err = nil
s.done = false
return nil
}
func (s *Stream) Next() (Event, bool, error) {
if s.err != nil {
return nil, false, s.err
}
if s.done {
return nil, false, nil
}
var cev C.PantoEvent
status := C.panto_stream_next(s.ptr, &cev)
switch status {
case C.PANTO_NEXT_EVENT:
defer C.panto_event_free(&cev)
ev := marshalEvent(&cev)
if ev.EventType() == EventTurnComplete {
s.done = true
}
return ev, true, nil
case C.PANTO_NEXT_DONE:
s.done = true
return nil, false, nil
case C.PANTO_NEXT_ERROR:
s.err = lastError()
return nil, false, s.err
default:
s.err = fmt.Errorf("unknown panto next status %d", int(status))
return nil, false, s.err
}
}
func (s *Stream) Err() error { return s.err }
func (s *Stream) Iter() iter.Seq[Event] {
return func(yield func(Event) bool) {
for {
ev, ok, err := s.Next()
if err != nil || !ok {
return
}
if !yield(ev) {
return
}
if ev.EventType() == EventTurnComplete {
return
}
}
}
}
func (s *Stream) Chan() <-chan Event {
ch := make(chan Event)
go func() {
defer close(ch)
for ev := range s.Iter() {
ch <- ev
}
}()
return ch
}
func (cfg Config) c() (C.PantoConfig, cStrings, error) {
var cs cStrings
provider, pstrings, err := cfg.Provider.c()
cs = append(cs, pstrings...)
if err != nil {
cs.free()
return C.PantoConfig{}, nil, err
}
out := C.PantoConfig{provider: provider}
out.compaction.keep_verbatim = C.uint32_t(cfg.Compaction.KeepVerbatim)
if cfg.Compaction.Model != nil {
m, ms, err := cfg.Compaction.Model.c()
cs = append(cs, ms...)
if err != nil {
cs.free()
return C.PantoConfig{}, nil, err
}
out.compaction.has_model = true
out.compaction.model = m
}
if cfg.Compaction.CompactionPrompt != nil {
c := C.CString(*cfg.Compaction.CompactionPrompt)
cs = append(cs, c)
out.compaction.has_compaction_prompt = true
out.compaction.compaction_prompt = c
}
out.retry.max_attempts = C.size_t(cfg.Retry.MaxAttempts)
out.retry.initial_delay_ms = C.uint64_t(cfg.Retry.InitialDelayMS)
out.retry.max_delay_ms = C.uint64_t(cfg.Retry.MaxDelayMS)
out.retry.multiplier = C.double(cfg.Retry.Multiplier)
out.retry.jitter = C.bool(cfg.Retry.Jitter)
return out, cs, nil
}
func (p ProviderConfig) c() (C.PantoProviderConfig, cStrings, error) {
var out C.PantoProviderConfig
var cs cStrings
if p.OpenAIChat != nil == (p.AnthropicMessages != nil) {
return out, nil, errors.New("exactly one provider config must be set")
}
if p.OpenAIChat != nil {
out.tag = C.PANTO_OPENAI_CHAT
setOpenAI(&out, p.OpenAIChat, &cs)
return out, cs, nil
}
out.tag = C.PANTO_ANTHROPIC_MESSAGES
setAnthropic(&out, p.AnthropicMessages, &cs)
return out, cs, nil
}
func setOpenAI(out *C.PantoProviderConfig, cfg *OpenAIChatConfig, cs *cStrings) {
apiKey, baseURL, model := C.CString(cfg.APIKey), C.CString(cfg.BaseURL), C.CString(cfg.Model)
*cs = append(*cs, apiKey, baseURL, model)
c := (*C.PantoOpenAIChatConfig)(unsafe.Pointer(&out.data[0]))
c.api_key = apiKey
c.base_url = baseURL
c.model = model
c.reasoning = C.PantoReasoningEffort(cfg.Reasoning)
c.max_tokens = C.uint32_t(cfg.MaxTokens)
}
func setAnthropic(out *C.PantoProviderConfig, cfg *AnthropicMessagesConfig, cs *cStrings) {
apiKey, baseURL, model, ver := C.CString(cfg.APIKey), C.CString(cfg.BaseURL), C.CString(cfg.Model), C.CString(cfg.APIVersion)
*cs = append(*cs, apiKey, baseURL, model, ver)
c := (*C.PantoAnthropicMessagesConfig)(unsafe.Pointer(&out.data[0]))
c.api_key = apiKey
c.base_url = baseURL
c.model = model
c.api_version = ver
c.max_tokens = C.uint32_t(cfg.MaxTokens)
c.thinking = C.PantoThinking(cfg.Thinking)
c.effort = C.PantoEffort(cfg.Effort)
c.thinking_interleaved = C.bool(cfg.ThinkingInterleaved)
if cfg.ThinkingBudgetTokens != nil {
c.has_thinking_budget_tokens = true
c.thinking_budget_tokens = C.uint32_t(*cfg.ThinkingBudgetTokens)
}
}
func marshalEvent(cev *C.PantoEvent) Event {
switch cev.tag {
case C.PANTO_EVENT_MESSAGE_START:
return MessageStartEvent{Role: MessageRole(*(*C.PantoMessageRole)(unsafe.Pointer(&cev.data[0])))}
case C.PANTO_EVENT_BLOCK_START:
b := (*C.PantoBlockStart)(unsafe.Pointer(&cev.data[0]))
return BlockStartEvent{BlockType: ContentBlockTag(b.block_type), Index: uint(b.index)}
case C.PANTO_EVENT_TOOL_DETAILS:
t := (*C.PantoToolDetails)(unsafe.Pointer(&cev.data[0]))
return ToolDetailsEvent{Index: uint(t.index), ID: goSlice(t.id), Name: goSlice(t.name)}
case C.PANTO_EVENT_CONTENT_DELTA:
d := (*C.PantoContentDelta)(unsafe.Pointer(&cev.data[0]))
return ContentDeltaEvent{Index: uint(d.index), Delta: goSlice(d.delta)}
case C.PANTO_EVENT_BLOCK_COMPLETE:
b := (*C.PantoBlockComplete)(unsafe.Pointer(&cev.data[0]))
return BlockCompleteEvent{Index: uint(b.index), BlockType: ContentBlockTag(b.block_type)}
case C.PANTO_EVENT_MESSAGE_COMPLETE:
m := (*C.PantoMessageComplete)(unsafe.Pointer(&cev.data[0]))
ev := MessageCompleteEvent{
Role: MessageRole(m.role),
MessageIndex: uint(m.message_index),
BlockCount: uint(m.block_count),
}
if m.has_usage {
u := usage(m.usage)
ev.Usage = &u
}
return ev
case C.PANTO_EVENT_PROVIDER_RETRY:
r := (*C.PantoProviderRetry)(unsafe.Pointer(&cev.data[0]))
ev := ProviderRetryEvent{
Attempt: uint(r.attempt),
MaxAttempts: uint(r.max_attempts),
DelayMS: uint64(r.delay_ms),
ErrorName: goSlice(r.error_name),
Message: goSlice(r.message),
Compaction: bool(r.compaction),
}
if r.has_status_code {
v := uint16(r.status_code)
ev.StatusCode = &v
}
if r.has_retry_after_ms {
v := uint64(r.retry_after_ms)
ev.RetryAfterMS = &v
}
return ev
case C.PANTO_EVENT_TOOL_DISPATCH_START:
t := (*C.PantoToolDispatchStart)(unsafe.Pointer(&cev.data[0]))
return ToolDispatchStartEvent{Count: uint(t.count)}
case C.PANTO_EVENT_TOOL_DISPATCH_RESULT:
t := (*C.PantoToolDispatchComplete)(unsafe.Pointer(&cev.data[0]))
return ToolDispatchResultEvent{MessageIndex: uint(t.message_index)}
case C.PANTO_EVENT_TOOL_DISPATCH_COMPLETE:
t := (*C.PantoToolDispatchComplete)(unsafe.Pointer(&cev.data[0]))
return ToolDispatchCompleteEvent{MessageIndex: uint(t.message_index)}
case C.PANTO_EVENT_TURN_COMPLETE:
return TurnCompleteEvent{}
}
return TurnCompleteEvent{}
}
func goSlice(s C.PantoSlice) string {
if s.ptr == nil || s.len == 0 {
return ""
}
return C.GoStringN((*C.char)(unsafe.Pointer(s.ptr)), C.int(s.len))
}
func usage(u C.PantoUsage) Usage {
return Usage{
Input: uint64(u.input),
Output: uint64(u.output),
CacheRead: uint64(u.cache_read),
CacheWrite: uint64(u.cache_write),
Reasoning: uint64(u.reasoning),
}
}
func cUsage(u Usage) C.PantoUsage {
return C.PantoUsage{
input: C.uint64_t(u.Input),
output: C.uint64_t(u.Output),
cache_read: C.uint64_t(u.CacheRead),
cache_write: C.uint64_t(u.CacheWrite),
reasoning: C.uint64_t(u.Reasoning),
}
}
func sessionInfo(i C.PantoSessionInfo) SessionInfo {
return SessionInfo{
ID: goSlice(i.id),
Created: goSlice(i.created),
Modified: goSlice(i.modified),
LastUserMessage: goSlice(i.last_user_message),
BaseURL: goSlice(i.base_url),
Model: goSlice(i.model),
MessageCount: uint(i.message_count),
APIStyle: APIStyle(i.api_style),
Reasoning: ReasoningEffort(i.reasoning),
}
}
// Tool callback support.
type (
ToolDecl struct{ Name, Description, SchemaJSON string }
ResultPart struct{ Text string }
ResultParts []ResultPart
ToolFunc func(input string) (ResultParts, error)
Tool struct {
Decl ToolDecl
Invoke ToolFunc
}
)
type (
ToolCall struct{ ToolName, Input string }
ToolSourceFunc func(calls []ToolCall) ([]ResultParts, []error, error)
ToolSource struct {
Name string
Tools []ToolDecl
InvokeBatch ToolSourceFunc
}
)
var (
callbackHandles = map[uintptr]any{}
nextCallbackHandle uintptr = 1
)
func saveCallback(v any) unsafe.Pointer {
h := nextCallbackHandle
nextCallbackHandle++
callbackHandles[h] = v
return unsafe.Pointer(h)
}
func dropCallback(p unsafe.Pointer) { delete(callbackHandles, uintptr(p)) }
//export pantoGoToolInvoke
func pantoGoToolInvoke(ctx unsafe.Pointer, input C.PantoSlice, out *C.PantoResultParts) C.PantoStatus {
t := callbackHandles[uintptr(ctx)].(Tool)
parts, err := t.Invoke(goSlice(input))
if err != nil {
return C.PANTO_ERROR
}
*out = makeCResultParts(parts)
return C.PANTO_OK
}
//export pantoGoToolSourceInvokeBatch
func pantoGoToolSourceInvokeBatch(ctx unsafe.Pointer, calls *C.PantoToolCall, results *C.PantoToolCallResult, n C.size_t) C.PantoStatus {
src := callbackHandles[uintptr(ctx)].(ToolSource)
cc := unsafe.Slice(calls, int(n))
goCalls := make([]ToolCall, int(n))
for i, c := range cc {
goCalls[i] = ToolCall{ToolName: goSlice(c.tool_name), Input: goSlice(c.input)}
}
parts, errs, err := src.InvokeBatch(goCalls)
if err != nil {
return C.PANTO_ERROR
}
rr := unsafe.Slice(results, int(n))
for i := range rr {
if i < len(errs) && errs[i] != nil {
rr[i].ok = false
continue
}
rr[i].ok = true
if i < len(parts) {
rr[i].parts = makeCResultParts(parts[i])
}
}
return C.PANTO_OK
}
//export pantoGoCallbackDestroy
func pantoGoCallbackDestroy(ctx unsafe.Pointer) { dropCallback(ctx) }
func (a *Agent) RegisterTool(t Tool) error {
ctx := saveCallback(t)
d, free := cToolDecl(t.Decl)
defer free()
if C.panto_agent_register_tool(a.ptr, d, ctx, (C.PantoToolInvokeFn)(C.pantoGoToolInvoke), (C.PantoToolDestroyFn)(C.pantoGoCallbackDestroy)) != C.PANTO_OK {
dropCallback(ctx)
return lastError()
}
return nil
}
func (a *Agent) RegisterToolSource(src ToolSource) error {
ctx := saveCallback(src)
cname := cSlice(src.Name)
defer C.free(unsafe.Pointer(cname.ptr))
decls := make([]C.PantoToolDecl, len(src.Tools))
frees := make([]func(), 0, len(src.Tools))
for i, d := range src.Tools {
cd, fr := cToolDecl(d)
decls[i] = cd
frees = append(frees, fr)
}
defer func() {
for _, f := range frees {
f()
}
}()
var ptr *C.PantoToolDecl
if len(decls) > 0 {
ptr = &decls[0]
}
if C.panto_agent_register_tool_source(a.ptr, cname, ptr, C.size_t(len(decls)), ctx, (C.PantoToolSourceInvokeBatchFn)(C.pantoGoToolSourceInvokeBatch), (C.PantoToolDestroyFn)(C.pantoGoCallbackDestroy)) != C.PANTO_OK {
dropCallback(ctx)
return lastError()
}
return nil
}
func cToolDecl(d ToolDecl) (C.PantoToolDecl, func()) {
n := cSlice(d.Name)
desc := cSlice(d.Description)
schema := cSlice(d.SchemaJSON)
return C.PantoToolDecl{name: n, description: desc, schema_json: schema}, func() {
C.free(unsafe.Pointer(n.ptr))
C.free(unsafe.Pointer(desc.ptr))
C.free(unsafe.Pointer(schema.ptr))
}
}
func cSlice(s string) C.PantoSlice {
cs := C.CString(s)
return C.PantoSlice{ptr: (*C.uint8_t)(unsafe.Pointer(cs)), len: C.size_t(len(s))}
}
func makeCResultParts(parts ResultParts) C.PantoResultParts {
if len(parts) == 0 {
return C.PantoResultParts{}
}
arr := (*C.PantoResultPart)(C.calloc(C.size_t(len(parts)), C.size_t(unsafe.Sizeof(C.PantoResultPart{}))))
xs := unsafe.Slice(arr, len(parts))
for i, p := range parts {
cs := cSlice(p.Text)
xs[i].tag = C.PANTO_RESULT_TEXT
(*C.PantoSlice)(unsafe.Pointer(&xs[i].data[0])).ptr = cs.ptr
(*C.PantoSlice)(unsafe.Pointer(&xs[i].data[0])).len = cs.len
}
return C.PantoResultParts{ptr: arr, len: C.size_t(len(parts))}
}
func NewGoSessionStore(impl SessionStore) (*GoSessionStore, error) {
ctx := saveCallback(impl)
var out *C.PantoSessionStore
if C.panto_go_session_store_create(ctx, &out) != C.PANTO_OK {
dropCallback(ctx)
return nil, lastError()
}
s := &GoSessionStore{ptr: out, impl: impl}
runtime.SetFinalizer(s, (*GoSessionStore).Close)
return s, nil
}
func (s *GoSessionStore) cptr() *C.PantoSessionStore { return s.ptr }
func (s *GoSessionStore) Create() (*Session, error) { return CreateSession(s) }
func (s *GoSessionStore) List() ([]SessionInfo, error) { return ListSessions(s) }
func (s *GoSessionStore) Resolve(id string) (*Session, bool, error) { return ResolveSession(s, id) }
func (s *GoSessionStore) Latest() (*Session, bool, error) { return LatestSession(s) }
func (s *GoSessionStore) Load(id string) (*Conversation, bool, error) { return s.impl.Load(id) }
func (s *GoSessionStore) AppendMessages(sessionID string, messages []PersistentMessage) error {
return s.impl.AppendMessages(sessionID, messages)
}
func (s *GoSessionStore) Close() {
if s != nil && s.ptr != nil {
C.panto_session_store_destroy(s.ptr)
s.ptr = nil
}
}
//export pantoGoStoreCreate
func pantoGoStoreCreate(ctx unsafe.Pointer, out **C.PantoSession) C.PantoStatus {
impl := callbackHandles[uintptr(ctx)].(SessionStore)
s, err := impl.Create()
if err != nil {
return C.PANTO_ERROR
}
*out = s.ptr
runtime.SetFinalizer(s, nil)
return C.PANTO_OK
}
//export pantoGoStoreList
func pantoGoStoreList(ctx unsafe.Pointer, out *C.PantoSessionInfoList) C.PantoStatus {
impl := callbackHandles[uintptr(ctx)].(SessionStore)
infos, err := impl.List()
if err != nil {
return C.PANTO_ERROR
}
if len(infos) == 0 {
*out = C.PantoSessionInfoList{}
return C.PANTO_OK
}
arr := (*C.PantoSessionInfo)(C.calloc(C.size_t(len(infos)), C.size_t(unsafe.Sizeof(C.PantoSessionInfo{}))))
xs := unsafe.Slice(arr, len(infos))
for i, info := range infos {
xs[i] = cSessionInfo(info)
}
*out = C.PantoSessionInfoList{ptr: arr, len: C.size_t(len(infos))}
return C.PANTO_OK
}
//export pantoGoStoreFreeSessionInfos
func pantoGoStoreFreeSessionInfos(ctx unsafe.Pointer, infos C.PantoSessionInfoList) {
_ = ctx
freeCSessionInfoList(infos)
}
//export pantoGoStoreResolve
func pantoGoStoreResolve(ctx unsafe.Pointer, id C.PantoSlice, out *C.PantoSessionResult) C.PantoStatus {
impl := callbackHandles[uintptr(ctx)].(SessionStore)
s, ok, err := impl.Resolve(goSlice(id))
if err != nil {
return C.PANTO_ERROR
}
if !ok {
*out = C.PantoSessionResult{}
return C.PANTO_OK
}
*out = C.PantoSessionResult{found: true, session: s.ptr}
runtime.SetFinalizer(s, nil)
return C.PANTO_OK
}
//export pantoGoStoreLatest
func pantoGoStoreLatest(ctx unsafe.Pointer, out *C.PantoSessionResult) C.PantoStatus {
impl := callbackHandles[uintptr(ctx)].(SessionStore)
s, ok, err := impl.Latest()
if err != nil {
return C.PANTO_ERROR
}
if !ok {
*out = C.PantoSessionResult{}
return C.PANTO_OK
}
*out = C.PantoSessionResult{found: true, session: s.ptr}
runtime.SetFinalizer(s, nil)
return C.PANTO_OK
}
//export pantoGoStoreLoad
func pantoGoStoreLoad(ctx unsafe.Pointer, id C.PantoSlice, out **C.PantoConversation) C.PantoStatus {
impl := callbackHandles[uintptr(ctx)].(SessionStore)
c, ok, err := impl.Load(goSlice(id))
if err != nil {
return C.PANTO_ERROR
}
if !ok {
return C.PANTO_ERROR
}
*out = c.ptr
c.owned = false
runtime.SetFinalizer(c, nil)
return C.PANTO_OK
}
//export pantoGoStoreAppendMessages
func pantoGoStoreAppendMessages(ctx unsafe.Pointer, sessionID C.PantoSlice, messages *C.PantoPersistentMessage, n C.size_t) C.PantoStatus {
impl := callbackHandles[uintptr(ctx)].(SessionStore)
xs := unsafe.Slice(messages, int(n))
out := make([]PersistentMessage, int(n))
for i, m := range xs {
var u *Usage
if m.has_usage {
uu := usage(m.usage)
u = &uu
}
out[i] = PersistentMessage{
Role: MessageRole(m.role),
Usage: u,
Metadata: goSlice(m.metadata),
Content: goOwnedBlocks(m.content, m.content_len),
APIStyle: APIStyle(m.api_style),
BaseURL: goSlice(m.base_url),
Model: goSlice(m.model),
Reasoning: ReasoningEffort(m.reasoning),
}
}
if err := impl.AppendMessages(goSlice(sessionID), out); err != nil {
return C.PANTO_ERROR
}
return C.PANTO_OK
}
func goOwnedBlocks(ptr *C.PantoOwnedContentBlock, n C.size_t) []OwnedContentBlock {
if ptr == nil || n == 0 {
return nil
}
xs := unsafe.Slice(ptr, int(n))
out := make([]OwnedContentBlock, int(n))
for i, b := range xs {
out[i] = OwnedContentBlock{
Tag: ContentBlockTag(b.tag),
Text: goSlice(b.text),
ToolID: goSlice(b.tool_id),
ToolName: goSlice(b.tool_name),
IsError: bool(b.is_error),
SystemMode: SystemMode(b.system_mode),
ThinkingSignature: goSlice(b.thinking_signature),
ThinkingSignatureStyle: APIStyle(b.thinking_signature_api_style),
ThinkingSignatureBaseURL: goSlice(b.thinking_signature_base_url),
ThinkingSignatureModel: goSlice(b.thinking_signature_model),
}
}
return out
}
func cSessionInfo(i SessionInfo) C.PantoSessionInfo {
return C.PantoSessionInfo{
id: cSlice(i.ID),
created: cSlice(i.Created),
modified: cSlice(i.Modified),
last_user_message: cSlice(i.LastUserMessage),
base_url: cSlice(i.BaseURL),
model: cSlice(i.Model),
message_count: C.size_t(i.MessageCount),
api_style: C.PantoAPIStyle(i.APIStyle),
reasoning: C.PantoReasoningEffort(i.Reasoning),
}
}
func freeCSessionInfo(i C.PantoSessionInfo) {
C.free(unsafe.Pointer(i.id.ptr))
C.free(unsafe.Pointer(i.created.ptr))
C.free(unsafe.Pointer(i.modified.ptr))
C.free(unsafe.Pointer(i.last_user_message.ptr))
C.free(unsafe.Pointer(i.base_url.ptr))
C.free(unsafe.Pointer(i.model.ptr))
}
func freeCSessionInfoList(l C.PantoSessionInfoList) {
if l.ptr == nil {
return
}
xs := unsafe.Slice(l.ptr, int(l.len))
for _, i := range xs {
freeCSessionInfo(i)
}
C.free(unsafe.Pointer(l.ptr))
}
|