Skip to content

Commit a042deb

Browse files
authored
Merge pull request #24 from CyprusCodes/restructure
Restructure
2 parents 5112070 + 7ff52aa commit a042deb

3 files changed

Lines changed: 11 additions & 10 deletions

File tree

docs/Thesaurus/tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ When considering the creation of a tool, the focus lies in providing the assista
1010

1111
Regarding the interaction between tools and assistants, the process unfolds as follows: Upon receiving a user prompt, such as "What is the weather in Jerusalem," the LLM autonomously identifies the need for a tool to accomplish the task, as it lacks the capability to do so itself. Subsequently, the LLM extracts relevant parameters (City: Jerusalem) from the user prompt and utilizes them to execute the tool (function). The function then carries out the necessary task and returns the data. Finally, the assistant utilizes this retrieved data to formulate the final response to the user.
1212

13-
## The interaction between Language Learning Models (LLMs), Assistants, and Tools
13+
## The interaction between Large Language Models (LLMs), Assistants, and Tools
1414

1515
![../../static/img/assistants.png](../../static/img/assistants.png)

docs/introduction.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ title: Introduction
44
sidebar_position: 0
55
---
66

7-
Welcome! We've built CMND.ai to simplify how you work with Language Learning Models (LLMs). Whether you're a developer building custom applications or a business exploring AI, our platform provides the core tools you need to integrate, extend, and manage LLM capabilities.
7+
Welcome! We've built CMND.ai to simplify how you work with Large Language Models (LLMs). Whether you're a developer building custom applications or a business exploring AI, our platform provides the core tools you need to integrate, extend, and manage LLM capabilities.
88

99
Here's a quick overview of what CMND.ai offers:
1010

1111
- **Conversations:** Engage in natural language interactions with LLMs. Our LLM-Proxy provides a consistent interface, making it easier to switch between models and manage API interactions.
1212
- **Connections:** Extend LLM functionality by connecting to external tools. Integrate with existing services like Google Workspace or build custom integrations using Python or JavaScript to connect to your databases and other systems/services.
13+
- **Knowledge Bases:** Upload and connect documents or structured content to give your assistant grounded, organization-specific knowledge that can be retrieved in real time during conversations.
1314
- **Assistants:** Create text-based assistants that combine natural language processing with connected tools to automate workflows and provide information.
1415
- **CMND React SDK:** For developers, our React SDK provides pre-built components and APIs to integrate AI capabilities into your React applications.
1516
- **Embed Widget:** Easily add interactive AI elements to your website with our embeddable widget, without extensive coding.
1617

17-
CMND.ai provides everything you need to make the most of Language Learning Models. You can talk to them naturally, enhance their capabilities by connecting your tools, and turn CMND into the perfect assistant for your needs. From there, you can build your own custom solutions and even embed them directly on your website.
18+
CMND.ai provides everything you need to make the most of Large Language Models. You can talk to them naturally, enhance their capabilities by connecting your tools, and turn CMND into the perfect assistant for your needs. From there, you can build your own custom solutions and even embed them directly on your website.

src/components/HomepageFeatures/index.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import clsx from 'clsx';
2-
import Heading from '@theme/Heading';
3-
import styles from './styles.module.css';
1+
import clsx from "clsx";
2+
import Heading from "@theme/Heading";
3+
import styles from "./styles.module.css";
44

55
type FeatureItem = {
66
title: string;
7-
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
7+
Svg: React.ComponentType<React.ComponentProps<"svg">>;
88
description: JSX.Element;
99
};
1010

@@ -34,16 +34,16 @@ const FeatureList: FeatureItem[] = [
3434
Svg: require("@site/static/img/undraw_code_review.svg").default,
3535
description: (
3636
<>
37-
CMDN.ai uses Role Based Access controls to make sure only authorised
37+
CMND.ai uses Role Based Access controls to make sure only authorised
3838
staff can see relevant data and utilise platform connections.
3939
</>
4040
),
4141
},
4242
];
4343

44-
function Feature({title, Svg, description}: FeatureItem) {
44+
function Feature({ title, Svg, description }: FeatureItem) {
4545
return (
46-
<div className={clsx('col col--4')}>
46+
<div className={clsx("col col--4")}>
4747
<div className="text--center">
4848
<Svg className={styles.featureSvg} role="img" />
4949
</div>

0 commit comments

Comments
 (0)