Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@skeet-framework/ai
Advanced tools
Skeet AI Plugin for Multile Chat Models.
chat function can call Gemini and OpenAI with the same arguments, making it easy to compare the results of Gemini and OpenAI.
This plugin wraps the following AI models.
Fast and easy to deploy with Skeet Framework.
$ pnpm add @skeet-framework/ai
Enable API and Permissions on GCP.
if you havent installed Skeet CLI, install it.
$ gcloud auth application-default
$ pnpm add -g @skeet-framework/cli
and run skeet iam ai
command.
$ skeet iam ai
? What's your GCP Project ID your-project-id
? Select Regions to deploy asia-east1
✔ Successfully created ./skeet-cloud.config.json 🎉
🚸 === Copy & Paste below command to your terminal === 🚸
export GCLOUD_PROJECT=your-project-id
export REGION="us-central1"
🚸 ========= END ========= 🚸
And set environment variables following the console's output.
Note: options overwrite the environment variables
chat function can call Gemini and OpenAI with the same arguments, making it easy to compare the results of Gemini and OpenAI.
import { chat } from '@skeet-framework/ai'
const context = 'You are a helpful assistant.'
const examples = [
{
input: 'What is the capital of France?',
output: 'The capital of France is Paris.',
},
{
input: 'What is the capital of Spain?',
output: 'The capital of Spain is Madrid.',
},
{
input: 'What is the capital of Italy?',
output: 'The capital of Italy is Rome.',
},
]
const input = 'What is the capital of France?'
const gemini = await chat(context, examples, input, 'Gemini')
const openai = await chat(context, examples, input, 'OpenAI')
const claude = await chat(context, examples, input, 'Claude')
GraphQL, CloudSQL, Cloud Functions, TypeScript, Jest Test, Google Cloud Load Balancer, Cloud Armor
TypeScript Serverless Framework 'Skeet'.
The Skeet project was launched with the goal of reducing software development, operation, and maintenance costs.
Build Serverless Apps faster. Powered by TAI, Cloud Functions, Typesaurus, Jest, Prettier, and Google Cloud.
$ pnpm add -g @skeet-framework/cli
$ skeet new
Bug reports and pull requests are welcome on GitHub at https://github.com/elsoul/skeet This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The package is available as open source under the terms of the Apache-2.0 License.
Everyone interacting in the SKEET project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
FAQs
Skeet Framework Plugin - AI
We found that @skeet-framework/ai demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.