Spaces:
Sleeping
Sleeping
File size: 4,534 Bytes
0bcc252 |
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 |
// Action Types
import {CoreAssistantMessage, CoreUserMessage, LanguageModelUsage} from "ai";
type BaseAction = {
action: "search" | "answer" | "reflect" | "visit";
think: string;
};
export type SearchAction = BaseAction & {
action: "search";
searchQuery: string;
};
export type AnswerAction = BaseAction & {
action: "answer";
answer: string;
references: Array<{
exactQuote: string;
url: string;
}>;
isFinal?: boolean;
};
export type KnowledgeItem = {
question: string,
answer: string,
references?: Array<{
exactQuote: string;
url: string;
}> | Array<any>;
type: 'qa' | 'side-info' | 'chat-history' | 'url',
updated: string,
}
export type ReflectAction = BaseAction & {
action: "reflect";
questionsToAnswer: string[];
};
export type VisitAction = BaseAction & {
action: "visit";
URLTargets: string[];
};
export type StepAction = SearchAction | AnswerAction | ReflectAction | VisitAction;
export type EvaluationType = 'definitive' | 'freshness' | 'plurality' | 'attribution';
export type EvaluationCriteria = {
types: EvaluationType[];
languageStyle: string;
};
// Following Vercel AI SDK's token counting interface
export interface TokenUsage {
tool: string;
usage: LanguageModelUsage;
}
export interface SearchResponse {
code: number;
status: number;
data: Array<{
title: string;
description: string;
url: string;
content: string;
usage: { tokens: number; };
}> | null;
name?: string;
message?: string;
readableMessage?: string;
}
export interface BraveSearchResponse {
web: {
results: Array<{
title: string;
description: string;
url: string;
}>;
};
}
export type DedupResponse = {
think: string;
unique_queries: string[];
};
export interface ReadResponse {
code: number;
status: number;
data?: {
title: string;
description: string;
url: string;
content: string;
usage: { tokens: number; };
};
name?: string;
message?: string;
readableMessage?: string;
}
export type EvaluationResponse = {
pass: boolean;
think: string;
type?: 'definitive' | 'freshness' | 'plurality' | 'attribution';
freshness_analysis?: {
likely_outdated: boolean;
dates_mentioned: string[];
current_time: string;
max_age_days?: number;
};
plurality_analysis?: {
expects_multiple: boolean;
provides_multiple: boolean;
count_expected?: number;
count_provided: number;
};
};
export type ErrorAnalysisResponse = {
recap: string;
blame: string;
improvement: string;
questionsToAnswer: string[];
};
export interface SearchResult {
title: string;
url: string;
description: string;
}
export interface QueryResult {
query: string;
results: SearchResult[];
}
export interface StepData {
step: number;
question: string;
action: string;
reasoning: string;
searchQuery?: string;
result?: QueryResult[];
}
export type KeywordsResponse = {
think: string;
queries: string[];
};
export interface StreamMessage {
type: 'progress' | 'answer' | 'error';
data: string | StepAction;
step?: number;
budget?: {
used: number;
total: number;
percentage: string;
};
}
// OpenAI API Types
export interface Model {
id: string;
object: 'model';
created: number;
owned_by: string;
}
export interface ChatCompletionRequest {
model: string;
messages: Array<CoreUserMessage | CoreAssistantMessage>;
stream?: boolean;
reasoning_effort?: 'low' | 'medium' | 'high' | null;
max_completion_tokens?: number | null;
}
export interface ChatCompletionResponse {
id: string;
object: 'chat.completion';
created: number;
model: string;
system_fingerprint: string;
choices: Array<{
index: number;
message: {
role: 'assistant';
content: string;
};
logprobs: null;
finish_reason: 'stop';
}>;
usage: {
prompt_tokens: number;
completion_tokens: number;
total_tokens: number;
};
}
export interface ChatCompletionChunk {
id: string;
object: 'chat.completion.chunk';
created: number;
model: string;
system_fingerprint: string;
choices: Array<{
index: number;
delta: {
role?: 'assistant';
content?: string;
};
logprobs: null;
finish_reason: null | 'stop';
}>;
usage?: any;
}
// Tracker Types
import {TokenTracker} from './utils/token-tracker';
import {ActionTracker} from './utils/action-tracker';
export interface TrackerContext {
tokenTracker: TokenTracker;
actionTracker: ActionTracker;
}
|