@liquidmetal-ai/drizzle 0.2.2 → 0.2.8
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/.turbo/turbo-test.log +208 -1
- package/dist/appify/index.d.ts +4 -0
- package/dist/appify/index.d.ts.map +1 -1
- package/dist/appify/index.js +18 -1
- package/dist/codestore.js +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +595 -478
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.js +244 -1661
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts +110 -92
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.js +38 -361
- package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts +14 -13
- package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/raindrop_pb.js +10 -48
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.d.ts +146 -122
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.js +49 -428
- package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts +262 -142
- package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/search_agent_pb.js +68 -684
- package/eslint.config.mjs +3 -1
- package/package.json +2 -1
- package/src/appify/index.ts +18 -1
- package/src/codestore.ts +1 -1
- package/src/liquidmetal/v1alpha1/catalog_pb.ts +800 -1443
- package/src/liquidmetal/v1alpha1/rainbow_auth_pb.ts +142 -284
- package/src/liquidmetal/v1alpha1/raindrop_pb.ts +21 -35
- package/src/liquidmetal/v1alpha1/resource_interface_pb.ts +192 -378
- package/src/liquidmetal/v1alpha1/search_agent_pb.ts +310 -450
- package/tsconfig.json +11 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/.turbo/turbo-lint.log +0 -6
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts +0 -168
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/catalog_connect.js +0 -171
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts +0 -49
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.js +0 -52
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts +0 -26
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.js +0 -29
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts +0 -202
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.js +0 -298
- package/dist/liquidmetal/v1alpha1/resource_interface_connect.d.ts +0 -68
- package/dist/liquidmetal/v1alpha1/resource_interface_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/resource_interface_connect.js +0 -73
- package/dist/liquidmetal/v1alpha1/search_agent_connect.d.ts +0 -170
- package/dist/liquidmetal/v1alpha1/search_agent_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/search_agent_connect.js +0 -173
- package/src/liquidmetal/v1alpha1/catalog_connect.ts +0 -174
- package/src/liquidmetal/v1alpha1/rainbow_auth_connect.ts +0 -55
- package/src/liquidmetal/v1alpha1/rainbow_public_connect.ts +0 -32
- package/src/liquidmetal/v1alpha1/rainbow_public_pb.ts +0 -366
- package/src/liquidmetal/v1alpha1/resource_interface_connect.ts +0 -77
- package/src/liquidmetal/v1alpha1/search_agent_connect.ts +0 -176
|
@@ -1,170 +0,0 @@
|
|
|
1
|
-
import { CreatePageSummaryRequest, CreatePageSummaryResponse, DocumentChatRequest, DocumentChatResponse, GetPaginatedResultsRequest, GetPaginatedResultsResponse, RagSearchRequest, RagSearchResponse, RegisterRetrieverToolRequest, RegisterRetrieverToolResponse, RunSupervisorAgentRequest, RunSupervisorAgentResponse } from "./search_agent_pb.js";
|
|
2
|
-
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
|
-
/**
|
|
4
|
-
* SearchAgentService provides the core functionality for Smart Buckets - Raindrop's intelligent
|
|
5
|
-
* object storage service designed specifically for AI applications. When files are uploaded
|
|
6
|
-
* to a Smart Bucket, they undergo advanced AI decomposition that analyzes and indexes content
|
|
7
|
-
* using state-of-the-art AI models. This includes:
|
|
8
|
-
*
|
|
9
|
-
* - Automated document indexing and processing
|
|
10
|
-
* - Extraction of structured data
|
|
11
|
-
* - Processing through specialized AI models
|
|
12
|
-
* - Storage in optimized formats for AI querying
|
|
13
|
-
* - Automatic PII detection and classification
|
|
14
|
-
*
|
|
15
|
-
* The service supports multiple file types including:
|
|
16
|
-
* - application/pdf
|
|
17
|
-
* - image/jpeg, image/png
|
|
18
|
-
* - audio/webm, audio/wav, audio/mp4, audio/mpeg
|
|
19
|
-
* - text/plain
|
|
20
|
-
*
|
|
21
|
-
* @generated from service liquidmetal.v1alpha1.SearchAgentService
|
|
22
|
-
*/
|
|
23
|
-
export declare const SearchAgentService: {
|
|
24
|
-
readonly typeName: "liquidmetal.v1alpha1.SearchAgentService";
|
|
25
|
-
readonly methods: {
|
|
26
|
-
/**
|
|
27
|
-
* DocumentChat enables natural conversational interactions with documents stored in Smart Buckets.
|
|
28
|
-
* This creates an intelligent interface for document exploration through natural dialogue, allowing
|
|
29
|
-
* users to ask questions, request summaries, and extract insights from any supported document type.
|
|
30
|
-
*
|
|
31
|
-
* The chat system maintains conversation context, enabling follow-up questions and deep exploration
|
|
32
|
-
* of document content. It works across all supported file types and automatically handles multi-page
|
|
33
|
-
* documents, making complex document interaction as simple as having a conversation.
|
|
34
|
-
*
|
|
35
|
-
* The system will:
|
|
36
|
-
* - Maintain conversation history for context
|
|
37
|
-
* - Process questions against document content
|
|
38
|
-
* - Generate contextual, relevant responses
|
|
39
|
-
* - Handle document references and citations
|
|
40
|
-
* - Support multi-turn conversations about document content
|
|
41
|
-
*
|
|
42
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.DocumentChat
|
|
43
|
-
*/
|
|
44
|
-
readonly documentChat: {
|
|
45
|
-
readonly name: "DocumentChat";
|
|
46
|
-
readonly I: typeof DocumentChatRequest;
|
|
47
|
-
readonly O: typeof DocumentChatResponse;
|
|
48
|
-
readonly kind: MethodKind.Unary;
|
|
49
|
-
};
|
|
50
|
-
/**
|
|
51
|
-
* RagSearch (Retrieval-Augmented Generation) provides an advanced search capability that serves
|
|
52
|
-
* as a complete drop-in replacement for traditional RAG pipelines. This system enables AI agents
|
|
53
|
-
* to leverage private data stored in Smart Buckets with zero additional configuration.
|
|
54
|
-
*
|
|
55
|
-
* The RAG system automatically:
|
|
56
|
-
* - Processes and indexes uploaded content
|
|
57
|
-
* - Maintains optimal chunk sizes (max 450 tokens)
|
|
58
|
-
* - Handles document metadata
|
|
59
|
-
* - Provides relevance scoring
|
|
60
|
-
* - Manages document versioning
|
|
61
|
-
*
|
|
62
|
-
* This creates a foundation for:
|
|
63
|
-
* - Training AI models with private data
|
|
64
|
-
* - Building intelligent knowledge bases
|
|
65
|
-
* - Creating context-aware chatbots
|
|
66
|
-
* - Implementing semantic search systems
|
|
67
|
-
*
|
|
68
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RagSearch
|
|
69
|
-
*/
|
|
70
|
-
readonly ragSearch: {
|
|
71
|
-
readonly name: "RagSearch";
|
|
72
|
-
readonly I: typeof RagSearchRequest;
|
|
73
|
-
readonly O: typeof RagSearchResponse;
|
|
74
|
-
readonly kind: MethodKind.Unary;
|
|
75
|
-
};
|
|
76
|
-
/**
|
|
77
|
-
* CreatePageSummary generates intelligent summaries of search result pages, helping users
|
|
78
|
-
* quickly understand large result sets without reading through every document. The system
|
|
79
|
-
* analyzes the content of all results on a given page and generates a comprehensive overview.
|
|
80
|
-
*
|
|
81
|
-
* The summary system:
|
|
82
|
-
* - Identifies key themes and topics
|
|
83
|
-
* - Extracts important findings
|
|
84
|
-
* - Highlights document relationships
|
|
85
|
-
* - Provides content type distribution
|
|
86
|
-
* - Summarizes metadata patterns
|
|
87
|
-
*
|
|
88
|
-
* This is particularly valuable when dealing with:
|
|
89
|
-
* - Large document collections
|
|
90
|
-
* - Mixed content types
|
|
91
|
-
* - Technical documentation
|
|
92
|
-
* - Research materials
|
|
93
|
-
*
|
|
94
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.CreatePageSummary
|
|
95
|
-
*/
|
|
96
|
-
readonly createPageSummary: {
|
|
97
|
-
readonly name: "CreatePageSummary";
|
|
98
|
-
readonly I: typeof CreatePageSummaryRequest;
|
|
99
|
-
readonly O: typeof CreatePageSummaryResponse;
|
|
100
|
-
readonly kind: MethodKind.Unary;
|
|
101
|
-
};
|
|
102
|
-
/**
|
|
103
|
-
* RunSupervisorAgent is the primary search interface for Smart Buckets, providing
|
|
104
|
-
* advanced semantic search capabilities that go far beyond traditional keyword matching.
|
|
105
|
-
* The supervisor agent orchestrates multiple specialized search strategies to provide
|
|
106
|
-
* comprehensive, intelligent results.
|
|
107
|
-
*
|
|
108
|
-
* The system supports complex queries like:
|
|
109
|
-
* - "Show me documents containing credit card numbers or social security numbers"
|
|
110
|
-
* - "Find images of landscapes taken during sunset"
|
|
111
|
-
* - "Get documents mentioning revenue forecasts from Q4 2023"
|
|
112
|
-
* - "Find me all PDF documents that contain pictures of a cat"
|
|
113
|
-
*
|
|
114
|
-
* Key capabilities:
|
|
115
|
-
* - Natural language query understanding
|
|
116
|
-
* - Content-based search across text and images
|
|
117
|
-
* - Automatic PII detection and filtering
|
|
118
|
-
* - Cross-document relationship analysis
|
|
119
|
-
* - Multi-modal search (text, images, audio)
|
|
120
|
-
*
|
|
121
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RunSupervisorAgent
|
|
122
|
-
*/
|
|
123
|
-
readonly runSupervisorAgent: {
|
|
124
|
-
readonly name: "RunSupervisorAgent";
|
|
125
|
-
readonly I: typeof RunSupervisorAgentRequest;
|
|
126
|
-
readonly O: typeof RunSupervisorAgentResponse;
|
|
127
|
-
readonly kind: MethodKind.Unary;
|
|
128
|
-
};
|
|
129
|
-
/**
|
|
130
|
-
* GetPaginatedResults enables efficient navigation through large result sets while
|
|
131
|
-
* maintaining search context and result relevance. This method is optimized for
|
|
132
|
-
* handling large document collections and implementing modern UI patterns.
|
|
133
|
-
*
|
|
134
|
-
* Features:
|
|
135
|
-
* - Consistent result ordering
|
|
136
|
-
* - Configurable page sizes
|
|
137
|
-
* - Efficient result caching
|
|
138
|
-
* - Cursor-based pagination
|
|
139
|
-
* - Support for infinite scroll
|
|
140
|
-
*
|
|
141
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.GetPaginatedResults
|
|
142
|
-
*/
|
|
143
|
-
readonly getPaginatedResults: {
|
|
144
|
-
readonly name: "GetPaginatedResults";
|
|
145
|
-
readonly I: typeof GetPaginatedResultsRequest;
|
|
146
|
-
readonly O: typeof GetPaginatedResultsResponse;
|
|
147
|
-
readonly kind: MethodKind.Unary;
|
|
148
|
-
};
|
|
149
|
-
/**
|
|
150
|
-
* RegisterRetrieverTool allows extending Smart Bucket capabilities with custom
|
|
151
|
-
* retrieval implementations. This enables specialized search algorithms and
|
|
152
|
-
* custom processing pipelines for specific use cases or data types.
|
|
153
|
-
*
|
|
154
|
-
* Use cases include:
|
|
155
|
-
* - Custom search implementations
|
|
156
|
-
* - Specialized retrieval algorithms
|
|
157
|
-
* - Domain-specific optimizations
|
|
158
|
-
* - Integration with existing systems
|
|
159
|
-
*
|
|
160
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RegisterRetrieverTool
|
|
161
|
-
*/
|
|
162
|
-
readonly registerRetrieverTool: {
|
|
163
|
-
readonly name: "RegisterRetrieverTool";
|
|
164
|
-
readonly I: typeof RegisterRetrieverToolRequest;
|
|
165
|
-
readonly O: typeof RegisterRetrieverToolResponse;
|
|
166
|
-
readonly kind: MethodKind.Unary;
|
|
167
|
-
};
|
|
168
|
-
};
|
|
169
|
-
};
|
|
170
|
-
//# sourceMappingURL=search_agent_connect.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"search_agent_connect.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/search_agent_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,0BAA0B,EAAE,MAAM,sBAAsB,CAAC;AACxV,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,eAAO,MAAM,kBAAkB;;;QAG3B;;;;;;;;;;;;;;;;;WAiBG;;;;;;;QAOH;;;;;;;;;;;;;;;;;;;WAmBG;;;;;;;QAOH;;;;;;;;;;;;;;;;;;;WAmBG;;;;;;;QAOH;;;;;;;;;;;;;;;;;;;;WAoBG;;;;;;;QAOH;;;;;;;;;;;;;WAaG;;;;;;;QAOH;;;;;;;;;;;;WAYG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
// @generated by protoc-gen-connect-es v1.4.0 with parameter "target=ts,import_extension=.js"
|
|
2
|
-
// @generated from file liquidmetal/v1alpha1/search_agent.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
// @ts-nocheck
|
|
5
|
-
import { CreatePageSummaryRequest, CreatePageSummaryResponse, DocumentChatRequest, DocumentChatResponse, GetPaginatedResultsRequest, GetPaginatedResultsResponse, RagSearchRequest, RagSearchResponse, RegisterRetrieverToolRequest, RegisterRetrieverToolResponse, RunSupervisorAgentRequest, RunSupervisorAgentResponse } from "./search_agent_pb.js";
|
|
6
|
-
import { MethodKind } from "@bufbuild/protobuf";
|
|
7
|
-
/**
|
|
8
|
-
* SearchAgentService provides the core functionality for Smart Buckets - Raindrop's intelligent
|
|
9
|
-
* object storage service designed specifically for AI applications. When files are uploaded
|
|
10
|
-
* to a Smart Bucket, they undergo advanced AI decomposition that analyzes and indexes content
|
|
11
|
-
* using state-of-the-art AI models. This includes:
|
|
12
|
-
*
|
|
13
|
-
* - Automated document indexing and processing
|
|
14
|
-
* - Extraction of structured data
|
|
15
|
-
* - Processing through specialized AI models
|
|
16
|
-
* - Storage in optimized formats for AI querying
|
|
17
|
-
* - Automatic PII detection and classification
|
|
18
|
-
*
|
|
19
|
-
* The service supports multiple file types including:
|
|
20
|
-
* - application/pdf
|
|
21
|
-
* - image/jpeg, image/png
|
|
22
|
-
* - audio/webm, audio/wav, audio/mp4, audio/mpeg
|
|
23
|
-
* - text/plain
|
|
24
|
-
*
|
|
25
|
-
* @generated from service liquidmetal.v1alpha1.SearchAgentService
|
|
26
|
-
*/
|
|
27
|
-
export const SearchAgentService = {
|
|
28
|
-
typeName: "liquidmetal.v1alpha1.SearchAgentService",
|
|
29
|
-
methods: {
|
|
30
|
-
/**
|
|
31
|
-
* DocumentChat enables natural conversational interactions with documents stored in Smart Buckets.
|
|
32
|
-
* This creates an intelligent interface for document exploration through natural dialogue, allowing
|
|
33
|
-
* users to ask questions, request summaries, and extract insights from any supported document type.
|
|
34
|
-
*
|
|
35
|
-
* The chat system maintains conversation context, enabling follow-up questions and deep exploration
|
|
36
|
-
* of document content. It works across all supported file types and automatically handles multi-page
|
|
37
|
-
* documents, making complex document interaction as simple as having a conversation.
|
|
38
|
-
*
|
|
39
|
-
* The system will:
|
|
40
|
-
* - Maintain conversation history for context
|
|
41
|
-
* - Process questions against document content
|
|
42
|
-
* - Generate contextual, relevant responses
|
|
43
|
-
* - Handle document references and citations
|
|
44
|
-
* - Support multi-turn conversations about document content
|
|
45
|
-
*
|
|
46
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.DocumentChat
|
|
47
|
-
*/
|
|
48
|
-
documentChat: {
|
|
49
|
-
name: "DocumentChat",
|
|
50
|
-
I: DocumentChatRequest,
|
|
51
|
-
O: DocumentChatResponse,
|
|
52
|
-
kind: MethodKind.Unary,
|
|
53
|
-
},
|
|
54
|
-
/**
|
|
55
|
-
* RagSearch (Retrieval-Augmented Generation) provides an advanced search capability that serves
|
|
56
|
-
* as a complete drop-in replacement for traditional RAG pipelines. This system enables AI agents
|
|
57
|
-
* to leverage private data stored in Smart Buckets with zero additional configuration.
|
|
58
|
-
*
|
|
59
|
-
* The RAG system automatically:
|
|
60
|
-
* - Processes and indexes uploaded content
|
|
61
|
-
* - Maintains optimal chunk sizes (max 450 tokens)
|
|
62
|
-
* - Handles document metadata
|
|
63
|
-
* - Provides relevance scoring
|
|
64
|
-
* - Manages document versioning
|
|
65
|
-
*
|
|
66
|
-
* This creates a foundation for:
|
|
67
|
-
* - Training AI models with private data
|
|
68
|
-
* - Building intelligent knowledge bases
|
|
69
|
-
* - Creating context-aware chatbots
|
|
70
|
-
* - Implementing semantic search systems
|
|
71
|
-
*
|
|
72
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RagSearch
|
|
73
|
-
*/
|
|
74
|
-
ragSearch: {
|
|
75
|
-
name: "RagSearch",
|
|
76
|
-
I: RagSearchRequest,
|
|
77
|
-
O: RagSearchResponse,
|
|
78
|
-
kind: MethodKind.Unary,
|
|
79
|
-
},
|
|
80
|
-
/**
|
|
81
|
-
* CreatePageSummary generates intelligent summaries of search result pages, helping users
|
|
82
|
-
* quickly understand large result sets without reading through every document. The system
|
|
83
|
-
* analyzes the content of all results on a given page and generates a comprehensive overview.
|
|
84
|
-
*
|
|
85
|
-
* The summary system:
|
|
86
|
-
* - Identifies key themes and topics
|
|
87
|
-
* - Extracts important findings
|
|
88
|
-
* - Highlights document relationships
|
|
89
|
-
* - Provides content type distribution
|
|
90
|
-
* - Summarizes metadata patterns
|
|
91
|
-
*
|
|
92
|
-
* This is particularly valuable when dealing with:
|
|
93
|
-
* - Large document collections
|
|
94
|
-
* - Mixed content types
|
|
95
|
-
* - Technical documentation
|
|
96
|
-
* - Research materials
|
|
97
|
-
*
|
|
98
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.CreatePageSummary
|
|
99
|
-
*/
|
|
100
|
-
createPageSummary: {
|
|
101
|
-
name: "CreatePageSummary",
|
|
102
|
-
I: CreatePageSummaryRequest,
|
|
103
|
-
O: CreatePageSummaryResponse,
|
|
104
|
-
kind: MethodKind.Unary,
|
|
105
|
-
},
|
|
106
|
-
/**
|
|
107
|
-
* RunSupervisorAgent is the primary search interface for Smart Buckets, providing
|
|
108
|
-
* advanced semantic search capabilities that go far beyond traditional keyword matching.
|
|
109
|
-
* The supervisor agent orchestrates multiple specialized search strategies to provide
|
|
110
|
-
* comprehensive, intelligent results.
|
|
111
|
-
*
|
|
112
|
-
* The system supports complex queries like:
|
|
113
|
-
* - "Show me documents containing credit card numbers or social security numbers"
|
|
114
|
-
* - "Find images of landscapes taken during sunset"
|
|
115
|
-
* - "Get documents mentioning revenue forecasts from Q4 2023"
|
|
116
|
-
* - "Find me all PDF documents that contain pictures of a cat"
|
|
117
|
-
*
|
|
118
|
-
* Key capabilities:
|
|
119
|
-
* - Natural language query understanding
|
|
120
|
-
* - Content-based search across text and images
|
|
121
|
-
* - Automatic PII detection and filtering
|
|
122
|
-
* - Cross-document relationship analysis
|
|
123
|
-
* - Multi-modal search (text, images, audio)
|
|
124
|
-
*
|
|
125
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RunSupervisorAgent
|
|
126
|
-
*/
|
|
127
|
-
runSupervisorAgent: {
|
|
128
|
-
name: "RunSupervisorAgent",
|
|
129
|
-
I: RunSupervisorAgentRequest,
|
|
130
|
-
O: RunSupervisorAgentResponse,
|
|
131
|
-
kind: MethodKind.Unary,
|
|
132
|
-
},
|
|
133
|
-
/**
|
|
134
|
-
* GetPaginatedResults enables efficient navigation through large result sets while
|
|
135
|
-
* maintaining search context and result relevance. This method is optimized for
|
|
136
|
-
* handling large document collections and implementing modern UI patterns.
|
|
137
|
-
*
|
|
138
|
-
* Features:
|
|
139
|
-
* - Consistent result ordering
|
|
140
|
-
* - Configurable page sizes
|
|
141
|
-
* - Efficient result caching
|
|
142
|
-
* - Cursor-based pagination
|
|
143
|
-
* - Support for infinite scroll
|
|
144
|
-
*
|
|
145
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.GetPaginatedResults
|
|
146
|
-
*/
|
|
147
|
-
getPaginatedResults: {
|
|
148
|
-
name: "GetPaginatedResults",
|
|
149
|
-
I: GetPaginatedResultsRequest,
|
|
150
|
-
O: GetPaginatedResultsResponse,
|
|
151
|
-
kind: MethodKind.Unary,
|
|
152
|
-
},
|
|
153
|
-
/**
|
|
154
|
-
* RegisterRetrieverTool allows extending Smart Bucket capabilities with custom
|
|
155
|
-
* retrieval implementations. This enables specialized search algorithms and
|
|
156
|
-
* custom processing pipelines for specific use cases or data types.
|
|
157
|
-
*
|
|
158
|
-
* Use cases include:
|
|
159
|
-
* - Custom search implementations
|
|
160
|
-
* - Specialized retrieval algorithms
|
|
161
|
-
* - Domain-specific optimizations
|
|
162
|
-
* - Integration with existing systems
|
|
163
|
-
*
|
|
164
|
-
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RegisterRetrieverTool
|
|
165
|
-
*/
|
|
166
|
-
registerRetrieverTool: {
|
|
167
|
-
name: "RegisterRetrieverTool",
|
|
168
|
-
I: RegisterRetrieverToolRequest,
|
|
169
|
-
O: RegisterRetrieverToolResponse,
|
|
170
|
-
kind: MethodKind.Unary,
|
|
171
|
-
},
|
|
172
|
-
}
|
|
173
|
-
};
|
|
@@ -1,174 +0,0 @@
|
|
|
1
|
-
// @generated by protoc-gen-connect-es v1.4.0 with parameter "target=ts,import_extension=.js"
|
|
2
|
-
// @generated from file liquidmetal/v1alpha1/catalog.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
// @ts-nocheck
|
|
5
|
-
|
|
6
|
-
import { ApplicationsRequest, ApplicationsResponse, BootstrapRequest, BootstrapResponse, DeleteRequest, DeleteResponse, DeployRequest, DeployResponse, GetEnvsRequest, GetEnvsResponse, QueryResourcesRequest, QueryResourcesResponse, ReleaseRequest, ReleaseResponse, SetActiveRequest, SetActiveResponse, SetEnvsRequest, SetEnvsResponse, SetSandboxRequest, SetSandboxResponse, StatusRequest, StatusResponse, UploadBundleRequest, UploadBundleResponse, WatchRequest, WatchResponse } from "./catalog_pb.js";
|
|
7
|
-
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* CatalogService defines data interactions for the catalog portion of the
|
|
11
|
-
* rainbow UI.
|
|
12
|
-
*
|
|
13
|
-
* As an authorization style choice, the RPCs are focused on providing user
|
|
14
|
-
* context data explicitly (don't assume the userId or orgId from the
|
|
15
|
-
* authentication header.) It is expected that an authorization layer will
|
|
16
|
-
* enforce the ability for a request to act as a specified user or org matching
|
|
17
|
-
* against the authentication header. This makes services easier to mock without
|
|
18
|
-
* needing to think about injecting mock authentication contexts and allows for
|
|
19
|
-
* use cases where certain roles of users may wish to act as other users.
|
|
20
|
-
*
|
|
21
|
-
* @generated from service liquidmetal.v1alpha1.CatalogService
|
|
22
|
-
*/
|
|
23
|
-
export const CatalogService = {
|
|
24
|
-
typeName: "liquidmetal.v1alpha1.CatalogService",
|
|
25
|
-
methods: {
|
|
26
|
-
/**
|
|
27
|
-
* QueryResources returns the physical underlying resources for a given query
|
|
28
|
-
*
|
|
29
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.QueryResources
|
|
30
|
-
*/
|
|
31
|
-
queryResources: {
|
|
32
|
-
name: "QueryResources",
|
|
33
|
-
I: QueryResourcesRequest,
|
|
34
|
-
O: QueryResourcesResponse,
|
|
35
|
-
kind: MethodKind.Unary,
|
|
36
|
-
},
|
|
37
|
-
/**
|
|
38
|
-
* Bootstrap is a special RPC that is used to bootstrap the system
|
|
39
|
-
* using a one-time token.
|
|
40
|
-
*
|
|
41
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Bootstrap
|
|
42
|
-
*/
|
|
43
|
-
bootstrap: {
|
|
44
|
-
name: "Bootstrap",
|
|
45
|
-
I: BootstrapRequest,
|
|
46
|
-
O: BootstrapResponse,
|
|
47
|
-
kind: MethodKind.Unary,
|
|
48
|
-
},
|
|
49
|
-
/**
|
|
50
|
-
* Applications fetches a list of applications for an organization.
|
|
51
|
-
* This list follows best practices for pagination.
|
|
52
|
-
* https://protobuf.dev/programming-guides/api/#define-pagination-api
|
|
53
|
-
*
|
|
54
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Applications
|
|
55
|
-
*/
|
|
56
|
-
applications: {
|
|
57
|
-
name: "Applications",
|
|
58
|
-
I: ApplicationsRequest,
|
|
59
|
-
O: ApplicationsResponse,
|
|
60
|
-
kind: MethodKind.Unary,
|
|
61
|
-
},
|
|
62
|
-
/**
|
|
63
|
-
* Deploy creates a new version, or branch, or amends in place.
|
|
64
|
-
*
|
|
65
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Deploy
|
|
66
|
-
*/
|
|
67
|
-
deploy: {
|
|
68
|
-
name: "Deploy",
|
|
69
|
-
I: DeployRequest,
|
|
70
|
-
O: DeployResponse,
|
|
71
|
-
kind: MethodKind.Unary,
|
|
72
|
-
},
|
|
73
|
-
/**
|
|
74
|
-
* UploadBundle uploads a bundle for a specific application version.
|
|
75
|
-
*
|
|
76
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.UploadBundle
|
|
77
|
-
*/
|
|
78
|
-
uploadBundle: {
|
|
79
|
-
name: "UploadBundle",
|
|
80
|
-
I: UploadBundleRequest,
|
|
81
|
-
O: UploadBundleResponse,
|
|
82
|
-
kind: MethodKind.Unary,
|
|
83
|
-
},
|
|
84
|
-
/**
|
|
85
|
-
* SetEnvs sets multiple environment variables for an application/version.
|
|
86
|
-
*
|
|
87
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.SetEnvs
|
|
88
|
-
*/
|
|
89
|
-
setEnvs: {
|
|
90
|
-
name: "SetEnvs",
|
|
91
|
-
I: SetEnvsRequest,
|
|
92
|
-
O: SetEnvsResponse,
|
|
93
|
-
kind: MethodKind.Unary,
|
|
94
|
-
},
|
|
95
|
-
/**
|
|
96
|
-
* GetEnvs gets multiple environment variables for an application/version.
|
|
97
|
-
*
|
|
98
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.GetEnvs
|
|
99
|
-
*/
|
|
100
|
-
getEnvs: {
|
|
101
|
-
name: "GetEnvs",
|
|
102
|
-
I: GetEnvsRequest,
|
|
103
|
-
O: GetEnvsResponse,
|
|
104
|
-
kind: MethodKind.Unary,
|
|
105
|
-
},
|
|
106
|
-
/**
|
|
107
|
-
* Release allows a deployed application to converge.
|
|
108
|
-
*
|
|
109
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Release
|
|
110
|
-
*/
|
|
111
|
-
release: {
|
|
112
|
-
name: "Release",
|
|
113
|
-
I: ReleaseRequest,
|
|
114
|
-
O: ReleaseResponse,
|
|
115
|
-
kind: MethodKind.Unary,
|
|
116
|
-
},
|
|
117
|
-
/**
|
|
118
|
-
* Watch attaches a watcher to the ring buffer associated with an application.
|
|
119
|
-
*
|
|
120
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Watch
|
|
121
|
-
*/
|
|
122
|
-
watch: {
|
|
123
|
-
name: "Watch",
|
|
124
|
-
I: WatchRequest,
|
|
125
|
-
O: WatchResponse,
|
|
126
|
-
kind: MethodKind.ServerStreaming,
|
|
127
|
-
},
|
|
128
|
-
/**
|
|
129
|
-
* Delete sets an application to deleting.
|
|
130
|
-
*
|
|
131
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Delete
|
|
132
|
-
*/
|
|
133
|
-
delete: {
|
|
134
|
-
name: "Delete",
|
|
135
|
-
I: DeleteRequest,
|
|
136
|
-
O: DeleteResponse,
|
|
137
|
-
kind: MethodKind.Unary,
|
|
138
|
-
},
|
|
139
|
-
/**
|
|
140
|
-
* setActive sets application active/inactive (start/stop) state.
|
|
141
|
-
*
|
|
142
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.SetActive
|
|
143
|
-
*/
|
|
144
|
-
setActive: {
|
|
145
|
-
name: "SetActive",
|
|
146
|
-
I: SetActiveRequest,
|
|
147
|
-
O: SetActiveResponse,
|
|
148
|
-
kind: MethodKind.Unary,
|
|
149
|
-
},
|
|
150
|
-
/**
|
|
151
|
-
* setSandbox sets application sandboxed/unsandboxed state.
|
|
152
|
-
*
|
|
153
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.SetSandbox
|
|
154
|
-
*/
|
|
155
|
-
setSandbox: {
|
|
156
|
-
name: "SetSandbox",
|
|
157
|
-
I: SetSandboxRequest,
|
|
158
|
-
O: SetSandboxResponse,
|
|
159
|
-
kind: MethodKind.Unary,
|
|
160
|
-
},
|
|
161
|
-
/**
|
|
162
|
-
* Status returns the status of an application@version.
|
|
163
|
-
*
|
|
164
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Status
|
|
165
|
-
*/
|
|
166
|
-
status: {
|
|
167
|
-
name: "Status",
|
|
168
|
-
I: StatusRequest,
|
|
169
|
-
O: StatusResponse,
|
|
170
|
-
kind: MethodKind.Unary,
|
|
171
|
-
},
|
|
172
|
-
}
|
|
173
|
-
} as const;
|
|
174
|
-
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
// @generated by protoc-gen-connect-es v1.4.0 with parameter "target=ts,import_extension=.js"
|
|
2
|
-
// @generated from file liquidmetal/v1alpha1/rainbow_auth.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
// @ts-nocheck
|
|
5
|
-
|
|
6
|
-
import { DeviceAccessTokenRequest, DeviceAccessTokenResponse, DeviceAuthorizationRequest, DeviceAuthorizationResponse, RefreshAccessTokenRequest, RefreshAccessTokenResponse } from "./rainbow_auth_pb.js";
|
|
7
|
-
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* @generated from service liquidmetal.v1alpha1.RainbowAuthService
|
|
11
|
-
*/
|
|
12
|
-
export const RainbowAuthService = {
|
|
13
|
-
typeName: "liquidmetal.v1alpha1.RainbowAuthService",
|
|
14
|
-
methods: {
|
|
15
|
-
/**
|
|
16
|
-
* DeviceAuthorization is similar to the RFC8628 Device Authorization Request
|
|
17
|
-
* and Response.
|
|
18
|
-
*
|
|
19
|
-
* https://datatracker.ietf.org/doc/html/rfc8628#section-3.1
|
|
20
|
-
*
|
|
21
|
-
* @generated from rpc liquidmetal.v1alpha1.RainbowAuthService.DeviceAuthorization
|
|
22
|
-
*/
|
|
23
|
-
deviceAuthorization: {
|
|
24
|
-
name: "DeviceAuthorization",
|
|
25
|
-
I: DeviceAuthorizationRequest,
|
|
26
|
-
O: DeviceAuthorizationResponse,
|
|
27
|
-
kind: MethodKind.Unary,
|
|
28
|
-
},
|
|
29
|
-
/**
|
|
30
|
-
* DeviceAccessToken is polled after a successful call to DeviceAuthorization
|
|
31
|
-
* awaiting the verification_uri_complete to have been followed allowing this
|
|
32
|
-
* RPC to return a BearerToken response.
|
|
33
|
-
*
|
|
34
|
-
* @generated from rpc liquidmetal.v1alpha1.RainbowAuthService.DeviceAccessToken
|
|
35
|
-
*/
|
|
36
|
-
deviceAccessToken: {
|
|
37
|
-
name: "DeviceAccessToken",
|
|
38
|
-
I: DeviceAccessTokenRequest,
|
|
39
|
-
O: DeviceAccessTokenResponse,
|
|
40
|
-
kind: MethodKind.Unary,
|
|
41
|
-
},
|
|
42
|
-
/**
|
|
43
|
-
* RefreshAccessToken is invoked when the access token expires.
|
|
44
|
-
*
|
|
45
|
-
* @generated from rpc liquidmetal.v1alpha1.RainbowAuthService.RefreshAccessToken
|
|
46
|
-
*/
|
|
47
|
-
refreshAccessToken: {
|
|
48
|
-
name: "RefreshAccessToken",
|
|
49
|
-
I: RefreshAccessTokenRequest,
|
|
50
|
-
O: RefreshAccessTokenResponse,
|
|
51
|
-
kind: MethodKind.Unary,
|
|
52
|
-
},
|
|
53
|
-
}
|
|
54
|
-
} as const;
|
|
55
|
-
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
// @generated by protoc-gen-connect-es v1.4.0 with parameter "target=ts,import_extension=.js"
|
|
2
|
-
// @generated from file liquidmetal/v1alpha1/rainbow_public.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
// @ts-nocheck
|
|
5
|
-
|
|
6
|
-
import { TailRequest, TailResponse } from "./rainbow_public_pb.js";
|
|
7
|
-
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* RainbowPublicService represents logic implemented centrally by rainbow
|
|
11
|
-
* service that may be accessed publicly.
|
|
12
|
-
*
|
|
13
|
-
* @generated from service liquidmetal.v1alpha1.RainbowPublicService
|
|
14
|
-
*/
|
|
15
|
-
export const RainbowPublicService = {
|
|
16
|
-
typeName: "liquidmetal.v1alpha1.RainbowPublicService",
|
|
17
|
-
methods: {
|
|
18
|
-
/**
|
|
19
|
-
* Tail is able to return a websocket url which will stream logs from active
|
|
20
|
-
* applications.
|
|
21
|
-
*
|
|
22
|
-
* @generated from rpc liquidmetal.v1alpha1.RainbowPublicService.Tail
|
|
23
|
-
*/
|
|
24
|
-
tail: {
|
|
25
|
-
name: "Tail",
|
|
26
|
-
I: TailRequest,
|
|
27
|
-
O: TailResponse,
|
|
28
|
-
kind: MethodKind.Unary,
|
|
29
|
-
},
|
|
30
|
-
}
|
|
31
|
-
} as const;
|
|
32
|
-
|