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

https://github.com/jopilot-net/jopilotapi-ruby

A Ruby gem for accessing the JoPilot API, providing an easy way to add AI-driven job search functionality to Ruby applications.
https://github.com/jopilot-net/jopilotapi-ruby

ai api-wrapper job-search ruby ruby-gem

Last synced: 5 months ago
JSON representation

A Ruby gem for accessing the JoPilot API, providing an easy way to add AI-driven job search functionality to Ruby applications.

Awesome Lists containing this project

README

          

# JoPilotAPI-Ruby

## Overview
JoPilotAPI-Ruby is a Ruby library designed to interact with the JoPilot API, allowing developers to integrate AI-powered job search functionality into their applications.

## API Documentation
For detailed API documentation, visit:
[JoPilot API Documentation](https://api.jopilot.net/swagger/index.html)

## What is JoPilot?
JoPilot is a cutting-edge AI-driven job search assistant that helps users find the best job opportunities tailored to their needs. With JoPilot, you can access intelligent job search capabilities through our API.

To learn more, visit:
[JoPilot Official Website](https://jopilot.net/)

## ChatGPT Plugin
JoPilot is also available as a ChatGPT plugin to enhance your job search experience:
[JoPilot ChatGPT Plugin](https://chatgpt.com/g/g-OMF6BEtGB-jopilot)

## Installation
Add this line to your application's Gemfile:

```ruby
gem 'jopilot-api'
```

And then execute:

```bash
$ bundle install
```

Or install it yourself as:

```bash
$ gem install jopilot-api
```

## Usage
Here's a basic example of how to use the library to perform a job search:

```ruby
require 'jopilot_api'

# Create a job search request
request = JoPilotAPI::JobSearchRequest.new(
title: 'driver',
size: 2
)

# Perform the job search
begin
result = JoPilotAPI::JobSearchService.search_jobs(request)

# Display job results
result[:jobs].each do |job|
puts "Job: #{job[:name]} at #{job[:companyName]}"
puts "Location: #{job[:location][:city]}, #{job[:location][:state]}, #{job[:location][:country]}"
puts "Source: #{job[:feed]}"
puts "Posted: #{job[:created]}"
puts '-' * 50
end
rescue StandardError => e
puts "Failed to fetch jobs: #{e.message}"
end
```

## Features
- **Easy API Integration**: Call JoPilot's API with simple and intuitive methods
- **Advanced Job Search**: Search for jobs based on title, location, company name, and more
- **Real-time Updates**: Get up-to-date job listings with API requests

## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

## License
This project is licensed under the MIT License.

---

Leverage the power of JoPilot and bring AI-driven job search to your Ruby applications today!