PHPackages                             arkitecht/laravel-hume - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. arkitecht/laravel-hume

ActiveLibrary[API Development](/categories/api)

arkitecht/laravel-hume
======================

Laravel API wrapper for the Hume API

1.9(7mo ago)0851[1 PRs](https://github.com/Arkitecht/laravel-hume/pulls)MITPHP

Since Mar 6Pushed 7mo ago1 watchersCompare

[ Source](https://github.com/Arkitecht/laravel-hume)[ Packagist](https://packagist.org/packages/arkitecht/laravel-hume)[ RSS](/packages/arkitecht-laravel-hume/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (4)Versions (23)Used By (0)

Laravel Hume
============

[](#laravel-hume)

**Laravel Hume** is a PHP package that provides a Laravel wrapper for the [Hume AI](https://hume.ai/) API, enabling seamless integration of Hume's empathic AI capabilities into Laravel applications.

Features
--------

[](#features)

- **Empathic Voice Interface (EVI):** A completely native PHP wrapper around the EVI REST API

Installation
------------

[](#installation)

To install the Laravel Hume package, run the following command in your terminal:

```
composer require arkitecht/laravel-hume
```

After installation, publish the configuration file using:

```
php artisan vendor:publish --provider="Arkitecht\LaravelHume\HumeServiceProvider"
```

Configuration
-------------

[](#configuration)

Add your environment variables to your .env file

```
HUME_API_KEY=your-api-key-here
HUME_API_SECRET=your-api-key-here
```

If you prefer the API to request and use an auth token, rather than the key and secret, add the following

```
HUME_API_AUTH=token
```

Usage
-----

[](#usage)

The library provides a Facade for making calls easily

```
