-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.ts
52 lines (42 loc) · 1.77 KB
/
app.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
import * as dns from 'dns';
import * as ping from 'ping';
import { promisify } from 'util';
// Description outlines the functionality for the LLM Function Calling feature
export const description = `if user asks ip or network latency of a domain, you should return the result of the giving domain. try your best to dissect user expressions to infer the right domain names`;
// Parameter defines the arguments for the LLM Function Calling
export type Argument = {
domain: string;
};
const lookup = promisify(dns.lookup);
async function getDomainInfo(domain: string): Promise<string> {
try {
// Get IP address
const { address: ip } = await lookup(domain);
// Get latency using ping
const pingResult = await ping.promise.probe(ip, {
timeout: 3,
extra: ['-c', '3'] // Send 3 packets
});
if (!pingResult.alive) {
return `domain ${domain} has ip ${ip}, but it does not support ICMP protocol or network is unavailable now, so I can not get the latency data`;
}
return `domain ${domain} has ip ${ip} with average latency ${pingResult.avg}ms, make sure answer with the IP address and Latency`;
} catch (error) {
console.error('Error:', error);
return 'can not get the domain name right now, please try again later';
}
}
/**
* Handler orchestrates the core processing logic of this function.
* @param args - LLM Function Calling Arguments.
* @returns The result of the retrieval is returned to the LLM for processing.
*/
export async function handler(args: Argument): Promise<string> {
if (!args.domain) {
console.warn('[sfn] domain is empty');
return 'can not get the domain name right now, please try again later';
}
const result = await getDomainInfo(args.domain);
console.log('[sfn] result:', result);
return result;
}