-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
188 lines (172 loc) · 5.38 KB
/
index.ts
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
require("dotenv").config();
const apiKey = process.env.GOOGLE_API_KEY;
import {
GoogleGenerativeAI,
FunctionDeclaration,
SchemaType,
} from "@google/generative-ai";
import { Langfuse } from "langfuse";
// Initialize Langfuse client
const langfuse = new Langfuse({
secretKey: process.env.LANGFUSE_SECRET_KEY || "sk-lf-...", // Replace with your secret key
publicKey: process.env.LANGFUSE_PUBLIC_KEY || "pk-lf-...", // Replace with your public key
baseUrl: process.env.LANGFUSE_URL, // Or your self-hosted URL
});
// Define the stock price function declaration
const stockPriceFunction: FunctionDeclaration = {
name: "getStockPrice",
description: "Get the current stock price for a given company symbol",
parameters: {
type: SchemaType.OBJECT,
properties: {
symbol: {
type: SchemaType.STRING,
description: "The stock symbol (e.g., AAPL for Apple)",
},
},
required: ["symbol"],
},
};
// Mock stock price function with static response
async function getStockPrice({ symbol }: { symbol: string }): Promise<any> {
const span = langfuse.span({
name: "getStockPrice",
input: { symbol },
});
try {
const result = {
symbol: symbol.toUpperCase(),
price: 150.25,
currency: "USD",
timestamp: new Date().toISOString(),
};
span.update({ output: result });
span.end();
return result;
} catch (error) {
span.update({
level: "ERROR",
statusMessage: error instanceof Error ? error.message : String(error),
});
span.end();
throw error;
}
}
// Main class to handle Gemini API interactions with Langfuse observability
class StockPriceBot {
private genAI: GoogleGenerativeAI;
private model: any;
constructor() {
this.genAI = new GoogleGenerativeAI(apiKey!);
this.model = this.genAI.getGenerativeModel({
model: "gemini-2.0-flash",
tools: [{ functionDeclarations: [stockPriceFunction] }],
});
}
async processQuery(userQuery: string): Promise<string> {
const trace = langfuse.trace({
name: "processQuery",
input: { query: userQuery },
metadata: { environment: "development" },
});
try {
// Enhanced chat span with payload and response details
const chatSpan = trace.span({
name: "startChat",
input: { history: [] }, // Initial payload (empty history in this case)
});
const chat = this.model.startChat({ history: [] });
chatSpan.update({
output: { chatSessionStarted: true },
});
chatSpan.end();
const sendMessageSpan = trace.span({
name: "sendMessage",
input: { message: userQuery }, // Payload sent to the model
});
const result = await chat.sendMessage(userQuery);
const response = result.response;
const functionCalls = response.functionCalls();
sendMessageSpan.update({
output: {
rawResponse: response,
responseText: response.text(),
hasFunctionCalls: !!functionCalls,
functionCalls: functionCalls
? functionCalls.map((fc: any) => ({
name: fc.name,
args: fc.args,
}))
: [],
},
});
sendMessageSpan.end();
if (functionCalls && functionCalls.length > 0) {
trace.update({
metadata: { functionCallsDetected: functionCalls.length },
});
for (const functionCall of functionCalls) {
if (functionCall.name === "getStockPrice") {
trace.event({
name: "functionCallDetected",
input: { functionName: "getStockPrice", args: functionCall.args },
});
const stockData = await getStockPrice({
symbol: functionCall.args.symbol,
});
const responseSpan = trace.span({
name: "sendFunctionResponse",
input: {
functionResponse: {
name: "getStockPrice",
response: stockData,
},
},
});
const functionResponse = await chat.sendMessage([
{
functionResponse: {
name: "getStockPrice",
response: stockData,
},
},
]);
const finalResponse = functionResponse.response.text();
responseSpan.update({ output: { response: finalResponse } });
responseSpan.end();
trace.update({ output: { finalResponse } });
return finalResponse;
}
}
}
const textResponse = response.text();
trace.update({ output: { response: textResponse } });
return textResponse;
} catch (error) {
trace.event({
name: "error",
input: {
error: error instanceof Error ? error.message : String(error),
},
});
throw error;
}
}
}
// Usage example
async function main() {
const bot = new StockPriceBot();
const queries = ["What's the current stock price of Apple?"];
for (const query of queries) {
try {
const response = await bot.processQuery(query);
console.log(`Query: ${query}`);
console.log(`Response: ${response}\n`);
} catch (error) {
console.error(`Error for query "${query}":`, error);
}
}
// Ensure all events are sent before exiting
await langfuse.shutdownAsync();
}
main().catch(console.error);