diff --git a/docs/docs/03-tools/01-using.md b/docs/docs/03-tools/01-using.md index 075ef9d2..a2c8326b 100644 --- a/docs/docs/03-tools/01-using.md +++ b/docs/docs/03-tools/01-using.md @@ -57,7 +57,7 @@ You can also refer to OpenAPI definition files as though they were GPTScript too GPTScript tools can be packaged and shared on GitHub, and referred to by their GitHub URL. For example: ```yaml -tools: github.com/gptscript-ai/image-generation, github.com/gptscript-ai/vision, sys.read +tools: github.com/gptscript-ai/dalle-image-generation, github.com/gptscript-ai/gpt4-v-vision, sys.read Generate an image of a city skyline at night and write the resulting image to a file called city_skyline.png. diff --git a/docs/docs/03-tools/02-authoring.md b/docs/docs/03-tools/02-authoring.md index 29b9fd64..9a06c947 100644 --- a/docs/docs/03-tools/02-authoring.md +++ b/docs/docs/03-tools/02-authoring.md @@ -62,7 +62,7 @@ Get the contents of https://github.com GPTScript is designed to easily export and import tools. Doing this is currently based entirely around the use of GitHub repositories. You can export a tool by creating a GitHub repository and ensureing you have the `tool.gpt` file in the root of the repository. You can then import the tool into a GPTScript by specifying the URL of the repository in the `tools` section of the script. For example, we can leverage the `image-generation` tool by adding the following line to a GPTScript: ```yaml -tools: github.com/gptscript-ai/image-generation +tools: github.com/gptscript-ai/dalle-image-generation Generate an image of a city skyline at night. ``` @@ -71,11 +71,11 @@ Generate an image of a city skyline at night. GPTScript can execute any binary that you ask it to. However, it can also manage the installation of a language runtime and dependencies for you. Currently this is only supported for a few languages. Here are the supported languages and examples of tools written in those languages: -| Language | Example | -|----------|---------| -| `Python` | [Image Generation](https://github.com/gptscript-ai/image-generation) - Generate images based on a prompt | -| `Node.js` | [Vision](https://github.com/gptscript-ai/vision) - Analyze and interpret images | -| `Golang` | [Search](https://github.com/gptscript-ai/search) - Use various providers to search the internet | +| Language | Example | +|----------|----------------------------------------------------------------------------------------------------------------| +| `Python` | [Image Generation](https://github.com/gptscript-ai/dalle-image-generation) - Generate images based on a prompt | +| `Node.js` | [Vision](https://github.com/gptscript-ai/gpt4-v-vision) - Analyze and interpret images | +| `Golang` | [Search](https://github.com/gptscript-ai/search) - Use various providers to search the internet | ### Automatic Documentation diff --git a/examples/recipegenerator/recipegenerator.gpt b/examples/recipegenerator/recipegenerator.gpt index c0d774cf..b5721c92 100755 --- a/examples/recipegenerator/recipegenerator.gpt +++ b/examples/recipegenerator/recipegenerator.gpt @@ -1,4 +1,4 @@ -tools: sys.find, sys.read, sys.write, recipegenerator, github.com/gptscript-ai/vision +tools: sys.find, sys.read, sys.write, recipegenerator, github.com/gptscript-ai/gpt4-v-vision Perform the following steps in order: diff --git a/pkg/repos/get_test.go b/pkg/repos/get_test.go index 4feab1a6..d59e5513 100644 --- a/pkg/repos/get_test.go +++ b/pkg/repos/get_test.go @@ -26,7 +26,7 @@ func TestManager_GetContext(t *testing.T) { Source: types.ToolSource{ Repo: &types.Repo{ VCS: "git", - Root: "https://github.com/gptscript-ai/image-generation.git", + Root: "https://github.com/gptscript-ai/dalle-image-generation.git", Revision: "b9d9ed60c25da7c0e01d504a7219d1c6e460fe80", }, }, diff --git a/pkg/repos/git/git_test.go b/pkg/repos/git/git_test.go index 7fa03df5..5b66d49f 100644 --- a/pkg/repos/git/git_test.go +++ b/pkg/repos/git/git_test.go @@ -18,7 +18,7 @@ var ( func TestFetch(t *testing.T) { err := Fetch(context.Background(), testCacheHome, - "https://github.com/gptscript-ai/image-generation.git", + "https://github.com/gptscript-ai/dalle-image-generation.git", testCommit) require.NoError(t, err) } @@ -28,7 +28,7 @@ func TestCheckout(t *testing.T) { err := os.RemoveAll(commitDir) require.NoError(t, err) err = Checkout(context.Background(), testCacheHome, - "https://github.com/gptscript-ai/image-generation.git", + "https://github.com/gptscript-ai/dalle-image-generation.git", testCommit, commitDir) require.NoError(t, err) }