Skip to content

Commit

Permalink
refactor(docs): update references from Laravel Synapse to Synapse 🚀
Browse files Browse the repository at this point in the history
- Renamed project from `Laravel Synapse` to `Synapse`.
- Updated composer install commands.
- Adjusted documentation links and references.
  • Loading branch information
use-the-fork committed Oct 12, 2024
1 parent 4f7155a commit 6e7a6d7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# 🧠 Laravel Synapse
# 🧠 Synapse

![Build Status](https://github.com/use-the-fork/laravel-synapse/actions/workflows/tests.yml/badge.svg)

[Click here to read the documentation](https://use-the-fork.github.io/laravel-synapse/)
[Click here to read the documentation](https://use-the-fork.github.io/synapse/)

</div>

Laravel Synapse allows you to seamlessly integrate and manage AI agents in your Laravel applications. Inspired by Langchain and Laravel Saloon, this package simplifies AI agent creation and management, giving you the tools to run them at scale.
Synapse allows you to seamlessly integrate and manage AI agents in your Laravel applications. Inspired by Langchain and Laravel Saloon, this package simplifies AI agent creation and management, giving you the tools to run them at scale.

## Features

Expand All @@ -25,7 +25,7 @@ Laravel Synapse allows you to seamlessly integrate and manage AI agents in your
1. Install via Composer:

```bash
composer require use-the-fork/laravel-synapse
composer require use-the-fork/synapse
```

1. Run the install command:
Expand Down Expand Up @@ -167,15 +167,15 @@ Refer to the full documentation for more details on available hooks and how to u
## Documentation
[Click here to read the documentation](https://use-the-fork.github.io/laravel-synapse/)
[Click here to read the documentation](https://use-the-fork.github.io/synapse/)
## Support Synapse's Development

If you would like to support my work, you can donate to my Ko-Fi page by simply buying me a coffee or two!

<a href='https://ko-fi.com/usethefork' target='_blank'><img height='35' style='border:0px;height:46px;' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>

Thank you for using Laravel Synapse ❤️
Thank you for using Synapse ❤️

## Credits

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "use-the-fork/laravel-synapse",
"name": "use-the-fork/synapse",
"require": {
"php": "^8.2",
"illuminate/container": "^10.0|^11.0",
Expand Down
10 changes: 5 additions & 5 deletions docs/.vitepress/config.mjs
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import {defineConfig} from 'vitepress';
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: '🧠 Laravel Synapse',
title: '🧠 Synapse',
description: 'AI agents for all!',
lastUpdated: true,
base: '/laravel-synapse/',
base: '/synapse/',
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{
text: '0.0.0',
text: '0.1.0',
items: [
{
text: 'Changelog',
link: 'https://github.com/use-the-fork/laravel-synapse/',
link: 'https://github.com/use-the-fork/synapse/tree/v0.1.0',
},
],
},
Expand Down Expand Up @@ -96,7 +96,7 @@ export default defineConfig({
socialLinks: [
{
icon: 'github',
link: 'https://github.com/use-the-fork/laravel-synapse',
link: 'https://github.com/use-the-fork/synapse',
},
],
},
Expand Down
8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 🧠 Laravel Synapse
# 🧠 Synapse

## AI Agents for All!

Laravel Synapse allows you to easily create and manage AI agents in your Laravel application. Inspired by Langchain and Laravel Saloon, this package simplifies AI integration and enables scalability.
Synapse allows you to easily create and manage AI agents in your Laravel application. Inspired by Langchain and Laravel Saloon, this package simplifies AI integration and enables scalability.

## Installation

Expand All @@ -11,7 +11,7 @@ Laravel Synapse allows you to easily create and manage AI agents in your Laravel
Install via [Composer](https://getcomposer.org/):

```bash
composer require use-the-fork/laravel-synapse
composer require use-the-fork/synapse
```

Then, run the installation command:
Expand Down Expand Up @@ -65,4 +65,4 @@ return [
];
```

You're now ready to use Laravel Synapse.
You're now ready to use Synapse.

0 comments on commit 6e7a6d7

Please sign in to comment.