-
-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ShareGPT Integration #62
Comments
Oh interesting, you mean for publishing your prompts selectively? I was just thinking earlier about whether or not a plugin hook for the It would actually be possible to build a plugin for this right now, using the new
|
This would actually make a really good example plugin, if someone wants to build it. |
It looks like the best documentation for the JSON format that export interface ConversationProps {
id: string;
model?: string;
content: {
title?: string;
avatarUrl: string;
model?: string;
items: {
from: "human" | "gpt";
value: string;
}[];
};
comments: CommentProps[];
views: number;
} Where |
Exactly! |
I would consider making a plugin for this, we will see what my free time is like :) |
Is this something we are open to?
https://github.com/domeccleston/sharegpt
The text was updated successfully, but these errors were encountered: