Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Stable Horde and Kobold Horde request library
> npm install ai-horde
import * as ai from 'ai-horde'
const user = await ai.findUser('some-api-key')
Dispatch an asynchronous text generation request
// Return: P
function generate(
type: 'horde' | 'kobold',
request: GenerateRequest,
apikey?: string
): Promise<{ id: string }>
type GenerateRequest = {
prompt: string
params: {
n?: number
max_context_length: number
max_length: number
frmtadsnsp?: boolean
frmtrmblln?: boolean
frmtrmspch?: boolean
frmttriminc?: boolean
rep_pen?: number
rep_pen_range?: number
rep_pen_slope?: number
singleline?: boolean
soft_prompt?: string
temperature?: number
tfs?: number
top_a?: number
top_k?: number
top_p?: number
typical?: number
sampler_order?: number
}
trusted_workers?: boolean
nsfw?: boolean
workers?: string[]
models?: string[]
}
Wait for a text generation response
Example:
const { id } = await generate('horde', params, apikey)
const response = await waitForResposne('horde', id)
return response.generations
function waitForResponse(
type: 'horde' | 'kobold',
id: string,
timeoutSecs?: number
): Promise<StatusResponse>
type StatusResponse = {
finished: number
processing: number
restarted: number
waiting: number
done: boolean
faulted: boolean
wait_time: number
queue_position: number
kudos: number
is_possible: boolean
generations: Array<{
worker_id: string
worker_name: string
model: string
state: string
text: string
seed: number
}>
}
Retrieve user information. If type
is not provided, both Horde APIs will be queried and the valid response will be returned.
function findUser(apikey: string, type?: 'horde' | 'kobold'): Promise<FindUserResponse>
type FindUserResponse = {
type: 'horde' | 'kobold'
kudos_details: {
accumulated: number
gifted: number
admin: number
received: number
recurring: number
}
usage: {
tokens: number
requests: number
}
contributions: {
tokens: number
fulfillments: number
}
username: string
id: number
kudos: number
concurrency: number
worker_invited: number
moderator: boolean
worker_count: number
worker_ids: string[]
trusted: number
pseudonymous: number
}
FAQs
Unknown package
We found that ai-horde demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.