Download the PHP package helgesverre/brain without Composer

On this page you can find all versions of the php package helgesverre/brain. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package brain

Latest Version on Packagist Total Downloads

🧠 Brain - The Adorably Simple OpenAI Wrapper

Just a small and simple wrapper around the OpenAI SDK.


📦 Installation

🛠 Usage

🔧 Basic Setup

After installation, set up the Brain Facade in config/app.php:

📝 Example: Generating Blog Titles

Generate a list of blog titles about a given subject:

📄 Example: Generating a Structured Blog Post

Generate a structured blog post in JSON format:

📄 Example: Text Classification with Arrays or Enums

Brain::classify simplifies the categorization of text. You can classify text using either an array of options or an Enum class.

Array Classification

Pass a list of categories as an array to classify your text.

This method evaluates 'banana' and categorizes it as one of the provided options.

Enum Classification

For structured categorization, use an Enum class.

Here, 'banana' is classified into the most fitting Enum category.

📄 Example: Generating a Vector Embedding

This method returns a vector embedding of the input, or a list of vector embeddings if you pass an array or a collection.

Changing the Base URL to use Together.AI, Mistral.AI, Perplexity.AI or other compatible API

You can change the base URL to use other compatible APIs by using the usingTogetherAI, usingMistralAI or usingPerplexity methods.

Or you can set the base URL directly, note that the API must be compatible with OpenAI's API, specifically the Chat completion endpoints.

Also note that JSON Mode (as used by Brain::json, Brain::classify, Brain::embedding and Brain::list) is not supported by all APIs.

📖 Available Methods

Method Parameters Description
Brain::maxTokens() int $maxTokens Sets the maximum number of tokens (words) the AI response can contain.
Brain::temperature() float $temperature Sets the 'temperature' for the AI responses, influencing the randomness of the output.
Brain::apiKey() string $apiKey Sets the API Key to use for subsequent requests.
Brain::timeout() int $timeout Sets the request timeout in seconds.
Brain::fast() None Sets the AI model to 'gpt-3.5-turbo-1106' for faster responses.
Brain::slow() None Sets the AI model to 'gpt-4-1106-preview' for more detailed responses.
Brain::text() $prompt, ?int $max = null Sends a text prompt to the AI and returns a text response. Optionally set a custom maximum token limit for this request.
Brain::json() $prompt, ?int $max = null Sends a prompt to the AI and returns a response in JSON format. Optionally set a custom maximum token limit for this request.
Brain::list() $prompt, ?int $max = null Sends a prompt to the AI and returns a list of items in an array, useful for generating multiple suggestions or ideas. Optionally set a custom maximum token limit for this request.
Brain::classify() $input, array\|StringBackedEnum $categories Classifies the given input text into one of the provided categories. Categories can be an array of strings or an Enum class.
Brain::embedding() $input Uses the text-embedding-ada-002 model to generate an embedding vector, returns a single vector for string input, an array of vectors when passed an array or collection.
Brain::toText() CreateResponse $response, $fallback = null Converts an OpenAI CreateResponse object to a text string. Includes an optional fallback value.
Brain::toJson() CreateResponse $response, $fallback = null Converts an OpenAI CreateResponse object to a JSON object. Includes an optional fallback value.
Brain::usingTogetherAI() None Uses the Together.AI API instead of OpenAI
Brain::usingMistralAI() None Uses the Mistral.AI API instead of OpenAI
Brain::usingPerplexity() None Uses the Perplexity.AI API instead of OpenAI
Brain::usingGroq() None Uses the Groq API instead of OpenAI

Using other providers (Mistral, Together, Perplexity, Groq etc)

📜 License

This package is licensed under the MIT License. For more details, refer to the License File.


All versions of brain with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
openai-php/laravel Version ^v0.10.2
spatie/laravel-package-tools Version ^1.16
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package helgesverre/brain contains the following files

Loading the files please wait ....