Skip to content

Instantly share code, notes, and snippets.

@m-tabish
m-tabish / Run.md
Created February 1, 2026 10:41
How to use and test CherryDB docker image

📦 Docker Image

Docker Hub:

mtabish/cherrydb:latest

Pull:

Chat Conversation

Note: This is purely the output of the chat conversation and does not contain any raw data, codebase snippets, etc. used to generate the output.

User Input

create a git ignore file which ignores all the unncessary and secret files which shouldn't be uploaded on git from CherryAPI , CherryGO, CherryUI

*Listed directory Cherry *

from langchain_community.embeddings import HuggingFaceEmbeddings
from langchain.prompts.chat import ChatPromptTemplate
from langchain_google_genai import ChatGoogleGenerativeAI
from langchain_chroma import Chroma
from langchain.schema import HumanMessage
import os
from dotenv import load_dotenv
from langchain_text_splitters import RecursiveCharacterTextSplitter
from pydantic import SecretStr
@m-tabish
m-tabish / index.js
Created October 1, 2024 13:53
Prompt for generating roadmaps in BUILD FLOW
const prompt = `
Create a roadmap for the a project called ${body.projectname} which is ${body.projectDescription} in ${body.language} .
Requirements:
- Each node must have a unique nodeId.
- The source and target fields in the edges should clearly specify the connections between nodes.
- The structure must form a non-linear roadmap but shouldn't be confusing.
- Be as detailed in creating each step as you can.
- The response should be valid JSON, easily parseable without errors.
- Please generate the response as a JSON object following this schema.
- Generate a highly elaborate response steps with focusing on implementation of the core functionality of the project.