
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
@xrpl/ai-core
Advanced tools
`@xrpl/ai-core` is the core library for XRPL AI, a conversational AI component for your website, trained on your data.
@xrpl/ai-core
@xrpl/ai-core
is the core library for XRPL AI, a conversational AI component for your website, trained on your data.
It contains core functionality for XRPL AI and allows you to build abstractions on top of it.
npm install @xrpl/ai-core
In browsers with esm.sh:
<script type="module">
import {
submitChat,
submitSearchQuery,
submitFeedback,
} from 'https://esm.sh/@markprompt/core';
</script>
import { submitChat } from '@xrpl/ai-core';
// User input
const prompt = 'What is XRPL AI?';
// Can be obtained in your project settings on markprompt.com
const projectKey = 'YOUR-PROJECT-KEY';
// Called when a new answer chunk is available
// Should be concatenated to previous chunks
function onAnswerChunk(chunk) {
// Process an answer chunk
}
// Called when references are available
function onReferences(references) {
// Process references
}
function onConversationId(conversationId) {
// Store conversationId for future use
}
function onPromptId(promptId) {
// Store promptId for future use
}
// Called when submitChat encounters an error
function onError(error) {
// Handle errors
}
// Optional parameters, defaults displayed
const options = {
model: 'gpt-4.1-mini-2025-04-14', // Supports all OpenAI models
iDontKnowMessage: 'Sorry, I am not sure how to answer that.',
apiUrl: 'https://api.ai.xrpl.org/v1/completions', // Or your own completions API endpoint
};
await submitChat(
[{ content: prompt, role: 'user' }],
projectKey,
onAnswerChunk,
onReferences,
onConversationId,
onPromptId,
onError,
options,
);
submitChat(messages: ChatMessage[], projectKey: string, onAnswerChunk, onReferences, onConversationId, onPromptId, onError, options?)
Submit a prompt to the XRPL AI Completions API.
messages
(ChatMessage[]
): Chat messages to submit to the modelprojectKey
(string
): Project key for the projectonAnswerChunk
(function(chunk: string)
): Answers come in via streaming.
This function is called when a new chunk arrives. Chunks should be
concatenated to previous chunks of the same answer response.onReferences
(function(references: FileSectionReference[])
): This function
is called when receiving the list of references from which the response was
created.onConversationId
(function(conversationId: string)
): This function is
called with the conversation ID returned by the API. Used to keep track of
conversations.onPromptId
(function(promptId: string)
): This function is called with the
prompt ID returned by the API. Used to submit feedback.onError
(function
): called when an error occursoptions
(SubmitChatOptions
): Optional parametersAll options are optional.
apiUrl
(string
): URL at which to fetch completionsconversationId
(string
): Conversation IDiDontKnowMessage
(string
): Message returned when the model does not have
an answermodel
(OpenAIModelId
): The OpenAI model to usesystemPrompt
(string
): The prompt templatetemperature
(number
): The model temperaturetopP
(number
): The model top PfrequencyPenalty
(number
): The model frequency penaltypresencePenalty
(number
): The model present penaltymaxTokens
(number
): The max number of tokens to include in the responsesectionsMatchCount
(number
): The number of sections to include in the
prompt contextsectionsMatchThreshold
(number
): The similarity threshold between the
input question and selected sectionssignal
(AbortSignal
): AbortController signalA promise that resolves when the response is fully handled.
submitSearchQuery(query, projectKey, options?)
Submit a search query to the Markprompt Search API.
query
(string
): Search queryprojectKey
(string
): Project key for the projectoptions
(object
): Optional parametersapiUrl
(string
): URL at which to fetch search resultslimit
(number
): Maximum amount of results to returnsignal
(AbortSignal
): AbortController signalA list of search results.
submitFeedback(feedback, projectKey, options?)
Submit feedback to the Markprompt Feedback API about a specific prompt.
feedback
(object
): Feedback to submitfeedback.feedback
(object
): Feedback datafeedback.feedback.vote
("1" | "-1"
): Votefeedback.promptId
(string
): Prompt IDprojectKey
(string
): Project key for the projectoptions
(object
): Optional parametersoptions.apiUrl
(string
): URL at which to post feedbackoptions.onFeedbackSubmitted
(function
): Callback function when feedback
is submittedoptions.signal
(AbortSignal
): AbortController signalA promise that resolves when the feedback is submitted. Has no return value.
MIT © XRPL AI Devs
FAQs
`@xrpl/ai-core` is the core library for XRPL AI, a conversational AI component for your website, trained on your data.
We found that @xrpl/ai-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.