-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
2571 lines (2564 loc) · 67.4 KB
/
openapi.yaml
File metadata and controls
2571 lines (2564 loc) · 67.4 KB
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
components:
schemas:
AgentResponse:
properties:
channel:
title: Channel
type: string
content:
additionalProperties: true
title: Content
type: object
entity_id:
title: Entity Id
type: string
entity_type:
const: agent
default: agent
title: Entity Type
type: string
etag:
title: Etag
type: string
meta:
additionalProperties: true
title: Meta
type: object
version_id:
title: Version Id
type: string
required:
- entity_id
- version_id
- channel
- etag
- meta
- content
title: AgentResponse
type: object
BatchSearchRequest:
description: Request for batch search.
properties:
channel:
default: latest
description: Version channel to search
title: Channel
type: string
entity_type:
default: memory_card
description: Type of entity to search
title: Entity Type
type: string
hybrid_weights:
default:
- 0.5
- 0.5
maxItems: 2
minItems: 2
prefixItems:
- type: number
- type: number
title: Hybrid Weights
type: array
namespace:
anyOf:
- type: string
- type: 'null'
description: Filter by namespace
title: Namespace
queries:
description: List of search queries
items:
type: string
maxItems: 50
minItems: 1
title: Queries
type: array
query_vectors:
anyOf:
- items:
items:
type: number
type: array
type: array
- type: 'null'
description: Pre-computed embedding vectors for vector search
title: Query Vectors
search_type:
$ref: '#/components/schemas/SearchType'
default: bm25
description: Type of search
tags:
anyOf:
- items:
type: string
type: array
- type: 'null'
description: Filter by tags
title: Tags
top_k:
default: 10
description: Number of top results per query
maximum: 100.0
minimum: 1.0
title: Top K
type: integer
required:
- queries
title: BatchSearchRequest
type: object
BatchSearchResponseModel:
description: Response for batch search.
properties:
results:
items:
items:
$ref: '#/components/schemas/SearchHit'
type: array
title: Results
type: array
search_type:
$ref: '#/components/schemas/SearchType'
total_queries:
title: Total Queries
type: integer
required:
- results
- search_type
- total_queries
title: BatchSearchResponseModel
type: object
ChainResponse:
properties:
channel:
title: Channel
type: string
content:
additionalProperties: true
title: Content
type: object
entity_id:
title: Entity Id
type: string
entity_type:
const: chain
default: chain
title: Entity Type
type: string
etag:
title: Etag
type: string
meta:
additionalProperties: true
title: Meta
type: object
version_id:
title: Version Id
type: string
required:
- entity_id
- version_id
- channel
- etag
- meta
- content
title: ChainResponse
type: object
DiffResponse:
properties:
from_version:
title: From Version
type: string
patch:
additionalProperties: true
title: Patch
type: object
to_version:
title: To Version
type: string
required:
- from_version
- to_version
- patch
title: DiffResponse
type: object
EmbeddingsRequest:
description: Request for text embeddings.
properties:
model:
anyOf:
- type: string
- type: 'null'
description: Optional override of the default model
title: Model
texts:
description: List of text strings to embed
items:
type: string
maxItems: 100
minItems: 1
title: Texts
type: array
required:
- texts
title: EmbeddingsRequest
type: object
EmbeddingsResponse:
description: Response with text embeddings.
properties:
dimension:
description: Dimension of embedding vectors
title: Dimension
type: integer
embeddings:
description: List of embedding vectors, one per input text
items:
items:
type: number
type: array
title: Embeddings
type: array
model:
description: Model name used for embedding
title: Model
type: string
required:
- embeddings
- model
- dimension
title: EmbeddingsResponse
type: object
EntityCreateRequest:
properties:
channel:
default: latest
title: Channel
type: string
content:
additionalProperties: true
title: Content
type: object
embedding:
anyOf:
- items:
type: number
type: array
- type: 'null'
title: Embedding
evolution_meta:
anyOf:
- $ref: '#/components/schemas/EvolutionMeta'
- type: 'null'
meta:
$ref: '#/components/schemas/EntityMeta'
parent_version_id:
anyOf:
- type: string
- type: 'null'
title: Parent Version Id
required:
- meta
- content
title: EntityCreateRequest
type: object
EntityMeta:
properties:
author:
anyOf:
- type: string
- type: 'null'
title: Author
name:
maxLength: 255
minLength: 1
title: Name
type: string
namespace:
anyOf:
- type: string
- type: 'null'
title: Namespace
tags:
items:
type: string
title: Tags
type: array
when_to_use:
anyOf:
- type: string
- type: 'null'
title: When To Use
required:
- name
title: EntityMeta
type: object
EntityResponse:
properties:
channel:
title: Channel
type: string
content:
additionalProperties: true
title: Content
type: object
entity_id:
title: Entity Id
type: string
entity_type:
title: Entity Type
type: string
etag:
title: Etag
type: string
meta:
additionalProperties: true
title: Meta
type: object
version_id:
title: Version Id
type: string
required:
- entity_type
- entity_id
- version_id
- channel
- etag
- meta
- content
title: EntityResponse
type: object
EntityUpdateRequest:
properties:
change_summary:
anyOf:
- type: string
- type: 'null'
title: Change Summary
channel:
default: latest
title: Channel
type: string
content:
additionalProperties: true
title: Content
type: object
embedding:
anyOf:
- items:
type: number
type: array
- type: 'null'
title: Embedding
evolution_meta:
anyOf:
- $ref: '#/components/schemas/EvolutionMeta'
- type: 'null'
meta:
anyOf:
- $ref: '#/components/schemas/EntityMeta'
- type: 'null'
parent_version_id:
anyOf:
- type: string
- type: 'null'
title: Parent Version Id
required:
- content
title: EntityUpdateRequest
type: object
EvolutionMeta:
properties:
behavioral_descriptors:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
title: Behavioral Descriptors
fitness:
anyOf:
- type: number
- type: 'null'
title: Fitness
is_valid:
anyOf:
- type: boolean
- type: 'null'
title: Is Valid
metrics:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
title: Metrics
mutation_kind:
anyOf:
- type: string
- type: 'null'
title: Mutation Kind
prompt_ref:
anyOf:
- type: string
- type: 'null'
title: Prompt Ref
title: EvolutionMeta
type: object
FacetsResponse:
properties:
authors:
additionalProperties:
type: integer
title: Authors
type: object
entity_types:
additionalProperties:
type: integer
title: Entity Types
type: object
namespaces:
additionalProperties:
type: integer
title: Namespaces
type: object
tags:
additionalProperties:
type: integer
title: Tags
type: object
title: FacetsResponse
type: object
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
title: Detail
type: array
title: HTTPValidationError
type: object
MemoryCardResponse:
properties:
channel:
title: Channel
type: string
content:
additionalProperties: true
title: Content
type: object
entity_id:
title: Entity Id
type: string
entity_type:
const: memory_card
default: memory_card
title: Entity Type
type: string
etag:
title: Etag
type: string
meta:
additionalProperties: true
title: Meta
type: object
version_id:
title: Version Id
type: string
required:
- entity_id
- version_id
- channel
- etag
- meta
- content
title: MemoryCardResponse
type: object
PinRequest:
properties:
channel:
title: Channel
type: string
version_id:
title: Version Id
type: string
required:
- channel
- version_id
title: PinRequest
type: object
PromoteRequest:
properties:
from_channel:
default: latest
title: From Channel
type: string
to_channel:
default: stable
title: To Channel
type: string
title: PromoteRequest
type: object
RevertRequest:
properties:
target_version_id:
title: Target Version Id
type: string
required:
- target_version_id
title: RevertRequest
type: object
SearchHit:
properties:
channel:
anyOf:
- type: string
- type: 'null'
title: Channel
content:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
title: Content
entity_id:
title: Entity Id
type: string
entity_type:
title: Entity Type
type: string
name:
title: Name
type: string
score:
default: 0.0
title: Score
type: number
tags:
items:
type: string
title: Tags
type: array
version_id:
anyOf:
- type: string
- type: 'null'
title: Version Id
when_to_use:
anyOf:
- type: string
- type: 'null'
title: When To Use
required:
- entity_id
- entity_type
- name
title: SearchHit
type: object
SearchType:
description: Search algorithm type.
enum:
- bm25
- vector
- hybrid
title: SearchType
type: string
StepResponse:
properties:
channel:
title: Channel
type: string
content:
additionalProperties: true
title: Content
type: object
entity_id:
title: Entity Id
type: string
entity_type:
const: step
default: step
title: Entity Type
type: string
etag:
title: Etag
type: string
meta:
additionalProperties: true
title: Meta
type: object
version_id:
title: Version Id
type: string
required:
- entity_id
- version_id
- channel
- etag
- meta
- content
title: StepResponse
type: object
UnifiedSearchRequest:
description: Request for unified search (BM25, vector, or hybrid).
properties:
channel:
default: latest
description: Version channel to search
title: Channel
type: string
entity_type:
default: memory_card
description: Type of entity to search
title: Entity Type
type: string
hybrid_weights:
default:
- 0.5
- 0.5
description: (bm25_weight, vector_weight) for hybrid search, must sum to
1.0
maxItems: 2
minItems: 2
prefixItems:
- type: number
- type: number
title: Hybrid Weights
type: array
namespace:
anyOf:
- type: string
- type: 'null'
description: Filter by namespace
title: Namespace
query:
anyOf:
- type: string
- type: 'null'
description: Text query for BM25 or hybrid search
title: Query
query_vector:
anyOf:
- items:
type: number
type: array
- type: 'null'
description: Pre-computed embedding vector for vector search
title: Query Vector
search_type:
$ref: '#/components/schemas/SearchType'
default: bm25
description: 'Type of search: ''bm25'', ''vector'', or ''hybrid'''
tags:
anyOf:
- items:
type: string
type: array
- type: 'null'
description: Filter by tags
title: Tags
top_k:
default: 10
description: Number of top results to return
maximum: 100.0
minimum: 1.0
title: Top K
type: integer
title: UnifiedSearchRequest
type: object
UnifiedSearchResponse:
description: Response for unified search (BM25 or vector).
properties:
hits:
items:
$ref: '#/components/schemas/SearchHit'
title: Hits
type: array
search_type:
description: Type of search performed (bm25 or vector)
title: Search Type
type: string
total:
description: Total number of hits returned
title: Total
type: integer
required:
- search_type
- total
title: UnifiedSearchResponse
type: object
ValidationError:
properties:
ctx:
title: Context
type: object
input:
title: Input
loc:
items:
anyOf:
- type: string
- type: integer
title: Location
type: array
msg:
title: Message
type: string
type:
title: Error Type
type: string
required:
- loc
- msg
- type
title: ValidationError
type: object
VersionDetail:
properties:
author:
anyOf:
- type: string
- type: 'null'
title: Author
change_summary:
anyOf:
- type: string
- type: 'null'
title: Change Summary
content:
additionalProperties: true
title: Content
type: object
created_at:
format: date-time
title: Created At
type: string
entity_id:
title: Entity Id
type: string
evolution_meta:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
title: Evolution Meta
meta:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
title: Meta
parents:
anyOf:
- items:
type: string
type: array
- type: 'null'
title: Parents
version_id:
title: Version Id
type: string
version_number:
title: Version Number
type: integer
required:
- version_id
- entity_id
- version_number
- created_at
- content
title: VersionDetail
type: object
VersionInfo:
properties:
author:
anyOf:
- type: string
- type: 'null'
title: Author
change_summary:
anyOf:
- type: string
- type: 'null'
title: Change Summary
created_at:
format: date-time
title: Created At
type: string
entity_id:
title: Entity Id
type: string
evolution_meta:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
title: Evolution Meta
parents:
anyOf:
- items:
type: string
type: array
- type: 'null'
title: Parents
version_id:
title: Version Id
type: string
version_number:
title: Version Number
type: integer
required:
- version_id
- entity_id
- version_number
- created_at
title: VersionInfo
type: object
info:
description: 'Persistent memory for CARL artifacts: steps, chains, agents, memory
cards'
title: GigaEvo Memory Module
version: 0.1.0
openapi: 3.1.0
paths:
/health:
get:
description: Check health of API and all dependencies.
operationId: health_check_health_get
responses:
'200':
content:
application/json:
schema: {}
description: Successful Response
summary: Health Check
/metrics:
get:
description: Prometheus-compatible metrics stub.
operationId: metrics_metrics_get
responses:
'200':
content:
application/json:
schema: {}
description: Successful Response
summary: Metrics
/v1/agents:
get:
description: List all agents with pagination.
operationId: list_agents_v1_agents_get
parameters:
- in: query
name: limit
required: false
schema:
default: 50
title: Limit
type: integer
- in: query
name: offset
required: false
schema:
default: 0
title: Offset
type: integer
- in: query
name: channel
required: false
schema:
default: latest
title: Channel
type: string
responses:
'200':
content:
application/json:
schema:
items:
$ref: '#/components/schemas/AgentResponse'
title: Response List Agents V1 Agents Get
type: array
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
summary: List Agents
tags:
- agents
post:
description: Create a new agent entity with its first version.
operationId: create_agent_v1_agents_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/EntityCreateRequest'
required: true
responses:
'201':
content:
application/json:
schema:
$ref: '#/components/schemas/AgentResponse'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
summary: Create Agent
tags:
- agents
/v1/agents/{agent_id}:
delete:
description: Soft-delete an agent.
operationId: delete_agent_v1_agents__agent_id__delete
parameters:
- in: path
name: agent_id
required: true
schema:
format: uuid
title: Agent Id
type: string
responses:
'204':
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
summary: Delete Agent
tags:
- agents
get:
description: Get an agent by ID, resolving the channel to a specific version.
operationId: get_agent_v1_agents__agent_id__get
parameters:
- in: path
name: agent_id
required: true
schema:
format: uuid
title: Agent Id
type: string
- in: query
name: channel
required: false
schema:
default: latest
title: Channel
type: string
- in: header
name: if-none-match
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: If-None-Match
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AgentResponse'
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
summary: Get Agent
tags:
- agents
put:
description: Update an agent by creating a new immutable version.
operationId: update_agent_v1_agents__agent_id__put
parameters:
- in: path
name: agent_id
required: true
schema:
format: uuid
title: Agent Id
type: string
- in: header
name: if-match
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: If-Match
requestBody:
content:
application/json: