Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cancelei/chat-interviewer-rails-app

Built for showcasing a chat bot that uses OpenAI's API to gather specific information on candidates.
https://github.com/cancelei/chat-interviewer-rails-app

Last synced: 18 days ago
JSON representation

Built for showcasing a chat bot that uses OpenAI's API to gather specific information on candidates.

Awesome Lists containing this project

README

        

# README

To start the project like you would do in any new rails app.

`bundle install`

Set up .env file with the following:

```
OPENAI_API_KEY=your_openai_api_key
DB_USERNAME=your_db_username
DB_PASSWORD=your_db_password
DB_HOST=your_db_host
```

`rails db:create`

`rails db:migrate`

`redis-server`

`rails s`

Test's were skipped in this project.

Also consider using redis-server for background jobs with good_job gem.