From 98e90615ef144cbe0dfae8c05b6345a6db6570a3 Mon Sep 17 00:00:00 2001 From: irishcarbomb777 Date: Sun, 14 Apr 2024 15:11:34 -0400 Subject: [PATCH] docs(README): update --- README.md | 9 +++------ src/testing.ts | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 06d574a..8e870a6 100644 --- a/README.md +++ b/README.md @@ -3,22 +3,19 @@

-## This is our graph library. It helps you build graphs. +## This is a wrapper around Neo4j and OpenAI enabling streamlined handling of application data for AI use cases. ### Why? -Graphs are awesome. So are LLM's. This libraries goal is to help you merge these things so you can do awesome stuff like matching. Examples of this are matching Candidates to Open Jobs, Grant Opportunities to Eligible Small Businesses, and many more things. +Graph data models are awesome. So are LLM's. This libraries goal is to help you merge these things so you can do awesome stuff like matching. Examples of this are matching Candidates to Open Jobs, Grant Opportunities to Eligible Small Businesses, and many more things. ### **NOTE** Strict null checks must be on in tsconfig.json ### Why does this library exist? -Functional programming is awesome. TypeScript is awesomer. TypeScript and functional programming together allows you build really big things and not get lost. The goal of this library is to provide you with some sane defaults and reasonable programming interfaces that will enable you to build awesomely complex things from simple building blocks. The major goal is to keep this library as simple as possible. Graphs at their core are simple structures. They're flexible, useful, and can stand on their own without piles of overcomplication. It is my goal for this library to maintain those same properties. If it doesn't yell at me. +TypeScript and functional programming together allows you build really big things and not get lost. The goal of this library is to provide you with some sane defaults and reasonable programming interfaces that will enable you to build complex things from simple building blocks. The major goal is to keep this library as simple as possible. ### Inspired By Zustand, Liveblocks, React, Neo4j, Cypher -### Shutup and show me some code. -Word. - ### Installation ```bash npm install @thinairthings/air-graph diff --git a/src/testing.ts b/src/testing.ts index 1589a60..42f16d4 100644 --- a/src/testing.ts +++ b/src/testing.ts @@ -99,7 +99,7 @@ const { const newJobNode = await createNode('Company', { - 'companyName': 'Blueprint', + 'companyName': 'Blueprint2', }) // console.log(newJobNode) // const updatedNode = await updateNode('Job', newJobNode!.nodeId, (nodeState) => {