copilotkit--copilotkit
28 行
1.4 KiB
TypeScript
28 行
1.4 KiB
TypeScript
export const initialPrompt =
|
|
"Hi! I am a Langgraph x Gemini powered AI agent capable of performing web search and generating LinkedIn and X (Twitter) posts.\n\n Click on the suggestions to get started.";
|
|
|
|
export const initialPrompt1 =
|
|
"Hi! I am a Langgraph x Gemini powered AI agent capable of performing analysis of Public GitHub Repositories.\n\n Click on the suggestions to get started.";
|
|
|
|
export const suggestionPrompt =
|
|
"Generate suggestions that revolve around the creation/generation of LinkedIn and X (Twitter) posts on any specific topics.";
|
|
|
|
export const suggestionPrompt1 = `Generate suggestions that revolve around the analyzation of Public GitHub Repositories. Only provide suggestions from these public URLs:
|
|
[
|
|
"https://github.com/freeCodeCamp/freeCodeCamp",
|
|
"https://github.com/EbookFoundation/free-programming-books",
|
|
"https://github.com/jwasham/coding-interview-university",
|
|
"https://github.com/kamranahmedse/developer-roadmap",
|
|
"https://github.com/public-apis/public-apis",
|
|
"https://github.com/donnemartin/system-design-primer",
|
|
"https://github.com/facebook/react",
|
|
"https://github.com/tensorflow/tensorflow",
|
|
"https://github.com/trekhleb/javascript-algorithms",
|
|
"https://github.com/twbs/bootstrap",
|
|
"https://github.com/vinta/awesome-python",
|
|
"https://github.com/ohmyzsh/ohmyzsh",
|
|
"https://github.com/tldr-pages/tldr",
|
|
"https://github.com/ytdl-org/youtube-dl",
|
|
"https://github.com/taigaio/taiga-back"
|
|
]`;
|