Skip to content

Instantly share code, notes, and snippets.

View IkechukwuAbuah's full-sized avatar

Kelvin Ikechukwu Abuah IkechukwuAbuah

View GitHub Profile
@IkechukwuAbuah
IkechukwuAbuah / openchat_3_5.preset.json
Created December 27, 2023 02:47 — forked from beowolx/openchat_3_5.preset.json
This is the prompt preset for OpenChat 3.5 models in LM Studio
{
"name": "OpenChat 3.5",
"load_params": {
"n_ctx": 8192,
"n_batch": 512,
"rope_freq_base": 10000,
"rope_freq_scale": 1,
"n_gpu_layers": 80,
"use_mlock": true,
"main_gpu": 0,
There are two prompts, that chain together. The first prompt does most of the work, and the second prompt organizes the sections. I found because of the nature of how LLMs write, I couldn't get just one prompt to never jump back and forth in topics.
Prompt 1, which takes as input a raw transcript and generates a structured-text version...
"""# Instructions
A transcript is provided below of a voice memo I recorded as a "note to self". please extract all the points made or thoughts described, and put them in bullet-point form. use nested bullet points to indicate structure, e.g. a top-level bullet for each topic area and sub-bullets underneath. use multi-level nesting as appropriate to organize the thinking logically. use markdown formatting with `*` instead of `-` for bullet points.
DO NOT OMIT ANY POINTS MADE. This is not a summarization task — your only goal is to structure the thoughts there so they are logically organized and easy to read. Be concise because the reader is busy, but again DO NOT omit any
@IkechukwuAbuah
IkechukwuAbuah / productSchool.js
Created September 15, 2023 19:08 — forked from ak--47/productSchool.js
💾 data loader for the Product Analytics Certification
//PUT YOUR MIXPANEL TOKEN AND SECRET BELOW:
const credentials = {
"token": "your-mixpanel-token-here",
"secret": "your-mixpanel-secret-here"
}
/*
@IkechukwuAbuah
IkechukwuAbuah / App.css
Created January 3, 2023 12:10 — forked from gwmccubbin/App.css
Bootcamp CSS
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
:root {
--clr-primary: #0D121D;
--clr-secondary: #121A29;
--clr-neutral: #767F92;
--clr-white: #F1F2F9;
--clr-blue: #2187D0;
--clr-red: #F45353;
@IkechukwuAbuah
IkechukwuAbuah / package.json
Created September 4, 2022 12:14 — forked from gwmccubbin/package.json
Bootcamp Package.json
{
"name": "bootcamp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^13.5.0",
"dotenv": "^16.0.0",
"lodash": "^4.17.21",