Skip to content

Latest commit

 

History

History
45 lines (39 loc) · 1.79 KB

01-overview.md

File metadata and controls

45 lines (39 loc) · 1.79 KB
title slug
Overview
/

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

Discord

Demo

GPTScript is a framework that allows Large Language Models (LLMs) to operate and interact with various systems. These systems can range from local executables to complex applications with OpenAPI schemas, SDK libraries, or any RAG-based solutions. GPTScript is designed to easily integrate any system, whether local or remote, with your LLM using just a few lines of prompts.

Here are some sample use cases of GPTScript:

  1. Chat with a local CLI - Try it!
  2. Chat with an OpenAPI compliant endpoint - Try it!
  3. Chat with local files and directories - Try it!
  4. Run an automated workflow - Try it!

Getting Started

```shell brew install gptscript gptscript github.com/gptscript-ai/llm-basics-demo ``` ```shell curl https://get.gptscript.ai/install.sh | sh gptscript github.com/gptscript-ai/llm-basics-demo ``` ```shell winget install gptscript-ai.gptscript gptscript github.com/gptscript-ai/llm-basics-demo ``` A few notes: - You'll need an [OpenAI API key](https://help.openai.com/en/articles/4936850-where-do-i-find-my-openai-api-key) - On Windows, after installing gptscript you may need to restart your terminal for the changes to take effect - The above script is a simple chat-based assistant. You can ask it questions and it will answer to the best of its ability.